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(__WINDOWS__)
27 #include "wx/msw/app.h"
28 #elif defined(__MOTIF__)
29 #include "wx/xt/app.h"
30 #elif defined(__GTK__)
31 #include "wx/gtk/app.h"
35 // Having a global instance of this class allows
36 // wxApp to be aware of the app creator function.
37 // wxApp can then call this function to create a new
38 // app object. Convoluted, but necessary.
40 class WXDLLEXPORT wxAppInitializer
43 wxAppInitializer(wxAppInitializerFunction fn
)
45 wxApp::SetInitializerFunction(fn
);
49 #define IMPLEMENT_APP(appname) \
50 wxApp *wxCreateApp(void) { return new appname; } \
51 wxAppInitializer wxTheAppInitializer((wxAppInitializerFunction) wxCreateApp); \
52 appname& wxGetApp(void) { return *(appname *)wxTheApp; } \
54 extern int wxEntry( int argc, char *argv[] ); \
55 int main(int argc, char *argv[]) { return wxEntry(argc, argv); }
58 #define DECLARE_APP(appname) \
59 extern appname& wxGetApp(void) ;