1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
* $Id: ttkStubInit.c,v 1.2 2006/11/03 03:06:22 das Exp $
*
* This file is (mostly) automatically generated from ttk.decls.
* It is compiled and linked in with the ttk package proper.
*/
#include "tk.h"
#include "ttkTheme.h"
MODULE_SCOPE TtkStubs ttkStubs;
/* !BEGIN!: Do not edit below this line. */
TtkStubs ttkStubs = {
TCL_STUB_MAGIC,
TTK_STUBS_EPOCH,
TTK_STUBS_REVISION,
0,
Ttk_GetTheme, /* 0 */
Ttk_GetDefaultTheme, /* 1 */
Ttk_GetCurrentTheme, /* 2 */
Ttk_CreateTheme, /* 3 */
Ttk_RegisterCleanup, /* 4 */
Ttk_RegisterElementSpec, /* 5 */
Ttk_RegisterElement, /* 6 */
Ttk_RegisterElementFactory, /* 7 */
Ttk_RegisterLayout, /* 8 */
0, /* 9 */
Ttk_GetStateSpecFromObj, /* 10 */
Ttk_NewStateSpecObj, /* 11 */
Ttk_GetStateMapFromObj, /* 12 */
Ttk_StateMapLookup, /* 13 */
Ttk_StateTableLookup, /* 14 */
0, /* 15 */
0, /* 16 */
0, /* 17 */
0, /* 18 */
0, /* 19 */
Ttk_GetPaddingFromObj, /* 20 */
Ttk_GetBorderFromObj, /* 21 */
Ttk_GetStickyFromObj, /* 22 */
Ttk_MakePadding, /* 23 */
Ttk_UniformPadding, /* 24 */
Ttk_AddPadding, /* 25 */
Ttk_RelievePadding, /* 26 */
Ttk_MakeBox, /* 27 */
Ttk_BoxContains, /* 28 */
Ttk_PackBox, /* 29 */
Ttk_StickBox, /* 30 */
Ttk_AnchorBox, /* 31 */
Ttk_PadBox, /* 32 */
Ttk_ExpandBox, /* 33 */
Ttk_PlaceBox, /* 34 */
Ttk_NewBoxObj, /* 35 */
0, /* 36 */
0, /* 37 */
0, /* 38 */
0, /* 39 */
Ttk_GetOrientFromObj, /* 40 */
};
/* !END!: Do not edit above this line. */
|