1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxAppBase class and macros used for declaration of wxApp
4 // derived class in the user code
5 // Author: Julian Smart
9 // Copyright: (c) Julian Smart
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_APP_H_BASE_
14 #define _WX_APP_H_BASE_
16 // ----------------------------------------------------------------------------
17 // headers we have to include here
18 // ----------------------------------------------------------------------------
20 #include "wx/event.h" // for the base class
23 #include "wx/window.h" // for wxTopLevelWindows
25 #include "wx/vidmode.h"
29 #include "wx/init.h" // we must declare wxEntry()
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
;
38 class WXDLLEXPORT wxEventLoop
;
41 // ----------------------------------------------------------------------------
43 // ----------------------------------------------------------------------------
45 // the type of the function used to create a wxApp object on program start up
46 typedef wxAppConsole
* (*wxAppInitializerFunction
)();
48 // ----------------------------------------------------------------------------
50 // ----------------------------------------------------------------------------
55 wxPRINT_POSTSCRIPT
= 2
58 // ----------------------------------------------------------------------------
59 // wxAppConsole: wxApp for non-GUI applications
60 // ----------------------------------------------------------------------------
62 class WXDLLIMPEXP_BASE wxAppConsole
: public wxEvtHandler
67 virtual ~wxAppConsole();
70 // the virtual functions which may/must be overridden in the derived class
71 // -----------------------------------------------------------------------
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
78 virtual bool Initialize(int& argc
, wxChar
**argv
);
80 // This gives wxCocoa a chance to call OnInit() with a memory pool in place
81 virtual bool CallOnInit() { return OnInit(); }
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();
89 // this is here only temporary hopefully (FIXME)
90 virtual bool OnInitGui() { return true; }
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;
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.
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();
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
111 virtual void OnFatalException() { }
113 // Called from wxExit() function, should terminate the application a.s.a.p.
117 // application info: name, description, vendor
118 // -------------------------------------------
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
124 // set/get the application name
125 wxString
GetAppName() const
127 return m_appName
.empty() ? m_className
: m_appName
;
129 void SetAppName(const wxString
& name
) { m_appName
= name
; }
131 // set/get the app class name
132 wxString
GetClassName() const { return m_className
; }
133 void SetClassName(const wxString
& name
) { m_className
= name
; }
135 // set/get the vendor name
136 const wxString
& GetVendorName() const { return m_vendorName
; }
137 void SetVendorName(const wxString
& name
) { m_vendorName
= name
; }
140 // cmd line parsing stuff
141 // ----------------------
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)
147 // you also need to call wxApp::OnInit() from YourApp::OnInit() for all
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
154 virtual void OnInitCmdLine(wxCmdLineParser
& parser
);
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
);
161 // called if "--help" option was specified, return true to continue
163 virtual bool OnCmdLineHelp(wxCmdLineParser
& parser
);
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
171 // miscellaneous customization functions
172 // -------------------------------------
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();
181 // the functions below shouldn't be used now that we have wxAppTraits
182 #if WXWIN_COMPATIBILITY_2_4
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()
189 wxDEPRECATED( virtual wxLog
*CreateLogTarget() );
192 // similar to CreateLogTarget() but for the global wxMessageOutput
194 wxDEPRECATED( virtual wxMessageOutput
*CreateMessageOutput() );
196 #endif // WXWIN_COMPATIBILITY_2_4
199 // event processing functions
200 // --------------------------
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
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
);
212 // call the specified handler on the given object with the given event
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;
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
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();
234 // doesn't do anything in this class, just a hook for GUI wxApp
235 virtual bool Yield(bool WXUNUSED(onlyIfNeeded
) = false) { return true; }
237 // make sure that idle events are sent again
238 virtual void WakeUpIdle() { }
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; }
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
252 // the arguments are the place where the assert occurred, the text of the
253 // assert itself and the user-specified message
255 virtual void OnAssert(const wxChar
*file
,
259 #endif // __WXDEBUG__
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
) );
270 // implementation only from now on
271 // -------------------------------
273 // helpers for dynamic wxApp construction
274 static void SetInitializerFunction(wxAppInitializerFunction fn
)
275 { ms_appInitFn
= fn
; }
276 static wxAppInitializerFunction
GetInitializerFunction()
277 { return ms_appInitFn
; }
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
283 static wxAppConsole
*GetInstance() { return ms_appInstance
; }
284 static void SetInstance(wxAppConsole
*app
) { ms_appInstance
= app
; }
287 // command line arguments (public for backwards compatibility)
292 // the function which creates the traits object when GetTraits() needs it
293 // for the first time
294 virtual wxAppTraits
*CreateTraits();
297 // function used for dynamic wxApp creation
298 static wxAppInitializerFunction ms_appInitFn
;
300 // the one and only global application object
301 static wxAppConsole
*ms_appInstance
;
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
309 // the class defining the application behaviour, NULL initially and created
310 // by GetTraits() when first needed
311 wxAppTraits
*m_traits
;
314 // the application object is a singleton anyhow, there is no sense in
316 DECLARE_NO_COPY_CLASS(wxAppConsole
)
319 // ----------------------------------------------------------------------------
320 // wxAppBase: the common part of wxApp implementations for all platforms
321 // ----------------------------------------------------------------------------
325 class WXDLLIMPEXP_CORE wxAppBase
: public wxAppConsole
329 virtual ~wxAppBase();
331 // the virtual functions which may/must be overridden in the derived class
332 // -----------------------------------------------------------------------
334 // very first initialization function
336 // Override: very rarely
337 virtual bool Initialize(int& argc
, wxChar
**argv
);
339 // a platform-dependent version of OnInit(): the code here is likely to
340 // depend on the toolkit. default version does nothing.
343 virtual bool OnInitGui();
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
351 // Override: rarely in GUI applications, always in console ones.
354 // a matching function for OnInit()
355 virtual int OnExit();
357 // very last clean up function
359 // Override: very rarely
360 virtual void CleanUp();
363 // the worker functions - usually not used directly by the user code
364 // -----------------------------------------------------------------
366 // return true if we're running main loop, i.e. if the events can
367 // (already) be dispatched
368 static bool IsMainLoopRunning()
370 wxAppBase
*app
= wx_static_cast(wxAppBase
*, GetInstance());
371 return app
&& app
->m_mainLoop
!= NULL
;
374 // execute the main GUI loop, the function returns when the loop ends
375 virtual int MainLoop();
377 // exit the main loop thus terminating the application
380 // exit the main GUI loop during the next iteration (i.e. it does not
381 // stop the program immediately!)
382 virtual void ExitMainLoop();
384 // returns true if there are unprocessed events in the event queue
385 virtual bool Pending();
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
391 virtual bool Dispatch();
393 // process all currently pending events right now
395 // it is an error to call Yield() recursively unless the value of
396 // onlyIfNeeded is true
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;
404 // this virtual function is called in the GUI mode when the application
405 // becomes idle and normally just sends wxIdleEvent to all interested
408 // it should return true if more idle events are needed, false if not
409 virtual bool ProcessIdle();
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
);
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
421 virtual bool OnExceptionInMainLoop();
422 #endif // wxUSE_EXCEPTIONS
425 // top level window functions
426 // --------------------------
428 // return true if our app has focus
429 virtual bool IsActive() const { return m_isActive
; }
431 // set the "main" top level window
432 void SetTopWindow(wxWindow
*win
) { m_topWindow
= win
; }
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
441 else if (wxTopLevelWindows
.GetCount() > 0)
442 return wxTopLevelWindows
.GetFirst()->GetData();
444 return (wxWindow
*)NULL
;
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
; }
458 // display mode, visual, printing mode, ...
459 // ------------------------------------------------------------------------
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
467 virtual bool SetDisplayMode(const wxVideoMode
& WXUNUSED(info
)) { return true; }
469 // set use of best visual flag (see below)
470 void SetUseBestVisual( bool flag
) { m_useBestVisual
= flag
; }
471 bool GetUseBestVisual() const { return m_useBestVisual
; }
473 // set/get printing mode: see wxPRINT_XXX constants.
475 // default behaviour is the normal one for Unix: always use PostScript
477 virtual void SetPrintMode(int WXUNUSED(mode
)) { }
478 int GetPrintMode() const { return wxPRINT_POSTSCRIPT
; }
481 // command line parsing (GUI-specific)
482 // ------------------------------------------------------------------------
484 #if wxUSE_CMDLINE_PARSER
485 virtual bool OnCmdLineParsed(wxCmdLineParser
& parser
);
486 virtual void OnInitCmdLine(wxCmdLineParser
& parser
);
489 // miscellaneous other stuff
490 // ------------------------------------------------------------------------
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
495 virtual void SetActive(bool isActive
, wxWindow
*lastFocus
);
497 // OBSOLETE: don't use, always returns true
499 // returns true if the program is successfully initialized
500 bool Initialized() { return true; }
502 // perform standard OnIdle behaviour, ensure that this is always called
503 void OnIdle(wxIdleEvent
& event
);
507 // delete all objects in wxPendingDelete list
508 void DeletePendingObjects();
510 // override base class method to use GUI traits
511 virtual wxAppTraits
*CreateTraits();
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
;
518 // the main top level window (may be NULL)
519 wxWindow
*m_topWindow
;
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()
524 // the explanation for using this strange scheme is given in appcmn.cpp
530 } m_exitOnFrameDelete
;
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
;
536 // does any of our windows have focus?
540 DECLARE_NO_COPY_CLASS(wxAppBase
)
545 // ----------------------------------------------------------------------------
546 // now include the declaration of the real class
547 // ----------------------------------------------------------------------------
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(__WXGTK20__)
559 #include "wx/gtk/app.h"
560 #elif defined(__WXGTK__)
561 #include "wx/gtk1/app.h"
562 #elif defined(__WXX11__)
563 #include "wx/x11/app.h"
564 #elif defined(__WXMAC__)
565 #include "wx/mac/app.h"
566 #elif defined(__WXCOCOA__)
567 #include "wx/cocoa/app.h"
568 #elif defined(__WXPM__)
569 #include "wx/os2/app.h"
572 // allow using just wxApp (instead of wxAppConsole) in console programs
573 typedef wxAppConsole wxApp
;
576 // ----------------------------------------------------------------------------
578 // ----------------------------------------------------------------------------
580 // for compatibility, we define this macro to access the global application
581 // object of type wxApp
583 // note that instead of using of wxTheApp in application code you should
584 // consider using DECLARE_APP() after which you may call wxGetApp() which will
585 // return the object of the correct type (i.e. MyApp and not wxApp)
587 // the cast is safe as in GUI build we only use wxApp, not wxAppConsole, and in
588 // console mode it does nothing at all
589 #define wxTheApp ((wxApp *)wxApp::GetInstance())
591 // ----------------------------------------------------------------------------
593 // ----------------------------------------------------------------------------
595 // event loop related functions only work in GUI programs
596 // ------------------------------------------------------
598 // Force an exit from main loop
599 extern void WXDLLIMPEXP_BASE
wxExit();
601 // Yield to other apps/messages
602 extern bool WXDLLIMPEXP_BASE
wxYield();
604 // Yield to other apps/messages
605 extern void WXDLLIMPEXP_BASE
wxWakeUpIdle();
607 // ----------------------------------------------------------------------------
608 // macros for dynamic creation of the application object
609 // ----------------------------------------------------------------------------
611 // Having a global instance of this class allows wxApp to be aware of the app
612 // creator function. wxApp can then call this function to create a new app
613 // object. Convoluted, but necessary.
615 class WXDLLIMPEXP_BASE wxAppInitializer
618 wxAppInitializer(wxAppInitializerFunction fn
)
619 { wxApp::SetInitializerFunction(fn
); }
622 // the code below defines a IMPLEMENT_WXWIN_MAIN macro which you can use if
623 // your compiler really, really wants main() to be in your main program (e.g.
624 // hello.cpp). Now IMPLEMENT_APP should add this code if required.
626 #define IMPLEMENT_WXWIN_MAIN_CONSOLE \
627 int main(int argc, char **argv) { return wxEntry(argc, argv); }
629 // port-specific header could have defined it already in some special way
630 #ifndef IMPLEMENT_WXWIN_MAIN
631 #define IMPLEMENT_WXWIN_MAIN IMPLEMENT_WXWIN_MAIN_CONSOLE
632 #endif // defined(IMPLEMENT_WXWIN_MAIN)
634 #ifdef __WXUNIVERSAL__
635 #include "wx/univ/theme.h"
637 #define IMPLEMENT_WX_THEME_SUPPORT \
638 WX_USE_THEME(win32); \
641 #define IMPLEMENT_WX_THEME_SUPPORT
644 // Use this macro if you want to define your own main() or WinMain() function
645 // and call wxEntry() from there.
646 #define IMPLEMENT_APP_NO_MAIN(appname) \
647 wxAppConsole *wxCreateApp() \
649 wxAppConsole::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, \
651 return new appname; \
654 wxTheAppInitializer((wxAppInitializerFunction) wxCreateApp); \
655 DECLARE_APP(appname) \
656 appname& wxGetApp() { return *(appname *)wxTheApp; }
658 // Same as IMPLEMENT_APP() normally but doesn't include themes support in
659 // wxUniversal builds
660 #define IMPLEMENT_APP_NO_THEMES(appname) \
661 IMPLEMENT_APP_NO_MAIN(appname) \
664 // Use this macro exactly once, the argument is the name of the wxApp-derived
665 // class which is the class of your application.
666 #define IMPLEMENT_APP(appname) \
667 IMPLEMENT_APP_NO_THEMES(appname) \
668 IMPLEMENT_WX_THEME_SUPPORT
670 // Same as IMPLEMENT_APP(), but for console applications.
671 #define IMPLEMENT_APP_CONSOLE(appname) \
672 IMPLEMENT_APP_NO_MAIN(appname) \
673 IMPLEMENT_WXWIN_MAIN_CONSOLE
675 // this macro can be used multiple times and just allows you to use wxGetApp()
677 #define DECLARE_APP(appname) extern appname& wxGetApp();
680 // declare the stuff defined by IMPLEMENT_APP() macro, it's not really needed
681 // anywhere else but at the very least it suppresses icc warnings about
682 // defining extern symbols without prior declaration, and it shouldn't do any
684 extern wxAppConsole
*wxCreateApp();
685 extern wxAppInitializer wxTheAppInitializer
;
687 #endif // _WX_APP_H_BASE_