1 /* appinit.c -- Tcl and Tk application initialization.
3 The function Tcl_AppInit() below initializes various Tcl packages.
4 It is called for each Tcl interpreter created by _tkinter.create().
5 It needs to be compiled with -DWITH_<package> flags for each package
6 that you are statically linking with. You may have to add sections
7 for packages not yet listed below.
9 Note that those packages for which Tcl_StaticPackage() is called with
10 a NULL first argument are known as "static loadable" packages to
11 Tcl but not actually initialized. To use these, you have to load
12 it explicitly, e.g. tkapp.eval("load {} Blt").
19 Tcl_AppInit(Tcl_Interp
*interp
)
21 Tk_Window main_window
;
25 #define MAX_PATH_LEN 1024
27 char tclLibPath
[MAX_PATH_LEN
], tkLibPath
[MAX_PATH_LEN
];
30 /* pre- Tcl_Init code copied from tkMacOSXAppInit.c */
31 Tk_MacOSXOpenBundleResources (interp
, "com.tcltk.tcllibrary",
32 tclLibPath
, MAX_PATH_LEN
, 0);
34 if (tclLibPath
[0] != '\0') {
35 Tcl_SetVar(interp
, "tcl_library", tclLibPath
, TCL_GLOBAL_ONLY
);
36 Tcl_SetVar(interp
, "tclDefaultLibrary", tclLibPath
, TCL_GLOBAL_ONLY
);
37 Tcl_SetVar(interp
, "tcl_pkgPath", tclLibPath
, TCL_GLOBAL_ONLY
);
40 if (tclLibPath
[0] != '\0') {
41 Tcl_SetVar(interp
, "tcl_library", tclLibPath
, TCL_GLOBAL_ONLY
);
42 Tcl_SetVar(interp
, "tclDefaultLibrary", tclLibPath
, TCL_GLOBAL_ONLY
);
43 Tcl_SetVar(interp
, "tcl_pkgPath", tclLibPath
, TCL_GLOBAL_ONLY
);
46 if (Tcl_Init (interp
) == TCL_ERROR
)
50 /* pre- Tk_Init code copied from tkMacOSXAppInit.c */
51 Tk_MacOSXOpenBundleResources (interp
, "com.tcltk.tklibrary",
52 tkLibPath
, MAX_PATH_LEN
, 1);
54 if (tclLibPath
[0] != '\0') {
55 pathPtr
= Tcl_NewStringObj(tclLibPath
, -1);
57 Tcl_Obj
*pathPtr
= TclGetLibraryPath();
60 if (tkLibPath
[0] != '\0') {
63 Tcl_SetVar(interp
, "tk_library", tkLibPath
, TCL_GLOBAL_ONLY
);
64 objPtr
= Tcl_NewStringObj(tkLibPath
, -1);
65 Tcl_ListObjAppendElement(NULL
, pathPtr
, objPtr
);
68 TclSetLibraryPath(pathPtr
);
71 if (Tk_Init (interp
) == TCL_ERROR
)
74 main_window
= Tk_MainWindow(interp
);
77 TkMacOSXInitAppleEvents(interp
);
78 TkMacOSXInitMenus(interp
);
81 #ifdef WITH_MOREBUTTONS
83 extern Tcl_CmdProc studButtonCmd
;
84 extern Tcl_CmdProc triButtonCmd
;
86 Tcl_CreateCommand(interp
, "studbutton", studButtonCmd
,
87 (ClientData
) main_window
, NULL
);
88 Tcl_CreateCommand(interp
, "tributton", triButtonCmd
,
89 (ClientData
) main_window
, NULL
);
93 #ifdef WITH_PIL /* 0.2b5 and later -- not yet released as of May 14 */
95 extern void TkImaging_Init(Tcl_Interp
*);
96 TkImaging_Init(interp
);
97 /* XXX TkImaging_Init() doesn't have the right return type */
98 /*Tcl_StaticPackage(interp, "Imaging", TkImaging_Init, NULL);*/
102 #ifdef WITH_PIL_OLD /* 0.2b4 and earlier */
104 extern void TkImaging_Init(void);
105 /* XXX TkImaging_Init() doesn't have the right prototype */
106 /*Tcl_StaticPackage(interp, "Imaging", TkImaging_Init, NULL);*/
112 extern int Tix_Init(Tcl_Interp
*interp
);
113 extern int Tix_SafeInit(Tcl_Interp
*interp
);
114 Tcl_StaticPackage(NULL
, "Tix", Tix_Init
, Tix_SafeInit
);
120 extern int Blt_Init(Tcl_Interp
*);
121 extern int Blt_SafeInit(Tcl_Interp
*);
122 Tcl_StaticPackage(NULL
, "Blt", Blt_Init
, Blt_SafeInit
);
128 /* XXX I've heard rumors that this doesn't work */
129 extern int Togl_Init(Tcl_Interp
*);
130 /* XXX Is there no Togl_SafeInit? */
131 Tcl_StaticPackage(NULL
, "Togl", Togl_Init
, NULL
);