1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface file for a python wxWindows module
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
20 //----------------------------------------------------------------------
21 // This is where we include the other wrapper definition files for SWIG
22 //----------------------------------------------------------------------
25 %include my_typemaps.i
40 %native(_wxStart) __wxStart;
41 %native(_wxSetDictionary) __wxSetDictionary;
43 //---------------------------------------------------------------------------
45 #define __version__ "0.3.1"
47 wxPoint wxPyDefaultPosition;
48 wxSize wxPyDefaultSize;
50 //---------------------------------------------------------------------------
51 //---------------------------------------------------------------------------
53 class wxPyApp : public wxEvtHandler {
57 wxPythonApp = new wxPyApp();
63 wxString GetAppName();
67 wxString GetClassName();
68 bool GetExitOnFrameDelete();
70 wxWindow * GetTopWindow();
71 wxString GetVendorName();
79 void SetAppName(const wxString& name);
81 void SetAuto3D(bool auto3D);
83 void SetClassName(const wxString& name);
84 void SetExitOnFrameDelete(bool flag);
85 void SetPrintMode(int mode);
86 void SetTopWindow(wxWindow* window);
87 void SetVendorName(const wxString& name);
89 // This one is wxPython specific. If you override MainLoop,
90 // call this when done.
96 //----------------------------------------------------------------------
97 // This code gets added to the module initialization function
98 //----------------------------------------------------------------------
101 extern "C" SWIGEXPORT(void,initwindowsc)();
102 extern "C" SWIGEXPORT(void,initwindows2c)();
103 extern "C" SWIGEXPORT(void,initeventsc)();
104 extern "C" SWIGEXPORT(void,initmiscc)();
105 extern "C" SWIGEXPORT(void,initgdic)();
106 extern "C" SWIGEXPORT(void,initmdic)();
107 extern "C" SWIGEXPORT(void,initcontrolsc)();
108 extern "C" SWIGEXPORT(void,initcontrols2c)();
109 extern "C" SWIGEXPORT(void,initcmndlgsc)();
115 __wxPreStart(); // initialize the GUI toolkit, if needed.
117 // wxPyWindows = new wxHashTable(wxKEY_INTEGER, 100);
119 // Since these modules are all linked together, initialize them now
120 // because python won't be able to find their shared library files,
121 // (since there isn't any.)
133 //----------------------------------------------------------------------
134 // And this gets appended to the shadow class file.
135 //----------------------------------------------------------------------
137 %pragma(python) include="_extras.py";
140 /////////////////////////////////////////////////////////////////////////////
143 // Revision 1.6 1998/08/27 21:59:10 RD
144 // Some chicken-and-egg problems solved for wxPython on wxGTK
146 // Revision 1.5 1998/08/27 00:00:28 RD
148 // - have discovered some problems but not yet discovered solutions...
150 // Revision 1.4 1998/08/18 19:48:20 RD
151 // more wxGTK compatibility things.
153 // It builds now but there are serious runtime problems...
155 // Revision 1.3 1998/08/15 07:36:53 RD
156 // - Moved the header in the .i files out of the code that gets put into
157 // the .cpp files. It caused CVS conflicts because of the RCS ID being
158 // different each time.
160 // - A few minor fixes.
162 // Revision 1.2 1998/08/14 23:36:49 RD
163 // Beginings of wxGTK compatibility
165 // Revision 1.1 1998/08/09 08:25:53 RD