%import image.i
%import printfw.i
%import sizers.i
-
+%import streams.i
+%import filesys.i
%native(_wxStart) __wxStart;
%native(_wxSetDictionary) __wxSetDictionary;
};
+%inline %{
+ wxPyApp* wxGetApp() {
+ return wxPythonApp;
+ }
+%}
//----------------------------------------------------------------------
// this is used to cleanup after wxWindows when Python shuts down.
extern "C" SWIGEXPORT(void) inithtmlc();
extern "C" SWIGEXPORT(void) inithtmlhelpc();
extern "C" SWIGEXPORT(void) initcalendarc();
+extern "C" SWIGEXPORT(void) initstreamsc();
+extern "C" SWIGEXPORT(void) initfilesysc();
+
+extern "C" SWIGEXPORT(void) initglcanvasc();
+extern "C" SWIGEXPORT(void) initoglc();
+extern "C" SWIGEXPORT(void) initstc_c();
%}
initprintfwc();
initsizersc();
initclip_dndc();
+ initstreamsc();
+ initfilesysc();
initgridc();
initutilsc();
inithtmlc();
inithtmlhelpc();
initcalendarc();
+
+ initglcanvasc();
+ initoglc();
+ initstc_c();
%}
//----------------------------------------------------------------------