]> git.saurik.com Git - wxWidgets.git/blame - include/wx/app.h
fixed mysterious mistakes
[wxWidgets.git] / include / wx / app.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: app.h
3// Purpose: wxApp inclusion
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef __APPH_BASE__
13#define __APPH_BASE__
14
7c78e7c7 15#ifdef __WXMSW__
c801d85f
KB
16class WXDLLEXPORT wxApp;
17typedef wxApp* (*wxAppInitializerFunction) (void);
10b959e3 18#endif
c801d85f
KB
19
20#include "wx/object.h"
21
7c78e7c7 22#ifndef __WXMSW__
c801d85f 23typedef wxObject* (*wxAppInitializerFunction) (void); // returning wxApp* won't work with gcc
10b959e3 24#endif
c801d85f 25
2049ba38 26#if defined(__WXMSW__)
c801d85f 27#include "wx/msw/app.h"
2049ba38 28#elif defined(__WXMOTIF__)
c801d85f 29#include "wx/xt/app.h"
b4e76e0d
RR
30#elif defined(__WXQT__)
31#include "wx/qt/app.h"
2049ba38 32#elif defined(__WXGTK__)
c801d85f
KB
33#include "wx/gtk/app.h"
34#endif
35
36
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.
41
42class WXDLLEXPORT wxAppInitializer
43{
44public:
45 wxAppInitializer(wxAppInitializerFunction fn)
46 {
47 wxApp::SetInitializerFunction(fn);
48 }
49};
50
26a87b69
JS
51// Here's a macro you can use if your compiler
52// really, really wants main() to be in your main program
53// (e.g. hello.cpp).
54// Now IMPLEMENT_APP should add this code if required.
55
6163f5d8 56#if defined(__AIX__) || defined(__HPUX__)
6f65e337
JS
57#define IMPLEMENT_WXWIN_MAIN \
58extern int wxEntry( int argc, char *argv[] ); \
59int main(int argc, char *argv[]) { return wxEntry(argc, argv); }
26a87b69
JS
60#else
61#define IMPLEMENT_WXWIN_MAIN
62#endif
63
c801d85f
KB
64#define IMPLEMENT_APP(appname) \
65 wxApp *wxCreateApp(void) { return new appname; } \
66 wxAppInitializer wxTheAppInitializer((wxAppInitializerFunction) wxCreateApp); \
67 appname& wxGetApp(void) { return *(appname *)wxTheApp; } \
26a87b69 68 IMPLEMENT_WXWIN_MAIN
c801d85f
KB
69
70#define DECLARE_APP(appname) \
71 extern appname& wxGetApp(void) ;
72
73
74#endif
75 // __APPH_BASE__