show the function in which the assert failure occured if the compiler supports it
[wxWidgets.git] / include / wx / app.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/app.h
3 // Purpose: wxAppBase class and macros used for declaration of wxApp
4 // derived class in the user code
5 // Author: Julian Smart
6 // Modified by:
7 // Created: 01/02/97
8 // RCS-ID: $Id$
9 // Copyright: (c) Julian Smart
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
12
13 #ifndef _WX_APP_H_BASE_
14 #define _WX_APP_H_BASE_
15
16 // ----------------------------------------------------------------------------
17 // headers we have to include here
18 // ----------------------------------------------------------------------------
19
20 #include "wx/event.h" // for the base class
21
22 #if wxUSE_GUI
23 #include "wx/window.h" // for wxTopLevelWindows
24
25 #include "wx/vidmode.h"
26 #endif // wxUSE_GUI
27
28 #include "wx/build.h"
29 #include "wx/init.h" // we must declare wxEntry()
30
31 class WXDLLIMPEXP_BASE wxAppConsole;
32 class WXDLLIMPEXP_BASE wxAppTraits;
33 class WXDLLIMPEXP_BASE wxCmdLineParser;
34 class WXDLLIMPEXP_BASE wxLog;
35 class WXDLLIMPEXP_BASE wxMessageOutput;
36
37 #if wxUSE_GUI
38 class WXDLLEXPORT wxEventLoop;
39 #endif
40
41 // ----------------------------------------------------------------------------
42 // typedefs
43 // ----------------------------------------------------------------------------
44
45 // the type of the function used to create a wxApp object on program start up
46 typedef wxAppConsole* (*wxAppInitializerFunction)();
47
48 // ----------------------------------------------------------------------------
49 // constants
50 // ----------------------------------------------------------------------------
51
52 enum
53 {
54 wxPRINT_WINDOWS = 1,
55 wxPRINT_POSTSCRIPT = 2
56 };
57
58 // ----------------------------------------------------------------------------
59 // wxAppConsole: wxApp for non-GUI applications
60 // ----------------------------------------------------------------------------
61
62 class WXDLLIMPEXP_BASE wxAppConsole : public wxEvtHandler
63 {
64 public:
65 // ctor and dtor
66 wxAppConsole();
67 virtual ~wxAppConsole();
68
69
70 // the virtual functions which may/must be overridden in the derived class
71 // -----------------------------------------------------------------------
72
73 // This is the very first function called for a newly created wxApp object,
74 // it is used by the library to do the global initialization. If, for some
75 // reason, you must override it (instead of just overriding OnInit(), as
76 // usual, for app-specific initializations), do not forget to call the base
77 // class version!
78 virtual bool Initialize(int& argc, wxChar **argv);
79
80 // This gives wxCocoa a chance to call OnInit() with a memory pool in place
81 virtual bool CallOnInit() { return OnInit(); }
82
83 // Called before OnRun(), this is a good place to do initialization -- if
84 // anything fails, return false from here to prevent the program from
85 // continuing. The command line is normally parsed here, call the base
86 // class OnInit() to do it.
87 virtual bool OnInit();
88
89 // this is here only temporary hopefully (FIXME)
90 virtual bool OnInitGui() { return true; }
91
92 // This is the replacement for the normal main(): all program work should
93 // be done here. When OnRun() returns, the programs starts shutting down.
94 virtual int OnRun() = 0;
95
96 // This is only called if OnInit() returned true so it's a good place to do
97 // any cleanup matching the initializations done there.
98 virtual int OnExit();
99
100 // This is the very last function called on wxApp object before it is
101 // destroyed. If you override it (instead of overriding OnExit() as usual)
102 // do not forget to call the base class version!
103 virtual void CleanUp();
104
105 // Called when a fatal exception occurs, this function should take care not
106 // to do anything which might provoke a nested exception! It may be
107 // overridden if you wish to react somehow in non-default way (core dump
108 // under Unix, application crash under Windows) to fatal program errors,
109 // however extreme care should be taken if you don't want this function to
110 // crash.
111 virtual void OnFatalException() { }
112
113 // Called from wxExit() function, should terminate the application a.s.a.p.
114 virtual void Exit();
115
116
117 // application info: name, description, vendor
118 // -------------------------------------------
119
120 // NB: all these should be set by the application itself, there are no
121 // reasonable default except for the application name which is taken to
122 // be argv[0]
123
124 // set/get the application name
125 wxString GetAppName() const
126 {
127 return m_appName.empty() ? m_className : m_appName;
128 }
129 void SetAppName(const wxString& name) { m_appName = name; }
130
131 // set/get the app class name
132 wxString GetClassName() const { return m_className; }
133 void SetClassName(const wxString& name) { m_className = name; }
134
135 // set/get the vendor name
136 const wxString& GetVendorName() const { return m_vendorName; }
137 void SetVendorName(const wxString& name) { m_vendorName = name; }
138
139
140 // cmd line parsing stuff
141 // ----------------------
142
143 // all of these methods may be overridden in the derived class to
144 // customize the command line parsing (by default only a few standard
145 // options are handled)
146 //
147 // you also need to call wxApp::OnInit() from YourApp::OnInit() for all
148 // this to work
149
150 #if wxUSE_CMDLINE_PARSER
151 // this one is called from OnInit() to add all supported options
152 // to the given parser (don't forget to call the base class version if you
153 // override it!)
154 virtual void OnInitCmdLine(wxCmdLineParser& parser);
155
156 // called after successfully parsing the command line, return true
157 // to continue and false to exit (don't forget to call the base class
158 // version if you override it!)
159 virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
160
161 // called if "--help" option was specified, return true to continue
162 // and false to exit
163 virtual bool OnCmdLineHelp(wxCmdLineParser& parser);
164
165 // called if incorrect command line options were given, return
166 // false to abort and true to continue
167 virtual bool OnCmdLineError(wxCmdLineParser& parser);
168 #endif // wxUSE_CMDLINE_PARSER
169
170
171 // miscellaneous customization functions
172 // -------------------------------------
173
174 // create the app traits object to which we delegate for everything which
175 // either should be configurable by the user (then he can change the
176 // default behaviour simply by overriding CreateTraits() and returning his
177 // own traits object) or which is GUI/console dependent as then wxAppTraits
178 // allows us to abstract the differences behind the common façade
179 wxAppTraits *GetTraits();
180
181 // the functions below shouldn't be used now that we have wxAppTraits
182 #if WXWIN_COMPATIBILITY_2_4
183
184 #if wxUSE_LOG
185 // override this function to create default log target of arbitrary
186 // user-defined class (default implementation creates a wxLogGui
187 // object) -- this log object is used by default by all wxLogXXX()
188 // functions.
189 wxDEPRECATED( virtual wxLog *CreateLogTarget() );
190 #endif // wxUSE_LOG
191
192 // similar to CreateLogTarget() but for the global wxMessageOutput
193 // object
194 wxDEPRECATED( virtual wxMessageOutput *CreateMessageOutput() );
195
196 #endif // WXWIN_COMPATIBILITY_2_4
197
198
199 // event processing functions
200 // --------------------------
201
202 // this method allows to filter all the events processed by the program, so
203 // you should try to return quickly from it to avoid slowing down the
204 // program to the crawl
205 //
206 // return value should be -1 to continue with the normal event processing,
207 // or TRUE or FALSE to stop further processing and pretend that the event
208 // had been already processed or won't be processed at all, respectively
209 virtual int FilterEvent(wxEvent& event);
210
211 #if wxUSE_EXCEPTIONS
212 // call the specified handler on the given object with the given event
213 //
214 // this method only exists to allow catching the exceptions thrown by any
215 // event handler, it would lead to an extra (useless) virtual function call
216 // if the exceptions were not used, so it doesn't even exist in that case
217 virtual void HandleEvent(wxEvtHandler *handler,
218 wxEventFunction func,
219 wxEvent& event) const;
220
221 // Called when an unhandled C++ exception occurs inside OnRun(): note that
222 // the exception type is lost by now, so if you really want to handle the
223 // exception you should override OnRun() and put a try/catch around
224 // MainLoop() call there or use OnExceptionInMainLoop()
225 virtual void OnUnhandledException() { }
226 #endif // wxUSE_EXCEPTIONS
227
228 // process all events in the wxPendingEvents list -- it is necessary to
229 // call this function to process posted events. This happens during each
230 // event loop iteration in GUI mode but if there is no main loop, it may be
231 // also called directly.
232 virtual void ProcessPendingEvents();
233
234 // doesn't do anything in this class, just a hook for GUI wxApp
235 virtual bool Yield(bool WXUNUSED(onlyIfNeeded) = false) { return true; }
236
237 // make sure that idle events are sent again
238 virtual void WakeUpIdle() { }
239
240 // this is just a convenience: by providing its implementation here we
241 // avoid #ifdefs in the code using it
242 static bool IsMainLoopRunning() { return false; }
243
244
245 // debugging support
246 // -----------------
247
248 #ifdef __WXDEBUG__
249 // this function is called when an assert failure occurs, the base class
250 // version does the normal processing (i.e. shows the usual assert failure
251 // dialog box)
252 //
253 // the arguments are the location of the failed assert (func may be empty
254 // if the compiler doesn't support C99 __FUNCTION__), the text of the
255 // assert itself and the user-specified message
256 virtual void OnAssertFailure(const wxChar *file,
257 int line,
258 const wxChar *func,
259 const wxChar *cond,
260 const wxChar *msg);
261
262 // old version of the function without func parameter, for compatibility
263 // only, override OnAssertFailure() in the new code
264 virtual void OnAssert(const wxChar *file,
265 int line,
266 const wxChar *cond,
267 const wxChar *msg);
268 #endif // __WXDEBUG__
269
270 // check that the wxBuildOptions object (constructed in the application
271 // itself, usually the one from IMPLEMENT_APP() macro) matches the build
272 // options of the library and abort if it doesn't
273 static bool CheckBuildOptions(const char *optionsSignature,
274 const char *componentName);
275 #if WXWIN_COMPATIBILITY_2_4
276 wxDEPRECATED( static bool CheckBuildOptions(const wxBuildOptions& buildOptions) );
277 #endif
278
279 // implementation only from now on
280 // -------------------------------
281
282 // helpers for dynamic wxApp construction
283 static void SetInitializerFunction(wxAppInitializerFunction fn)
284 { ms_appInitFn = fn; }
285 static wxAppInitializerFunction GetInitializerFunction()
286 { return ms_appInitFn; }
287
288 // accessors for ms_appInstance field (external code might wish to modify
289 // it, this is why we provide a setter here as well, but you should really
290 // know what you're doing if you call it), wxTheApp is usually used instead
291 // of GetInstance()
292 static wxAppConsole *GetInstance() { return ms_appInstance; }
293 static void SetInstance(wxAppConsole *app) { ms_appInstance = app; }
294
295
296 // command line arguments (public for backwards compatibility)
297 int argc;
298 wxChar **argv;
299
300 protected:
301 // the function which creates the traits object when GetTraits() needs it
302 // for the first time
303 virtual wxAppTraits *CreateTraits();
304
305
306 // function used for dynamic wxApp creation
307 static wxAppInitializerFunction ms_appInitFn;
308
309 // the one and only global application object
310 static wxAppConsole *ms_appInstance;
311
312
313 // application info (must be set from the user code)
314 wxString m_vendorName, // vendor name (ACME Inc)
315 m_appName, // app name
316 m_className; // class name
317
318 // the class defining the application behaviour, NULL initially and created
319 // by GetTraits() when first needed
320 wxAppTraits *m_traits;
321
322
323 // the application object is a singleton anyhow, there is no sense in
324 // copying it
325 DECLARE_NO_COPY_CLASS(wxAppConsole)
326 };
327
328 // ----------------------------------------------------------------------------
329 // wxAppBase: the common part of wxApp implementations for all platforms
330 // ----------------------------------------------------------------------------
331
332 #if wxUSE_GUI
333
334 class WXDLLIMPEXP_CORE wxAppBase : public wxAppConsole
335 {
336 public:
337 wxAppBase();
338 virtual ~wxAppBase();
339
340 // the virtual functions which may/must be overridden in the derived class
341 // -----------------------------------------------------------------------
342
343 // very first initialization function
344 //
345 // Override: very rarely
346 virtual bool Initialize(int& argc, wxChar **argv);
347
348 // a platform-dependent version of OnInit(): the code here is likely to
349 // depend on the toolkit. default version does nothing.
350 //
351 // Override: rarely.
352 virtual bool OnInitGui();
353
354 // called to start program execution - the default version just enters
355 // the main GUI loop in which events are received and processed until
356 // the last window is not deleted (if GetExitOnFrameDelete) or
357 // ExitMainLoop() is called. In console mode programs, the execution
358 // of the program really starts here
359 //
360 // Override: rarely in GUI applications, always in console ones.
361 virtual int OnRun();
362
363 // a matching function for OnInit()
364 virtual int OnExit();
365
366 // very last clean up function
367 //
368 // Override: very rarely
369 virtual void CleanUp();
370
371
372 // the worker functions - usually not used directly by the user code
373 // -----------------------------------------------------------------
374
375 // return true if we're running main loop, i.e. if the events can
376 // (already) be dispatched
377 static bool IsMainLoopRunning()
378 {
379 wxAppBase *app = wx_static_cast(wxAppBase *, GetInstance());
380 return app && app->m_mainLoop != NULL;
381 }
382
383 // execute the main GUI loop, the function returns when the loop ends
384 virtual int MainLoop();
385
386 // exit the main loop thus terminating the application
387 virtual void Exit();
388
389 // exit the main GUI loop during the next iteration (i.e. it does not
390 // stop the program immediately!)
391 virtual void ExitMainLoop();
392
393 // returns true if there are unprocessed events in the event queue
394 virtual bool Pending();
395
396 // process the first event in the event queue (blocks until an event
397 // appears if there are none currently, use Pending() if this is not
398 // wanted), returns false if the event loop should stop and true
399 // otherwise
400 virtual bool Dispatch();
401
402 // process all currently pending events right now
403 //
404 // it is an error to call Yield() recursively unless the value of
405 // onlyIfNeeded is true
406 //
407 // WARNING: this function is dangerous as it can lead to unexpected
408 // reentrancies (i.e. when called from an event handler it
409 // may result in calling the same event handler again), use
410 // with _extreme_ care or, better, don't use at all!
411 virtual bool Yield(bool onlyIfNeeded = false) = 0;
412
413 // this virtual function is called in the GUI mode when the application
414 // becomes idle and normally just sends wxIdleEvent to all interested
415 // parties
416 //
417 // it should return true if more idle events are needed, false if not
418 virtual bool ProcessIdle();
419
420 // Send idle event to window and all subwindows
421 // Returns true if more idle time is requested.
422 virtual bool SendIdleEvents(wxWindow* win, wxIdleEvent& event);
423
424
425 #if wxUSE_EXCEPTIONS
426 // Function called if an uncaught exception is caught inside the main
427 // event loop: it may return true to continue running the event loop or
428 // false to stop it (in the latter case it may rethrow the exception as
429 // well)
430 virtual bool OnExceptionInMainLoop();
431 #endif // wxUSE_EXCEPTIONS
432
433
434 // top level window functions
435 // --------------------------
436
437 // return true if our app has focus
438 virtual bool IsActive() const { return m_isActive; }
439
440 // set the "main" top level window
441 void SetTopWindow(wxWindow *win) { m_topWindow = win; }
442
443 // return the "main" top level window (if it hadn't been set previously
444 // with SetTopWindow(), will return just some top level window and, if
445 // there are none, will return NULL)
446 virtual wxWindow *GetTopWindow() const
447 {
448 if (m_topWindow)
449 return m_topWindow;
450 else if (wxTopLevelWindows.GetCount() > 0)
451 return wxTopLevelWindows.GetFirst()->GetData();
452 else
453 return (wxWindow *)NULL;
454 }
455
456 // control the exit behaviour: by default, the program will exit the
457 // main loop (and so, usually, terminate) when the last top-level
458 // program window is deleted. Beware that if you disable this behaviour
459 // (with SetExitOnFrameDelete(false)), you'll have to call
460 // ExitMainLoop() explicitly from somewhere.
461 void SetExitOnFrameDelete(bool flag)
462 { m_exitOnFrameDelete = flag ? Yes : No; }
463 bool GetExitOnFrameDelete() const
464 { return m_exitOnFrameDelete == Yes; }
465
466
467 // display mode, visual, printing mode, ...
468 // ------------------------------------------------------------------------
469
470 // Get display mode that is used use. This is only used in framebuffer
471 // wxWin ports (such as wxMGL).
472 virtual wxVideoMode GetDisplayMode() const { return wxVideoMode(); }
473 // Set display mode to use. This is only used in framebuffer wxWin
474 // ports (such as wxMGL). This method should be called from
475 // wxApp::OnInitGui
476 virtual bool SetDisplayMode(const wxVideoMode& WXUNUSED(info)) { return true; }
477
478 // set use of best visual flag (see below)
479 void SetUseBestVisual( bool flag ) { m_useBestVisual = flag; }
480 bool GetUseBestVisual() const { return m_useBestVisual; }
481
482 // set/get printing mode: see wxPRINT_XXX constants.
483 //
484 // default behaviour is the normal one for Unix: always use PostScript
485 // printing.
486 virtual void SetPrintMode(int WXUNUSED(mode)) { }
487 int GetPrintMode() const { return wxPRINT_POSTSCRIPT; }
488
489
490 // command line parsing (GUI-specific)
491 // ------------------------------------------------------------------------
492
493 #if wxUSE_CMDLINE_PARSER
494 virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
495 virtual void OnInitCmdLine(wxCmdLineParser& parser);
496 #endif
497
498 // miscellaneous other stuff
499 // ------------------------------------------------------------------------
500
501 // called by toolkit-specific code to set the app status: active (we have
502 // focus) or not and also the last window which had focus before we were
503 // deactivated
504 virtual void SetActive(bool isActive, wxWindow *lastFocus);
505
506 // OBSOLETE: don't use, always returns true
507 //
508 // returns true if the program is successfully initialized
509 bool Initialized() { return true; }
510
511 // perform standard OnIdle behaviour, ensure that this is always called
512 void OnIdle(wxIdleEvent& event);
513
514
515 protected:
516 // delete all objects in wxPendingDelete list
517 void DeletePendingObjects();
518
519 // override base class method to use GUI traits
520 virtual wxAppTraits *CreateTraits();
521
522
523 // the main event loop of the application (may be NULL if the loop hasn't
524 // been started yet or has already terminated)
525 wxEventLoop *m_mainLoop;
526
527 // the main top level window (may be NULL)
528 wxWindow *m_topWindow;
529
530 // if Yes, exit the main loop when the last top level window is deleted, if
531 // No don't do it and if Later -- only do it once we reach our OnRun()
532 //
533 // the explanation for using this strange scheme is given in appcmn.cpp
534 enum
535 {
536 Later = -1,
537 No,
538 Yes
539 } m_exitOnFrameDelete;
540
541 // true if the app wants to use the best visual on systems where
542 // more than one are available (Sun, SGI, XFree86 4.0 ?)
543 bool m_useBestVisual;
544
545 // does any of our windows have focus?
546 bool m_isActive;
547
548
549 DECLARE_NO_COPY_CLASS(wxAppBase)
550 };
551
552 #endif // wxUSE_GUI
553
554 // ----------------------------------------------------------------------------
555 // now include the declaration of the real class
556 // ----------------------------------------------------------------------------
557
558 #if wxUSE_GUI
559 #if defined(__WXPALMOS__)
560 #include "wx/palmos/app.h"
561 #elif defined(__WXMSW__)
562 #include "wx/msw/app.h"
563 #elif defined(__WXMOTIF__)
564 #include "wx/motif/app.h"
565 #elif defined(__WXMGL__)
566 #include "wx/mgl/app.h"
567 #elif defined(__WXGTK20__)
568 #include "wx/gtk/app.h"
569 #elif defined(__WXGTK__)
570 #include "wx/gtk1/app.h"
571 #elif defined(__WXX11__)
572 #include "wx/x11/app.h"
573 #elif defined(__WXMAC__)
574 #include "wx/mac/app.h"
575 #elif defined(__WXCOCOA__)
576 #include "wx/cocoa/app.h"
577 #elif defined(__WXPM__)
578 #include "wx/os2/app.h"
579 #endif
580 #else // !GUI
581 // allow using just wxApp (instead of wxAppConsole) in console programs
582 typedef wxAppConsole wxApp;
583 #endif // GUI/!GUI
584
585 // ----------------------------------------------------------------------------
586 // the global data
587 // ----------------------------------------------------------------------------
588
589 // for compatibility, we define this macro to access the global application
590 // object of type wxApp
591 //
592 // note that instead of using of wxTheApp in application code you should
593 // consider using DECLARE_APP() after which you may call wxGetApp() which will
594 // return the object of the correct type (i.e. MyApp and not wxApp)
595 //
596 // the cast is safe as in GUI build we only use wxApp, not wxAppConsole, and in
597 // console mode it does nothing at all
598 #define wxTheApp ((wxApp *)wxApp::GetInstance())
599
600 // ----------------------------------------------------------------------------
601 // global functions
602 // ----------------------------------------------------------------------------
603
604 // event loop related functions only work in GUI programs
605 // ------------------------------------------------------
606
607 // Force an exit from main loop
608 extern void WXDLLIMPEXP_BASE wxExit();
609
610 // Yield to other apps/messages
611 extern bool WXDLLIMPEXP_BASE wxYield();
612
613 // Yield to other apps/messages
614 extern void WXDLLIMPEXP_BASE wxWakeUpIdle();
615
616 // ----------------------------------------------------------------------------
617 // macros for dynamic creation of the application object
618 // ----------------------------------------------------------------------------
619
620 // Having a global instance of this class allows wxApp to be aware of the app
621 // creator function. wxApp can then call this function to create a new app
622 // object. Convoluted, but necessary.
623
624 class WXDLLIMPEXP_BASE wxAppInitializer
625 {
626 public:
627 wxAppInitializer(wxAppInitializerFunction fn)
628 { wxApp::SetInitializerFunction(fn); }
629 };
630
631 // the code below defines a IMPLEMENT_WXWIN_MAIN macro which you can use if
632 // your compiler really, really wants main() to be in your main program (e.g.
633 // hello.cpp). Now IMPLEMENT_APP should add this code if required.
634
635 #define IMPLEMENT_WXWIN_MAIN_CONSOLE \
636 int main(int argc, char **argv) { return wxEntry(argc, argv); }
637
638 // port-specific header could have defined it already in some special way
639 #ifndef IMPLEMENT_WXWIN_MAIN
640 #define IMPLEMENT_WXWIN_MAIN IMPLEMENT_WXWIN_MAIN_CONSOLE
641 #endif // defined(IMPLEMENT_WXWIN_MAIN)
642
643 #ifdef __WXUNIVERSAL__
644 #include "wx/univ/theme.h"
645
646 #define IMPLEMENT_WX_THEME_SUPPORT \
647 WX_USE_THEME(win32); \
648 WX_USE_THEME(gtk);
649 #else
650 #define IMPLEMENT_WX_THEME_SUPPORT
651 #endif
652
653 // Use this macro if you want to define your own main() or WinMain() function
654 // and call wxEntry() from there.
655 #define IMPLEMENT_APP_NO_MAIN(appname) \
656 wxAppConsole *wxCreateApp() \
657 { \
658 wxAppConsole::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, \
659 "your program"); \
660 return new appname; \
661 } \
662 wxAppInitializer \
663 wxTheAppInitializer((wxAppInitializerFunction) wxCreateApp); \
664 DECLARE_APP(appname) \
665 appname& wxGetApp() { return *(appname *)wxTheApp; }
666
667 // Same as IMPLEMENT_APP() normally but doesn't include themes support in
668 // wxUniversal builds
669 #define IMPLEMENT_APP_NO_THEMES(appname) \
670 IMPLEMENT_APP_NO_MAIN(appname) \
671 IMPLEMENT_WXWIN_MAIN
672
673 // Use this macro exactly once, the argument is the name of the wxApp-derived
674 // class which is the class of your application.
675 #define IMPLEMENT_APP(appname) \
676 IMPLEMENT_APP_NO_THEMES(appname) \
677 IMPLEMENT_WX_THEME_SUPPORT
678
679 // Same as IMPLEMENT_APP(), but for console applications.
680 #define IMPLEMENT_APP_CONSOLE(appname) \
681 IMPLEMENT_APP_NO_MAIN(appname) \
682 IMPLEMENT_WXWIN_MAIN_CONSOLE
683
684 // this macro can be used multiple times and just allows you to use wxGetApp()
685 // function
686 #define DECLARE_APP(appname) extern appname& wxGetApp();
687
688
689 // declare the stuff defined by IMPLEMENT_APP() macro, it's not really needed
690 // anywhere else but at the very least it suppresses icc warnings about
691 // defining extern symbols without prior declaration, and it shouldn't do any
692 // harm
693 extern wxAppConsole *wxCreateApp();
694 extern wxAppInitializer wxTheAppInitializer;
695
696 #endif // _WX_APP_H_BASE_
697