This commit was manufactured by cvs2svn to create tag 'r23a1-fork'.
[python/dscho.git] / Modules / tkappinit.c
blob96c545d7e9a4873d81e7100c895d4821a3c54696
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").
15 #include <tcl.h>
16 #include <tk.h>
18 int
19 Tcl_AppInit(Tcl_Interp *interp)
21 Tk_Window main_window;
23 #ifdef TK_AQUA
24 #ifndef MAX_PATH_LEN
25 #define MAX_PATH_LEN 1024
26 #endif
27 char tclLibPath[MAX_PATH_LEN], tkLibPath[MAX_PATH_LEN];
28 Tcl_Obj* pathPtr;
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);
45 #endif
46 if (Tcl_Init (interp) == TCL_ERROR)
47 return TCL_ERROR;
49 #ifdef TK_AQUA
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);
56 } else {
57 Tcl_Obj *pathPtr = TclGetLibraryPath();
60 if (tkLibPath[0] != '\0') {
61 Tcl_Obj *objPtr;
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);
69 #endif
71 if (Tk_Init (interp) == TCL_ERROR)
72 return TCL_ERROR;
74 main_window = Tk_MainWindow(interp);
76 #ifdef TK_AQUA
77 TkMacOSXInitAppleEvents(interp);
78 TkMacOSXInitMenus(interp);
79 #endif
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);
91 #endif
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);*/
100 #endif
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);*/
108 #endif
110 #ifdef WITH_TIX
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);
116 #endif
118 #ifdef WITH_BLT
120 extern int Blt_Init(Tcl_Interp *);
121 extern int Blt_SafeInit(Tcl_Interp *);
122 Tcl_StaticPackage(NULL, "Blt", Blt_Init, Blt_SafeInit);
124 #endif
126 #ifdef WITH_TOGL
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);
133 #endif
135 #ifdef WITH_XXX
137 #endif
138 return TCL_OK;