Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
tcl8.6 /
tk-private /
generic /
Delete
Unzip
Name
Size
Permission
Date
Action
ttk
[ DIR ]
drwxr-xr-x
2025-06-04 09:25
default.h
581
B
-rw-r--r--
2016-07-28 05:22
ks_names.h
21.4
KB
-rw-r--r--
2016-07-28 05:22
tk.h
56.36
KB
-rw-r--r--
2016-07-28 05:22
tk3d.h
3.04
KB
-rw-r--r--
2016-07-28 05:22
tkBusy.h
1.58
KB
-rw-r--r--
2016-07-28 05:22
tkButton.h
12.2
KB
-rw-r--r--
2016-07-28 05:22
tkCanvas.h
11.22
KB
-rw-r--r--
2016-07-28 05:22
tkColor.h
2.6
KB
-rw-r--r--
2016-07-28 05:22
tkDecls.h
74.39
KB
-rw-r--r--
2016-07-28 05:22
tkEntry.h
10.97
KB
-rw-r--r--
2016-07-28 05:22
tkFileFilter.h
2.51
KB
-rw-r--r--
2016-07-28 05:22
tkFont.h
7.8
KB
-rw-r--r--
2016-07-28 05:22
tkImgPhoto.h
8.81
KB
-rw-r--r--
2016-07-28 05:22
tkInt.h
42.86
KB
-rw-r--r--
2016-07-28 05:22
tkIntDecls.h
48.15
KB
-rw-r--r--
2016-07-28 05:22
tkIntPlatDecls.h
25.04
KB
-rw-r--r--
2016-07-28 05:22
tkIntXlibDecls.h
52.48
KB
-rw-r--r--
2016-07-28 05:22
tkMenu.h
20.64
KB
-rw-r--r--
2016-07-28 05:22
tkMenubutton.h
7.85
KB
-rw-r--r--
2016-07-28 05:22
tkPlatDecls.h
5.43
KB
-rw-r--r--
2016-07-28 05:22
tkPort.h
632
B
-rw-r--r--
2016-07-28 05:22
tkScale.h
8.37
KB
-rw-r--r--
2016-07-28 05:22
tkScrollbar.h
6.71
KB
-rw-r--r--
2016-07-28 05:22
tkSelect.h
6.61
KB
-rw-r--r--
2016-07-28 05:22
tkText.h
45.58
KB
-rw-r--r--
2016-07-28 05:22
tkUndo.h
3.59
KB
-rw-r--r--
2016-07-28 05:22
Save
Rename
/* * tk3d.h -- * * Declarations of types and functions shared by the 3d border module. * * Copyright (c) 1996-1997 by Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ #ifndef _TK3D #define _TK3D #include "tkInt.h" /* * One of the following data structures is allocated for each 3-D border * currently in use. Structures of this type are indexed by borderTable, so * that a single structure can be shared for several uses. */ typedef struct TkBorder { Screen *screen; /* Screen on which the border will be used. */ Visual *visual; /* Visual for all windows and pixmaps using * the border. */ int depth; /* Number of bits per pixel of drawables where * the border will be used. */ Colormap colormap; /* Colormap out of which pixels are * allocated. */ int resourceRefCount; /* Number of active uses of this color (each * active use corresponds to a call to * Tk_Alloc3DBorderFromObj or Tk_Get3DBorder). * If this count is 0, then this structure is * no longer valid and it isn't present in * borderTable: it is being kept around only * because there are objects referring to it. * The structure is freed when objRefCount and * resourceRefCount are both 0. */ int objRefCount; /* The number of Tcl objects that reference * this structure. */ XColor *bgColorPtr; /* Background color (intensity between * lightColorPtr and darkColorPtr). */ XColor *darkColorPtr; /* Color for darker areas (must free when * deleting structure). NULL means shadows * haven't been allocated yet.*/ XColor *lightColorPtr; /* Color used for lighter areas of border * (must free this when deleting structure). * NULL means shadows haven't been allocated * yet. */ Pixmap shadow; /* Stipple pattern to use for drawing shadows * areas. Used for displays with <= 64 colors * or where colormap has filled up. */ GC bgGC; /* Used (if necessary) to draw areas in the * background color. */ GC darkGC; /* Used to draw darker parts of the border. * None means the shadow colors haven't been * allocated yet.*/ GC lightGC; /* Used to draw lighter parts of the border. * None means the shadow colors haven't been * allocated yet. */ Tcl_HashEntry *hashPtr; /* Entry in borderTable (needed in order to * delete structure). */ struct TkBorder *nextPtr; /* Points to the next TkBorder structure with * the same color name. Borders with the same * name but different screens or colormaps are * chained together off a single entry in * borderTable. */ } TkBorder; /* * Maximum intensity for a color: */ #define MAX_INTENSITY 65535 /* * Declarations for platform specific interfaces used by this module. */ MODULE_SCOPE TkBorder *TkpGetBorder(void); MODULE_SCOPE void TkpGetShadows(TkBorder *borderPtr, Tk_Window tkwin); MODULE_SCOPE void TkpFreeBorder(TkBorder *borderPtr); #endif /* _TK3D */