1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxApp inclusion
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_APP_H_BASE_
13 #define _WX_APP_H_BASE_
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/motif/app.h"
30 #elif defined(__WXQT__)
31 #include "wx/qt/app.h"
32 #elif defined(__WXGTK__)
33 #include "wx/gtk/app.h"
34 #elif defined(__WXMAC__)
35 #include "wx/mac/app.h"
36 #elif defined(__WXSTUBS__)
37 #include "wx/stubs/app.h"
40 // Having a global instance of this class allows
41 // wxApp to be aware of the app creator function.
42 // wxApp can then call this function to create a new
43 // app object. Convoluted, but necessary.
45 class WXDLLEXPORT wxAppInitializer
48 wxAppInitializer(wxAppInitializerFunction fn
)
50 wxApp::SetInitializerFunction(fn
);
54 // Here's a macro you can use if your compiler
55 // really, really wants main() to be in your main program
57 // Now IMPLEMENT_APP should add this code if required.
59 #if defined(__AIX__) || defined(__HPUX__)
60 #define IMPLEMENT_WXWIN_MAIN \
61 extern int wxEntry( int argc, char *argv[] ); \
62 int main(int argc, char *argv[]) { return wxEntry(argc, argv); }
64 #define IMPLEMENT_WXWIN_MAIN
67 #define IMPLEMENT_APP(appname) \
68 wxApp *wxCreateApp(void) { return new appname; } \
69 wxAppInitializer wxTheAppInitializer((wxAppInitializerFunction) wxCreateApp); \
70 appname& wxGetApp(void) { return *(appname *)wxTheApp; } \
73 #define DECLARE_APP(appname) \
74 extern appname& wxGetApp(void) ;