1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface file for the CORE wxPython classes and stuff.
7 // Created: 22-May-1998
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
17 #include "wx/wxPython/wxPython_int.h"
18 #include "wx/wxPython/pyclasses.h"
22 //---------------------------------------------------------------------------
26 %include my_typemaps.i
29 %include _core_rename.i
31 %native(_wxPySetDictionary) __wxPySetDictionary;
32 %native(_wxPyFixStockObjects) __wxPyFixStockObjects;
35 %#// Give a reference to the dictionary of this module to the C++ extension
37 _core._wxPySetDictionary(vars())
39 %#// A little trick to make 'wx' be a reference to this module so wx.Names can
42 wx = _sys.modules[__name__]
49 //---------------------------------------------------------------------------
50 // Include all the files that make up the core module
52 // wxObject, functions and other base stuff
55 MAKE_CONST_WXSTRING(EmptyString);
64 // Events, event handlers, base Windows and such
65 %include _evthandler.i
78 %include _constraints.i
81 %pythoncode "_core_ex.py"
83 //---------------------------------------------------------------------------
84 // This code gets added to the module initialization function
87 // Initialize threading, some globals and such
91 // Although these are defined in __version__ they need to be here too so
92 // that an assert can be done to ensure that the wxPython and the wxWindows
94 PyDict_SetItemString(d,"MAJOR_VERSION", PyInt_FromLong((long)wxMAJOR_VERSION ));
95 PyDict_SetItemString(d,"MINOR_VERSION", PyInt_FromLong((long)wxMINOR_VERSION ));
96 PyDict_SetItemString(d,"RELEASE_VERSION", PyInt_FromLong((long)wxRELEASE_NUMBER ));
99 //---------------------------------------------------------------------------