blob: 96c545d7e9a4873d81e7100c895d4821a3c54696 [file] [log] [blame]
Guido van Rossum7a206c81997-11-22 17:34:41 +00001/* appinit.c -- Tcl and Tk application initialization.
2
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.
8
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").
13 */
Guido van Rossumf7132471994-06-27 08:00:16 +000014
15#include <tcl.h>
16#include <tk.h>
17
18int
Peter Schneider-Kampfaaad372000-07-10 09:26:41 +000019Tcl_AppInit(Tcl_Interp *interp)
Guido van Rossumf7132471994-06-27 08:00:16 +000020{
Moshe Zadka6a078ed2000-08-04 15:53:06 +000021 Tk_Window main_window;
Guido van Rossumf7132471994-06-27 08:00:16 +000022
Jack Jansencb852442001-12-09 23:15:56 +000023#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;
29
30 /* pre- Tcl_Init code copied from tkMacOSXAppInit.c */
31 Tk_MacOSXOpenBundleResources (interp, "com.tcltk.tcllibrary",
32 tclLibPath, MAX_PATH_LEN, 0);
33
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);
38 }
39
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);
44 }
45#endif
Barry Warsaw845a4c61997-01-14 17:36:36 +000046 if (Tcl_Init (interp) == TCL_ERROR)
47 return TCL_ERROR;
Jack Jansencb852442001-12-09 23:15:56 +000048
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);
53
54 if (tclLibPath[0] != '\0') {
55 pathPtr = Tcl_NewStringObj(tclLibPath, -1);
56 } else {
57 Tcl_Obj *pathPtr = TclGetLibraryPath();
58 }
59
60 if (tkLibPath[0] != '\0') {
61 Tcl_Obj *objPtr;
62
63 Tcl_SetVar(interp, "tk_library", tkLibPath, TCL_GLOBAL_ONLY);
64 objPtr = Tcl_NewStringObj(tkLibPath, -1);
65 Tcl_ListObjAppendElement(NULL, pathPtr, objPtr);
66 }
67
68 TclSetLibraryPath(pathPtr);
69#endif
70
Barry Warsaw845a4c61997-01-14 17:36:36 +000071 if (Tk_Init (interp) == TCL_ERROR)
72 return TCL_ERROR;
Guido van Rossumf7132471994-06-27 08:00:16 +000073
Moshe Zadka6a078ed2000-08-04 15:53:06 +000074 main_window = Tk_MainWindow(interp);
Guido van Rossume168c651999-11-05 18:11:23 +000075
Jack Jansencb852442001-12-09 23:15:56 +000076#ifdef TK_AQUA
77 TkMacOSXInitAppleEvents(interp);
78 TkMacOSXInitMenus(interp);
79#endif
80
Guido van Rossumf7132471994-06-27 08:00:16 +000081#ifdef WITH_MOREBUTTONS
Barry Warsaw845a4c61997-01-14 17:36:36 +000082 {
83 extern Tcl_CmdProc studButtonCmd;
84 extern Tcl_CmdProc triButtonCmd;
Guido van Rossumf7132471994-06-27 08:00:16 +000085
Barry Warsaw845a4c61997-01-14 17:36:36 +000086 Tcl_CreateCommand(interp, "studbutton", studButtonCmd,
Moshe Zadka6a078ed2000-08-04 15:53:06 +000087 (ClientData) main_window, NULL);
Barry Warsaw845a4c61997-01-14 17:36:36 +000088 Tcl_CreateCommand(interp, "tributton", triButtonCmd,
Moshe Zadka6a078ed2000-08-04 15:53:06 +000089 (ClientData) main_window, NULL);
Barry Warsaw845a4c61997-01-14 17:36:36 +000090 }
Guido van Rossumf7132471994-06-27 08:00:16 +000091#endif
Guido van Rossum1cbdfb91997-05-14 19:22:11 +000092
93#ifdef WITH_PIL /* 0.2b5 and later -- not yet released as of May 14 */
94 {
Guido van Rossum7a206c81997-11-22 17:34:41 +000095 extern void TkImaging_Init(Tcl_Interp *);
Guido van Rossum1cbdfb91997-05-14 19:22:11 +000096 TkImaging_Init(interp);
Guido van Rossum7a206c81997-11-22 17:34:41 +000097 /* XXX TkImaging_Init() doesn't have the right return type */
98 /*Tcl_StaticPackage(interp, "Imaging", TkImaging_Init, NULL);*/
Guido van Rossum1cbdfb91997-05-14 19:22:11 +000099 }
100#endif
101
102#ifdef WITH_PIL_OLD /* 0.2b4 and earlier */
103 {
104 extern void TkImaging_Init(void);
Guido van Rossum7a206c81997-11-22 17:34:41 +0000105 /* XXX TkImaging_Init() doesn't have the right prototype */
106 /*Tcl_StaticPackage(interp, "Imaging", TkImaging_Init, NULL);*/
Guido van Rossum1cbdfb91997-05-14 19:22:11 +0000107 }
108#endif
109
Guido van Rossumaec74971997-11-19 18:56:17 +0000110#ifdef WITH_TIX
Guido van Rossumf259a8e1997-12-02 20:38:38 +0000111 {
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);
115 }
Guido van Rossumaec74971997-11-19 18:56:17 +0000116#endif
117
118#ifdef WITH_BLT
Guido van Rossum7a206c81997-11-22 17:34:41 +0000119 {
120 extern int Blt_Init(Tcl_Interp *);
121 extern int Blt_SafeInit(Tcl_Interp *);
122 Tcl_StaticPackage(NULL, "Blt", Blt_Init, Blt_SafeInit);
Guido van Rossumaec74971997-11-19 18:56:17 +0000123 }
Guido van Rossum7a206c81997-11-22 17:34:41 +0000124#endif
125
126#ifdef WITH_TOGL
127 {
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);
132 }
Guido van Rossumaec74971997-11-19 18:56:17 +0000133#endif
134
Guido van Rossumf7132471994-06-27 08:00:16 +0000135#ifdef WITH_XXX
136
137#endif
Barry Warsaw845a4c61997-01-14 17:36:36 +0000138 return TCL_OK;
Guido van Rossumf7132471994-06-27 08:00:16 +0000139}