implemented wxEventLoop for wxMac
[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 // this function is called when an assert failure occurs, the base class
249 // version does the normal processing (i.e. shows the usual assert failure
250 // dialog box)
251 //
252 // the arguments are the place where the assert occurred, the text of the
253 // assert itself and the user-specified message
254 #ifdef __WXDEBUG__
255 virtual void OnAssert(const wxChar *file,
256 int line,
257 const wxChar *cond,
258 const wxChar *msg);
259 #endif // __WXDEBUG__
260
261 // check that the wxBuildOptions object (constructed in the application
262 // itself, usually the one from IMPLEMENT_APP() macro) matches the build
263 // options of the library and abort if it doesn't
264 static bool CheckBuildOptions(const char *optionsSignature,
265 const char *componentName);
266 #if WXWIN_COMPATIBILITY_2_4
267 wxDEPRECATED( static bool CheckBuildOptions(const wxBuildOptions& buildOptions) );
268 #endif
269
270 // implementation only from now on
271 // -------------------------------
272
273 // helpers for dynamic wxApp construction
274 static void SetInitializerFunction(wxAppInitializerFunction fn)
275 { ms_appInitFn = fn; }
276 static wxAppInitializerFunction GetInitializerFunction()
277 { return ms_appInitFn; }
278
279 // accessors for ms_appInstance field (external code might wish to modify
280 // it, this is why we provide a setter here as well, but you should really
281 // know what you're doing if you call it), wxTheApp is usually used instead
282 // of GetInstance()
283 static wxAppConsole *GetInstance() { return ms_appInstance; }
284 static void SetInstance(wxAppConsole *app) { ms_appInstance = app; }
285
286
287 // command line arguments (public for backwards compatibility)
288 int argc;
289 wxChar **argv;
290
291 protected:
292 // the function which creates the traits object when GetTraits() needs it
293 // for the first time
294 virtual wxAppTraits *CreateTraits();
295
296
297 // function used for dynamic wxApp creation
298 static wxAppInitializerFunction ms_appInitFn;
299
300 // the one and only global application object
301 static wxAppConsole *ms_appInstance;
302
303
304 // application info (must be set from the user code)
305 wxString m_vendorName, // vendor name (ACME Inc)
306 m_appName, // app name
307 m_className; // class name
308
309 // the class defining the application behaviour, NULL initially and created
310 // by GetTraits() when first needed
311 wxAppTraits *m_traits;
312
313
314 // the application object is a singleton anyhow, there is no sense in
315 // copying it
316 DECLARE_NO_COPY_CLASS(wxAppConsole)
317 };
318
319 // ----------------------------------------------------------------------------
320 // wxAppBase: the common part of wxApp implementations for all platforms
321 // ----------------------------------------------------------------------------
322
323 #if wxUSE_GUI
324
325 class WXDLLIMPEXP_CORE wxAppBase : public wxAppConsole
326 {
327 public:
328 wxAppBase();
329 virtual ~wxAppBase();
330
331 // the virtual functions which may/must be overridden in the derived class
332 // -----------------------------------------------------------------------
333
334 // very first initialization function
335 //
336 // Override: very rarely
337 virtual bool Initialize(int& argc, wxChar **argv);
338
339 // a platform-dependent version of OnInit(): the code here is likely to
340 // depend on the toolkit. default version does nothing.
341 //
342 // Override: rarely.
343 virtual bool OnInitGui();
344
345 // called to start program execution - the default version just enters
346 // the main GUI loop in which events are received and processed until
347 // the last window is not deleted (if GetExitOnFrameDelete) or
348 // ExitMainLoop() is called. In console mode programs, the execution
349 // of the program really starts here
350 //
351 // Override: rarely in GUI applications, always in console ones.
352 virtual int OnRun();
353
354 // a matching function for OnInit()
355 virtual int OnExit();
356
357 // very last clean up function
358 //
359 // Override: very rarely
360 virtual void CleanUp();
361
362
363 // the worker functions - usually not used directly by the user code
364 // -----------------------------------------------------------------
365
366 // return true if we're running main loop, i.e. if the events can
367 // (already) be dispatched
368 static bool IsMainLoopRunning()
369 {
370 wxAppBase *app = wx_static_cast(wxAppBase *, GetInstance());
371 return app && app->m_mainLoop != NULL;
372 }
373
374 // execute the main GUI loop, the function returns when the loop ends
375 virtual int MainLoop();
376
377 // exit the main loop thus terminating the application
378 virtual void Exit();
379
380 // exit the main GUI loop during the next iteration (i.e. it does not
381 // stop the program immediately!)
382 virtual void ExitMainLoop();
383
384 // returns true if there are unprocessed events in the event queue
385 virtual bool Pending();
386
387 // process the first event in the event queue (blocks until an event
388 // appears if there are none currently, use Pending() if this is not
389 // wanted), returns false if the event loop should stop and true
390 // otherwise
391 virtual bool Dispatch();
392
393 // process all currently pending events right now
394 //
395 // it is an error to call Yield() recursively unless the value of
396 // onlyIfNeeded is true
397 //
398 // WARNING: this function is dangerous as it can lead to unexpected
399 // reentrancies (i.e. when called from an event handler it
400 // may result in calling the same event handler again), use
401 // with _extreme_ care or, better, don't use at all!
402 virtual bool Yield(bool onlyIfNeeded = false) = 0;
403
404 // this virtual function is called in the GUI mode when the application
405 // becomes idle and normally just sends wxIdleEvent to all interested
406 // parties
407 //
408 // it should return true if more idle events are needed, false if not
409 virtual bool ProcessIdle();
410
411 // Send idle event to window and all subwindows
412 // Returns true if more idle time is requested.
413 virtual bool SendIdleEvents(wxWindow* win, wxIdleEvent& event);
414
415
416 #if wxUSE_EXCEPTIONS
417 // Function called if an uncaught exception is caught inside the main
418 // event loop: it may return true to continue running the event loop or
419 // false to stop it (in the latter case it may rethrow the exception as
420 // well)
421 virtual bool OnExceptionInMainLoop();
422 #endif // wxUSE_EXCEPTIONS
423
424
425 // top level window functions
426 // --------------------------
427
428 // return true if our app has focus
429 virtual bool IsActive() const { return m_isActive; }
430
431 // set the "main" top level window
432 void SetTopWindow(wxWindow *win) { m_topWindow = win; }
433
434 // return the "main" top level window (if it hadn't been set previously
435 // with SetTopWindow(), will return just some top level window and, if
436 // there are none, will return NULL)
437 virtual wxWindow *GetTopWindow() const
438 {
439 if (m_topWindow)
440 return m_topWindow;
441 else if (wxTopLevelWindows.GetCount() > 0)
442 return wxTopLevelWindows.GetFirst()->GetData();
443 else
444 return (wxWindow *)NULL;
445 }
446
447 // control the exit behaviour: by default, the program will exit the
448 // main loop (and so, usually, terminate) when the last top-level
449 // program window is deleted. Beware that if you disable this behaviour
450 // (with SetExitOnFrameDelete(false)), you'll have to call
451 // ExitMainLoop() explicitly from somewhere.
452 void SetExitOnFrameDelete(bool flag)
453 { m_exitOnFrameDelete = flag ? Yes : No; }
454 bool GetExitOnFrameDelete() const
455 { return m_exitOnFrameDelete == Yes; }
456
457
458 // display mode, visual, printing mode, ...
459 // ------------------------------------------------------------------------
460
461 // Get display mode that is used use. This is only used in framebuffer
462 // wxWin ports (such as wxMGL).
463 virtual wxVideoMode GetDisplayMode() const { return wxVideoMode(); }
464 // Set display mode to use. This is only used in framebuffer wxWin
465 // ports (such as wxMGL). This method should be called from
466 // wxApp::OnInitGui
467 virtual bool SetDisplayMode(const wxVideoMode& WXUNUSED(info)) { return true; }
468
469 // set use of best visual flag (see below)
470 void SetUseBestVisual( bool flag ) { m_useBestVisual = flag; }
471 bool GetUseBestVisual() const { return m_useBestVisual; }
472
473 // set/get printing mode: see wxPRINT_XXX constants.
474 //
475 // default behaviour is the normal one for Unix: always use PostScript
476 // printing.
477 virtual void SetPrintMode(int WXUNUSED(mode)) { }
478 int GetPrintMode() const { return wxPRINT_POSTSCRIPT; }
479
480
481 // command line parsing (GUI-specific)
482 // ------------------------------------------------------------------------
483
484 #if wxUSE_CMDLINE_PARSER
485 virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
486 virtual void OnInitCmdLine(wxCmdLineParser& parser);
487 #endif
488
489 // miscellaneous other stuff
490 // ------------------------------------------------------------------------
491
492 // called by toolkit-specific code to set the app status: active (we have
493 // focus) or not and also the last window which had focus before we were
494 // deactivated
495 virtual void SetActive(bool isActive, wxWindow *lastFocus);
496
497 // OBSOLETE: don't use, always returns true
498 //
499 // returns true if the program is successfully initialized
500 bool Initialized() { return true; }
501
502 // perform standard OnIdle behaviour, ensure that this is always called
503 void OnIdle(wxIdleEvent& event);
504
505
506 protected:
507 // delete all objects in wxPendingDelete list
508 void DeletePendingObjects();
509
510 // override base class method to use GUI traits
511 virtual wxAppTraits *CreateTraits();
512
513
514 // the main event loop of the application (may be NULL if the loop hasn't
515 // been started yet or has already terminated)
516 wxEventLoop *m_mainLoop;
517
518 // the main top level window (may be NULL)
519 wxWindow *m_topWindow;
520
521 // if Yes, exit the main loop when the last top level window is deleted, if
522 // No don't do it and if Later -- only do it once we reach our OnRun()
523 //
524 // the explanation for using this strange scheme is given in appcmn.cpp
525 enum
526 {
527 Later = -1,
528 No,
529 Yes
530 } m_exitOnFrameDelete;
531
532 // true if the app wants to use the best visual on systems where
533 // more than one are available (Sun, SGI, XFree86 4.0 ?)
534 bool m_useBestVisual;
535
536 // does any of our windows have focus?
537 bool m_isActive;
538
539
540 DECLARE_NO_COPY_CLASS(wxAppBase)
541 };
542
543 #endif // wxUSE_GUI
544
545 // ----------------------------------------------------------------------------
546 // now include the declaration of the real class
547 // ----------------------------------------------------------------------------
548
549 #if wxUSE_GUI
550 #if defined(__WXPALMOS__)
551 #include "wx/palmos/app.h"
552 #elif defined(__WXMSW__)
553 #include "wx/msw/app.h"
554 #elif defined(__WXMOTIF__)
555 #include "wx/motif/app.h"
556 #elif defined(__WXMGL__)
557 #include "wx/mgl/app.h"
558 #elif defined(__WXGTK__)
559 #include "wx/gtk/app.h"
560 #elif defined(__WXX11__)
561 #include "wx/x11/app.h"
562 #elif defined(__WXMAC__)
563 #include "wx/mac/app.h"
564 #elif defined(__WXCOCOA__)
565 #include "wx/cocoa/app.h"
566 #elif defined(__WXPM__)
567 #include "wx/os2/app.h"
568 #endif
569 #else // !GUI
570 // allow using just wxApp (instead of wxAppConsole) in console programs
571 typedef wxAppConsole wxApp;
572 #endif // GUI/!GUI
573
574 // ----------------------------------------------------------------------------
575 // the global data
576 // ----------------------------------------------------------------------------
577
578 // for compatibility, we define this macro to access the global application
579 // object of type wxApp
580 //
581 // note that instead of using of wxTheApp in application code you should
582 // consider using DECLARE_APP() after which you may call wxGetApp() which will
583 // return the object of the correct type (i.e. MyApp and not wxApp)
584 //
585 // the cast is safe as in GUI build we only use wxApp, not wxAppConsole, and in
586 // console mode it does nothing at all
587 #define wxTheApp ((wxApp *)wxApp::GetInstance())
588
589 // ----------------------------------------------------------------------------
590 // global functions
591 // ----------------------------------------------------------------------------
592
593 // event loop related functions only work in GUI programs
594 // ------------------------------------------------------
595
596 // Force an exit from main loop
597 extern void WXDLLIMPEXP_BASE wxExit();
598
599 // Yield to other apps/messages
600 extern bool WXDLLIMPEXP_BASE wxYield();
601
602 // Yield to other apps/messages
603 extern void WXDLLIMPEXP_BASE wxWakeUpIdle();
604
605 // ----------------------------------------------------------------------------
606 // macros for dynamic creation of the application object
607 // ----------------------------------------------------------------------------
608
609 // Having a global instance of this class allows wxApp to be aware of the app
610 // creator function. wxApp can then call this function to create a new app
611 // object. Convoluted, but necessary.
612
613 class WXDLLIMPEXP_BASE wxAppInitializer
614 {
615 public:
616 wxAppInitializer(wxAppInitializerFunction fn)
617 { wxApp::SetInitializerFunction(fn); }
618 };
619
620 // the code below defines a IMPLEMENT_WXWIN_MAIN macro which you can use if
621 // your compiler really, really wants main() to be in your main program (e.g.
622 // hello.cpp). Now IMPLEMENT_APP should add this code if required.
623
624 #define IMPLEMENT_WXWIN_MAIN_CONSOLE \
625 int main(int argc, char **argv) { return wxEntry(argc, argv); }
626
627 // port-specific header could have defined it already in some special way
628 #ifndef IMPLEMENT_WXWIN_MAIN
629 #define IMPLEMENT_WXWIN_MAIN IMPLEMENT_WXWIN_MAIN_CONSOLE
630 #endif // defined(IMPLEMENT_WXWIN_MAIN)
631
632 #ifdef __WXUNIVERSAL__
633 #include "wx/univ/theme.h"
634
635 #define IMPLEMENT_WX_THEME_SUPPORT \
636 WX_USE_THEME(win32); \
637 WX_USE_THEME(gtk);
638 #else
639 #define IMPLEMENT_WX_THEME_SUPPORT
640 #endif
641
642 // Use this macro if you want to define your own main() or WinMain() function
643 // and call wxEntry() from there.
644 #define IMPLEMENT_APP_NO_MAIN(appname) \
645 wxAppConsole *wxCreateApp() \
646 { \
647 wxAppConsole::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, \
648 "your program"); \
649 return new appname; \
650 } \
651 wxAppInitializer \
652 wxTheAppInitializer((wxAppInitializerFunction) wxCreateApp); \
653 DECLARE_APP(appname) \
654 appname& wxGetApp() { return *(appname *)wxTheApp; }
655
656 // Same as IMPLEMENT_APP() normally but doesn't include themes support in
657 // wxUniversal builds
658 #define IMPLEMENT_APP_NO_THEMES(appname) \
659 IMPLEMENT_APP_NO_MAIN(appname) \
660 IMPLEMENT_WXWIN_MAIN
661
662 // Use this macro exactly once, the argument is the name of the wxApp-derived
663 // class which is the class of your application.
664 #define IMPLEMENT_APP(appname) \
665 IMPLEMENT_APP_NO_THEMES(appname) \
666 IMPLEMENT_WX_THEME_SUPPORT
667
668 // Same as IMPLEMENT_APP(), but for console applications.
669 #define IMPLEMENT_APP_CONSOLE(appname) \
670 IMPLEMENT_APP_NO_MAIN(appname) \
671 IMPLEMENT_WXWIN_MAIN_CONSOLE
672
673 // this macro can be used multiple times and just allows you to use wxGetApp()
674 // function
675 #define DECLARE_APP(appname) extern appname& wxGetApp();
676
677
678 // declare the stuff defined by IMPLEMENT_APP() macro, it's not really needed
679 // anywhere else but at the very least it suppresses icc warnings about
680 // defining extern symbols without prior declaration, and it shouldn't do any
681 // harm
682 extern wxAppConsole *wxCreateApp();
683 extern wxAppInitializer wxTheAppInitializer;
684
685 #endif // _WX_APP_H_BASE_
686