1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxApp inclusion
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 class WXDLLEXPORT wxApp
;
17 typedef wxApp
* (*wxAppInitializerFunction
) (void);
20 #include "wx/object.h"
23 typedef wxObject
* (*wxAppInitializerFunction
) (void); // returning wxApp* won't work with gcc
26 #if defined(__WXMSW__)
27 #include "wx/msw/app.h"
28 #elif defined(__WXMOTIF__)
29 #include "wx/xt/app.h"
30 #elif defined(__WXQT__)
31 #include "wx/qt/app.h"
32 #elif defined(__WXGTK__)
33 #include "wx/gtk/app.h"
37 // Having a global instance of this class allows
38 // wxApp to be aware of the app creator function.
39 // wxApp can then call this function to create a new
40 // app object. Convoluted, but necessary.
42 class WXDLLEXPORT wxAppInitializer
45 wxAppInitializer(wxAppInitializerFunction fn
)
47 wxApp::SetInitializerFunction(fn
);
51 // Here's a macro you can use if your compiler
52 // really, really wants main() to be in your main program
54 // Now IMPLEMENT_APP should add this code if required.
56 #if defined(__AIX__) || defined(__HPUX__)
57 #define IMPLEMENT_WXWIN_MAIN \
58 extern int wxEntry( int argc, char *argv[] ); \
59 int main(int argc, char *argv[]) { return wxEntry(argc, argv); }
61 #define IMPLEMENT_WXWIN_MAIN
64 #define IMPLEMENT_APP(appname) \
65 wxApp *wxCreateApp(void) { return new appname; } \
66 wxAppInitializer wxTheAppInitializer((wxAppInitializerFunction) wxCreateApp); \
67 appname& wxGetApp(void) { return *(appname *)wxTheApp; } \
70 #define DECLARE_APP(appname) \
71 extern appname& wxGetApp(void) ;