1998-05-20 14:01:55 +00:00
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2002-05-07 19:56:43 +00:00
|
|
|
|
// Name: wx/app.h
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// Purpose: wxAppBase class and macros used for declaration of wxApp
|
|
|
|
|
// derived class in the user code
|
1998-05-20 14:01:55 +00:00
|
|
|
|
// Author: Julian Smart
|
|
|
|
|
// Modified by:
|
|
|
|
|
// Created: 01/02/97
|
|
|
|
|
// RCS-ID: $Id$
|
2003-03-17 10:34:04 +00:00
|
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
|
#ifndef _WX_APP_H_BASE_
|
|
|
|
|
#define _WX_APP_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
1999-07-07 15:11:09 +00:00
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// headers we have to include here
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
#include "wx/event.h" // for the base class
|
|
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
|
#if wxUSE_GUI
|
2001-07-10 17:28:19 +00:00
|
|
|
|
#include "wx/window.h" // for wxTopLevelWindows
|
2003-09-27 12:55:46 +00:00
|
|
|
|
|
|
|
|
|
#include "wx/vidmode.h"
|
1999-10-04 20:15:38 +00:00
|
|
|
|
#endif // wxUSE_GUI
|
1999-07-07 15:11:09 +00:00
|
|
|
|
|
2002-05-07 19:56:43 +00:00
|
|
|
|
#include "wx/build.h"
|
2003-06-30 21:39:25 +00:00
|
|
|
|
#include "wx/init.h" // we must declare wxEntry()
|
2002-05-07 19:56:43 +00:00
|
|
|
|
|
2003-07-31 10:11:28 +00:00
|
|
|
|
class WXDLLIMPEXP_BASE wxAppConsole;
|
2003-07-02 01:59:24 +00:00
|
|
|
|
class WXDLLIMPEXP_BASE wxAppTraits;
|
|
|
|
|
class WXDLLIMPEXP_BASE wxCmdLineParser;
|
|
|
|
|
class WXDLLIMPEXP_BASE wxLog;
|
|
|
|
|
class WXDLLIMPEXP_BASE wxMessageOutput;
|
2002-08-30 00:58:34 +00:00
|
|
|
|
|
2003-09-16 10:52:57 +00:00
|
|
|
|
// wxUSE_EVTLOOP_IN_APP is a temporary hack needed until all ports are updated
|
|
|
|
|
// to use wxEventLoop, otherwise we get linking errors on wxMac, it's going to
|
|
|
|
|
// disappear a.s.a.p.
|
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
|
#define wxUSE_EVTLOOP_IN_APP 0
|
|
|
|
|
#else
|
|
|
|
|
#define wxUSE_EVTLOOP_IN_APP 1
|
|
|
|
|
class WXDLLEXPORT wxEventLoop;
|
|
|
|
|
#endif
|
2003-09-15 19:48:16 +00:00
|
|
|
|
|
2002-12-07 23:58:13 +00:00
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// typedefs
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
// the type of the function used to create a wxApp object on program start up
|
2003-07-31 10:11:28 +00:00
|
|
|
|
typedef wxAppConsole* (*wxAppInitializerFunction)();
|
2002-12-07 23:58:13 +00:00
|
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// constants
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
wxPRINT_WINDOWS = 1,
|
|
|
|
|
wxPRINT_POSTSCRIPT = 2
|
|
|
|
|
};
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// wxAppConsole: wxApp for non-GUI applications
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
|
class WXDLLIMPEXP_BASE wxAppConsole : public wxEvtHandler
|
1999-07-06 00:44:26 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// ctor and dtor
|
|
|
|
|
wxAppConsole();
|
|
|
|
|
virtual ~wxAppConsole();
|
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// the virtual functions which may/must be overridden in the derived class
|
|
|
|
|
// -----------------------------------------------------------------------
|
2001-07-10 17:28:19 +00:00
|
|
|
|
|
2003-06-30 18:43:09 +00:00
|
|
|
|
// This is the very first function called for a newly created wxApp object,
|
|
|
|
|
// it is used by the library to do the global initialization. If, for some
|
|
|
|
|
// reason, you must override it (instead of just overriding OnInit(), as
|
|
|
|
|
// usual, for app-specific initializations), do not forget to call the base
|
|
|
|
|
// class version!
|
2003-06-30 20:02:05 +00:00
|
|
|
|
virtual bool Initialize(int& argc, wxChar **argv);
|
2003-06-30 18:43:09 +00:00
|
|
|
|
|
2003-07-03 15:32:11 +00:00
|
|
|
|
// This gives wxCocoa a chance to call OnInit() with a memory pool in place
|
|
|
|
|
virtual bool CallOnInit() { return OnInit(); }
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// Called before OnRun(), this is a good place to do initialization -- if
|
|
|
|
|
// anything fails, return false from here to prevent the program from
|
|
|
|
|
// continuing. The command line is normally parsed here, call the base
|
|
|
|
|
// class OnInit() to do it.
|
2001-07-10 17:28:19 +00:00
|
|
|
|
virtual bool OnInit();
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
2004-07-04 11:19:47 +00:00
|
|
|
|
// this is here only temporary hopefully (FIXME)
|
2003-06-30 18:43:09 +00:00
|
|
|
|
virtual bool OnInitGui() { return true; }
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// This is the replacement for the normal main(): all program work should
|
|
|
|
|
// be done here. When OnRun() returns, the programs starts shutting down.
|
1999-10-04 20:15:38 +00:00
|
|
|
|
virtual int OnRun() = 0;
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// This is only called if OnInit() returned true so it's a good place to do
|
|
|
|
|
// any cleanup matching the initializations done there.
|
1999-11-05 19:03:19 +00:00
|
|
|
|
virtual int OnExit();
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
2003-06-30 18:43:09 +00:00
|
|
|
|
// This is the very last function called on wxApp object before it is
|
|
|
|
|
// destroyed. If you override it (instead of overriding OnExit() as usual)
|
|
|
|
|
// do not forget to call the base class version!
|
|
|
|
|
virtual void CleanUp();
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// Called when a fatal exception occurs, this function should take care not
|
|
|
|
|
// to do anything which might provoke a nested exception! It may be
|
|
|
|
|
// overridden if you wish to react somehow in non-default way (core dump
|
|
|
|
|
// under Unix, application crash under Windows) to fatal program errors,
|
|
|
|
|
// however extreme care should be taken if you don't want this function to
|
|
|
|
|
// crash.
|
1999-07-06 00:44:26 +00:00
|
|
|
|
virtual void OnFatalException() { }
|
|
|
|
|
|
2003-09-17 23:30:53 +00:00
|
|
|
|
#if wxUSE_EXCEPTIONS
|
2004-03-30 20:49:54 +00:00
|
|
|
|
// function called if an uncaught exception is caught inside the main
|
|
|
|
|
// event loop: it may return true to continue running the event loop or
|
|
|
|
|
// false to stop it (in the latter case it may rethrow the exception as
|
|
|
|
|
// well)
|
2004-05-02 11:16:32 +00:00
|
|
|
|
virtual bool OnExceptionInMainLoop();
|
2004-03-30 20:49:54 +00:00
|
|
|
|
|
2003-09-17 23:30:53 +00:00
|
|
|
|
// Called when an unhandled C++ exception occurs inside OnRun(): note that
|
|
|
|
|
// the exception type is lost by now, so if you really want to handle the
|
|
|
|
|
// exception you should override OnRun() and put a try/catch around
|
|
|
|
|
// MainLoop() call there
|
|
|
|
|
virtual void OnUnhandledException() { }
|
|
|
|
|
#endif // wxUSE_EXCEPTIONS
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// Called from wxExit() function, should terminate the application a.s.a.p.
|
|
|
|
|
virtual void Exit();
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// application info: name, description, vendor
|
|
|
|
|
// -------------------------------------------
|
|
|
|
|
|
|
|
|
|
// NB: all these should be set by the application itself, there are no
|
|
|
|
|
// reasonable default except for the application name which is taken to
|
|
|
|
|
// be argv[0]
|
|
|
|
|
|
|
|
|
|
// set/get the application name
|
|
|
|
|
wxString GetAppName() const
|
|
|
|
|
{
|
2003-06-24 00:56:19 +00:00
|
|
|
|
return m_appName.empty() ? m_className : m_appName;
|
1999-07-06 00:44:26 +00:00
|
|
|
|
}
|
|
|
|
|
void SetAppName(const wxString& name) { m_appName = name; }
|
|
|
|
|
|
|
|
|
|
// set/get the app class name
|
|
|
|
|
wxString GetClassName() const { return m_className; }
|
|
|
|
|
void SetClassName(const wxString& name) { m_className = name; }
|
|
|
|
|
|
|
|
|
|
// set/get the vendor name
|
|
|
|
|
const wxString& GetVendorName() const { return m_vendorName; }
|
|
|
|
|
void SetVendorName(const wxString& name) { m_vendorName = name; }
|
|
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
|
|
2001-07-10 17:28:19 +00:00
|
|
|
|
// cmd line parsing stuff
|
|
|
|
|
// ----------------------
|
|
|
|
|
|
|
|
|
|
// all of these methods may be overridden in the derived class to
|
|
|
|
|
// customize the command line parsing (by default only a few standard
|
|
|
|
|
// options are handled)
|
|
|
|
|
//
|
|
|
|
|
// you also need to call wxApp::OnInit() from YourApp::OnInit() for all
|
|
|
|
|
// this to work
|
|
|
|
|
|
|
|
|
|
#if wxUSE_CMDLINE_PARSER
|
|
|
|
|
// this one is called from OnInit() to add all supported options
|
2003-08-03 21:00:52 +00:00
|
|
|
|
// to the given parser (don't forget to call the base class version if you
|
|
|
|
|
// override it!)
|
2001-07-10 17:28:19 +00:00
|
|
|
|
virtual void OnInitCmdLine(wxCmdLineParser& parser);
|
|
|
|
|
|
2004-09-08 17:30:19 +00:00
|
|
|
|
// called after successfully parsing the command line, return true
|
|
|
|
|
// to continue and false to exit (don't forget to call the base class
|
2003-08-03 21:00:52 +00:00
|
|
|
|
// version if you override it!)
|
2001-07-10 17:28:19 +00:00
|
|
|
|
virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
|
|
|
|
|
|
2004-09-08 17:30:19 +00:00
|
|
|
|
// called if "--help" option was specified, return true to continue
|
|
|
|
|
// and false to exit
|
2001-07-10 17:28:19 +00:00
|
|
|
|
virtual bool OnCmdLineHelp(wxCmdLineParser& parser);
|
|
|
|
|
|
|
|
|
|
// called if incorrect command line options were given, return
|
2004-09-08 17:30:19 +00:00
|
|
|
|
// false to abort and true to continue
|
2001-07-10 17:28:19 +00:00
|
|
|
|
virtual bool OnCmdLineError(wxCmdLineParser& parser);
|
|
|
|
|
#endif // wxUSE_CMDLINE_PARSER
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// miscellaneous customization functions
|
|
|
|
|
// -------------------------------------
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// create the app traits object to which we delegate for everything which
|
|
|
|
|
// either should be configurable by the user (then he can change the
|
|
|
|
|
// default behaviour simply by overriding CreateTraits() and returning his
|
|
|
|
|
// own traits object) or which is GUI/console dependent as then wxAppTraits
|
|
|
|
|
// allows us to abstract the differences behind the common fa<66>ade
|
|
|
|
|
wxAppTraits *GetTraits();
|
|
|
|
|
|
|
|
|
|
// the functions below shouldn't be used now that we have wxAppTraits
|
|
|
|
|
#if WXWIN_COMPATIBILITY_2_4
|
|
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
|
#if wxUSE_LOG
|
|
|
|
|
// override this function to create default log target of arbitrary
|
|
|
|
|
// user-defined class (default implementation creates a wxLogGui
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// object) -- this log object is used by default by all wxLogXXX()
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// functions.
|
2005-01-10 17:21:16 +00:00
|
|
|
|
wxDEPRECATED( virtual wxLog *CreateLogTarget() );
|
1999-07-06 00:44:26 +00:00
|
|
|
|
#endif // wxUSE_LOG
|
|
|
|
|
|
2002-08-30 00:58:34 +00:00
|
|
|
|
// similar to CreateLogTarget() but for the global wxMessageOutput
|
|
|
|
|
// object
|
2005-01-10 17:21:16 +00:00
|
|
|
|
wxDEPRECATED( virtual wxMessageOutput *CreateMessageOutput() );
|
2002-08-30 00:58:34 +00:00
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
#endif // WXWIN_COMPATIBILITY_2_4
|
2001-11-03 21:36:15 +00:00
|
|
|
|
|
2000-03-09 22:26:41 +00:00
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// event processing functions
|
|
|
|
|
// --------------------------
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
2002-05-09 17:21:02 +00:00
|
|
|
|
// this method allows to filter all the events processed by the program, so
|
|
|
|
|
// you should try to return quickly from it to avoid slowing down the
|
|
|
|
|
// program to the crawl
|
|
|
|
|
//
|
|
|
|
|
// return value should be -1 to continue with the normal event processing,
|
|
|
|
|
// or TRUE or FALSE to stop further processing and pretend that the event
|
|
|
|
|
// had been already processed or won't be processed at all, respectively
|
|
|
|
|
virtual int FilterEvent(wxEvent& event);
|
|
|
|
|
|
2003-09-17 23:30:53 +00:00
|
|
|
|
#if wxUSE_EXCEPTIONS
|
|
|
|
|
// call the specified handler on the given object with the given event
|
|
|
|
|
//
|
|
|
|
|
// this method only exists to allow catching the exceptions thrown by any
|
|
|
|
|
// event handler, it would lead to an extra (useless) virtual function call
|
|
|
|
|
// if the exceptions were not used, so it doesn't even exist in that case
|
|
|
|
|
virtual void HandleEvent(wxEvtHandler *handler,
|
|
|
|
|
wxEventFunction func,
|
|
|
|
|
wxEvent& event) const;
|
|
|
|
|
#endif // wxUSE_EXCEPTIONS
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// process all events in the wxPendingEvents list -- it is necessary to
|
|
|
|
|
// call this function to process posted events. This happens during each
|
|
|
|
|
// event loop iteration in GUI mode but if there is no main loop, it may be
|
|
|
|
|
// also called directly.
|
|
|
|
|
virtual void ProcessPendingEvents();
|
|
|
|
|
|
|
|
|
|
// doesn't do anything in this class, just a hook for GUI wxApp
|
|
|
|
|
virtual bool Yield(bool WXUNUSED(onlyIfNeeded) = false) { return true; }
|
|
|
|
|
|
|
|
|
|
// make sure that idle events are sent again
|
|
|
|
|
virtual void WakeUpIdle() { }
|
|
|
|
|
|
2004-10-04 20:21:44 +00:00
|
|
|
|
// this is just a convenience: by providing its implementation here we
|
|
|
|
|
// avoid #ifdefs in the code using it
|
|
|
|
|
static bool IsMainLoopRunning() { return false; }
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
2001-07-11 15:19:32 +00:00
|
|
|
|
// debugging support
|
|
|
|
|
// -----------------
|
|
|
|
|
|
|
|
|
|
// this function is called when an assert failure occurs, the base class
|
|
|
|
|
// version does the normal processing (i.e. shows the usual assert failure
|
|
|
|
|
// dialog box)
|
2002-06-13 19:37:43 +00:00
|
|
|
|
//
|
|
|
|
|
// the arguments are the place where the assert occured, the text of the
|
|
|
|
|
// assert itself and the user-specified message
|
2001-07-11 15:19:32 +00:00
|
|
|
|
#ifdef __WXDEBUG__
|
2002-06-13 19:37:43 +00:00
|
|
|
|
virtual void OnAssert(const wxChar *file,
|
|
|
|
|
int line,
|
|
|
|
|
const wxChar *cond,
|
|
|
|
|
const wxChar *msg);
|
2001-07-11 15:19:32 +00:00
|
|
|
|
#endif // __WXDEBUG__
|
2003-08-23 02:38:34 +00:00
|
|
|
|
|
2002-05-07 19:56:43 +00:00
|
|
|
|
// check that the wxBuildOptions object (constructed in the application
|
|
|
|
|
// itself, usually the one from IMPLEMENT_APP() macro) matches the build
|
|
|
|
|
// options of the library and abort if it doesn't
|
2003-08-04 13:17:17 +00:00
|
|
|
|
static bool CheckBuildOptions(const char *optionsSignature,
|
|
|
|
|
const char *componentName);
|
2003-08-17 11:14:18 +00:00
|
|
|
|
#if WXWIN_COMPATIBILITY_2_4
|
2005-01-10 17:21:16 +00:00
|
|
|
|
wxDEPRECATED( static bool CheckBuildOptions(const wxBuildOptions& buildOptions) );
|
2003-08-17 11:14:18 +00:00
|
|
|
|
#endif
|
2002-02-22 18:18:36 +00:00
|
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// implementation only from now on
|
|
|
|
|
// -------------------------------
|
|
|
|
|
|
|
|
|
|
// helpers for dynamic wxApp construction
|
|
|
|
|
static void SetInitializerFunction(wxAppInitializerFunction fn)
|
2003-06-24 00:56:19 +00:00
|
|
|
|
{ ms_appInitFn = fn; }
|
1999-07-06 00:44:26 +00:00
|
|
|
|
static wxAppInitializerFunction GetInitializerFunction()
|
2003-06-24 00:56:19 +00:00
|
|
|
|
{ return ms_appInitFn; }
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
2003-08-01 23:37:40 +00:00
|
|
|
|
// accessors for ms_appInstance field (external code might wish to modify
|
|
|
|
|
// it, this is why we provide a setter here as well, but you should really
|
|
|
|
|
// know what you're doing if you call it), wxTheApp is usually used instead
|
|
|
|
|
// of GetInstance()
|
|
|
|
|
static wxAppConsole *GetInstance() { return ms_appInstance; }
|
|
|
|
|
static void SetInstance(wxAppConsole *app) { ms_appInstance = app; }
|
|
|
|
|
|
1999-10-18 15:14:52 +00:00
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// command line arguments (public for backwards compatibility)
|
1999-07-23 09:36:03 +00:00
|
|
|
|
int argc;
|
|
|
|
|
wxChar **argv;
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
|
|
|
|
protected:
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// the function which creates the traits object when GetTraits() needs it
|
|
|
|
|
// for the first time
|
|
|
|
|
virtual wxAppTraits *CreateTraits();
|
|
|
|
|
|
|
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// function used for dynamic wxApp creation
|
2003-06-24 00:56:19 +00:00
|
|
|
|
static wxAppInitializerFunction ms_appInitFn;
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
2003-08-01 23:37:40 +00:00
|
|
|
|
// the one and only global application object
|
|
|
|
|
static wxAppConsole *ms_appInstance;
|
|
|
|
|
|
2003-08-01 23:00:16 +00:00
|
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// application info (must be set from the user code)
|
|
|
|
|
wxString m_vendorName, // vendor name (ACME Inc)
|
|
|
|
|
m_appName, // app name
|
|
|
|
|
m_className; // class name
|
2002-08-30 00:58:34 +00:00
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// the class defining the application behaviour, NULL initially and created
|
|
|
|
|
// by GetTraits() when first needed
|
|
|
|
|
wxAppTraits *m_traits;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// the application object is a singleton anyhow, there is no sense in
|
|
|
|
|
// copying it
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxAppConsole)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// wxAppBase: the common part of wxApp implementations for all platforms
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
|
#if wxUSE_GUI
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
|
class WXDLLIMPEXP_CORE wxAppBase : public wxAppConsole
|
2003-06-24 00:56:19 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
wxAppBase();
|
|
|
|
|
virtual ~wxAppBase();
|
|
|
|
|
|
|
|
|
|
// the virtual functions which may/must be overridden in the derived class
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
2003-06-30 18:43:09 +00:00
|
|
|
|
// very first initialization function
|
|
|
|
|
//
|
|
|
|
|
// Override: very rarely
|
2003-06-30 20:02:05 +00:00
|
|
|
|
virtual bool Initialize(int& argc, wxChar **argv);
|
2003-06-30 18:43:09 +00:00
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// a platform-dependent version of OnInit(): the code here is likely to
|
|
|
|
|
// depend on the toolkit. default version does nothing.
|
|
|
|
|
//
|
|
|
|
|
// Override: rarely.
|
|
|
|
|
virtual bool OnInitGui();
|
|
|
|
|
|
|
|
|
|
// called to start program execution - the default version just enters
|
|
|
|
|
// the main GUI loop in which events are received and processed until
|
|
|
|
|
// the last window is not deleted (if GetExitOnFrameDelete) or
|
|
|
|
|
// ExitMainLoop() is called. In console mode programs, the execution
|
|
|
|
|
// of the program really starts here
|
|
|
|
|
//
|
|
|
|
|
// Override: rarely in GUI applications, always in console ones.
|
|
|
|
|
virtual int OnRun();
|
|
|
|
|
|
2003-08-03 21:00:52 +00:00
|
|
|
|
// a matching function for OnInit()
|
|
|
|
|
virtual int OnExit();
|
|
|
|
|
|
2003-06-30 18:43:09 +00:00
|
|
|
|
// very last clean up function
|
|
|
|
|
//
|
|
|
|
|
// Override: very rarely
|
|
|
|
|
virtual void CleanUp();
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// the worker functions - usually not used directly by the user code
|
|
|
|
|
// -----------------------------------------------------------------
|
|
|
|
|
|
2004-10-04 10:51:11 +00:00
|
|
|
|
// return true if we're running main loop, i.e. if the events can
|
|
|
|
|
// (already) be dispatched
|
2004-10-04 20:21:44 +00:00
|
|
|
|
static bool IsMainLoopRunning()
|
2004-10-04 10:51:11 +00:00
|
|
|
|
{
|
|
|
|
|
#if wxUSE_EVTLOOP_IN_APP
|
2004-10-04 20:21:44 +00:00
|
|
|
|
wxAppBase *app = wx_static_cast(wxAppBase *, GetInstance());
|
|
|
|
|
return app && app->m_mainLoop != NULL;
|
2004-10-04 10:51:11 +00:00
|
|
|
|
#else
|
|
|
|
|
return false;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// execute the main GUI loop, the function returns when the loop ends
|
2003-09-15 19:48:16 +00:00
|
|
|
|
virtual int MainLoop();
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
2003-06-30 18:43:09 +00:00
|
|
|
|
// exit the main loop thus terminating the application
|
|
|
|
|
virtual void Exit();
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// exit the main GUI loop during the next iteration (i.e. it does not
|
|
|
|
|
// stop the program immediately!)
|
2003-09-15 19:48:16 +00:00
|
|
|
|
virtual void ExitMainLoop();
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
2004-09-08 17:30:19 +00:00
|
|
|
|
// returns true if there are unprocessed events in the event queue
|
2003-09-15 19:48:16 +00:00
|
|
|
|
virtual bool Pending();
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
|
|
|
|
// process the first event in the event queue (blocks until an event
|
2003-09-15 19:48:16 +00:00
|
|
|
|
// appears if there are none currently, use Pending() if this is not
|
|
|
|
|
// wanted), returns false if the event loop should stop and true
|
|
|
|
|
// otherwise
|
|
|
|
|
virtual bool Dispatch();
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
|
|
|
|
// process all currently pending events right now
|
|
|
|
|
//
|
|
|
|
|
// it is an error to call Yield() recursively unless the value of
|
2004-09-08 17:30:19 +00:00
|
|
|
|
// onlyIfNeeded is true
|
2003-06-24 00:56:19 +00:00
|
|
|
|
//
|
|
|
|
|
// WARNING: this function is dangerous as it can lead to unexpected
|
|
|
|
|
// reentrancies (i.e. when called from an event handler it
|
|
|
|
|
// may result in calling the same event handler again), use
|
|
|
|
|
// with _extreme_ care or, better, don't use at all!
|
2004-09-08 17:30:19 +00:00
|
|
|
|
virtual bool Yield(bool onlyIfNeeded = false) = 0;
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
|
|
|
|
// this virtual function is called in the GUI mode when the application
|
|
|
|
|
// becomes idle and normally just sends wxIdleEvent to all interested
|
|
|
|
|
// parties
|
|
|
|
|
//
|
2004-09-08 17:30:19 +00:00
|
|
|
|
// it should return true if more idle events are needed, false if not
|
2003-09-15 19:48:16 +00:00
|
|
|
|
virtual bool ProcessIdle();
|
2003-07-09 10:15:21 +00:00
|
|
|
|
|
|
|
|
|
// Send idle event to window and all subwindows
|
2004-09-08 17:30:19 +00:00
|
|
|
|
// Returns true if more idle time is requested.
|
2003-07-13 16:59:30 +00:00
|
|
|
|
virtual bool SendIdleEvents(wxWindow* win, wxIdleEvent& event);
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
2003-07-14 08:41:08 +00:00
|
|
|
|
// Perform standard OnIdle behaviour: call from port's OnIdle
|
|
|
|
|
void OnIdle(wxIdleEvent& event);
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
|
|
|
|
// top level window functions
|
|
|
|
|
// --------------------------
|
|
|
|
|
|
2004-09-08 17:30:19 +00:00
|
|
|
|
// return true if our app has focus
|
2003-06-24 00:56:19 +00:00
|
|
|
|
virtual bool IsActive() const { return m_isActive; }
|
|
|
|
|
|
|
|
|
|
// set the "main" top level window
|
|
|
|
|
void SetTopWindow(wxWindow *win) { m_topWindow = win; }
|
|
|
|
|
|
|
|
|
|
// return the "main" top level window (if it hadn't been set previously
|
|
|
|
|
// with SetTopWindow(), will return just some top level window and, if
|
|
|
|
|
// there are none, will return NULL)
|
|
|
|
|
virtual wxWindow *GetTopWindow() const
|
|
|
|
|
{
|
|
|
|
|
if (m_topWindow)
|
|
|
|
|
return m_topWindow;
|
|
|
|
|
else if (wxTopLevelWindows.GetCount() > 0)
|
|
|
|
|
return wxTopLevelWindows.GetFirst()->GetData();
|
|
|
|
|
else
|
|
|
|
|
return (wxWindow *)NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// control the exit behaviour: by default, the program will exit the
|
|
|
|
|
// main loop (and so, usually, terminate) when the last top-level
|
|
|
|
|
// program window is deleted. Beware that if you disable this behaviour
|
2004-09-08 17:30:19 +00:00
|
|
|
|
// (with SetExitOnFrameDelete(false)), you'll have to call
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// ExitMainLoop() explicitly from somewhere.
|
|
|
|
|
void SetExitOnFrameDelete(bool flag)
|
|
|
|
|
{ m_exitOnFrameDelete = flag ? Yes : No; }
|
|
|
|
|
bool GetExitOnFrameDelete() const
|
|
|
|
|
{ return m_exitOnFrameDelete == Yes; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// display mode, visual, printing mode, ...
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
// Get display mode that is used use. This is only used in framebuffer
|
|
|
|
|
// wxWin ports (such as wxMGL).
|
2003-09-27 12:55:46 +00:00
|
|
|
|
virtual wxVideoMode GetDisplayMode() const { return wxVideoMode(); }
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// Set display mode to use. This is only used in framebuffer wxWin
|
|
|
|
|
// ports (such as wxMGL). This method should be called from
|
|
|
|
|
// wxApp::OnInitGui
|
2004-09-08 17:30:19 +00:00
|
|
|
|
virtual bool SetDisplayMode(const wxVideoMode& WXUNUSED(info)) { return true; }
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
|
|
|
|
// set use of best visual flag (see below)
|
|
|
|
|
void SetUseBestVisual( bool flag ) { m_useBestVisual = flag; }
|
|
|
|
|
bool GetUseBestVisual() const { return m_useBestVisual; }
|
|
|
|
|
|
|
|
|
|
// set/get printing mode: see wxPRINT_XXX constants.
|
|
|
|
|
//
|
|
|
|
|
// default behaviour is the normal one for Unix: always use PostScript
|
|
|
|
|
// printing.
|
|
|
|
|
virtual void SetPrintMode(int WXUNUSED(mode)) { }
|
|
|
|
|
int GetPrintMode() const { return wxPRINT_POSTSCRIPT; }
|
|
|
|
|
|
|
|
|
|
|
2003-08-03 21:00:52 +00:00
|
|
|
|
// command line parsing (GUI-specific)
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
2003-08-23 02:38:34 +00:00
|
|
|
|
#if wxUSE_CMDLINE_PARSER
|
2003-08-03 21:00:52 +00:00
|
|
|
|
virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
|
|
|
|
|
virtual void OnInitCmdLine(wxCmdLineParser& parser);
|
2003-08-23 02:38:34 +00:00
|
|
|
|
#endif
|
2003-08-03 21:00:52 +00:00
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// miscellaneous other stuff
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
// called by toolkit-specific code to set the app status: active (we have
|
|
|
|
|
// focus) or not and also the last window which had focus before we were
|
|
|
|
|
// deactivated
|
|
|
|
|
virtual void SetActive(bool isActive, wxWindow *lastFocus);
|
|
|
|
|
|
2003-09-27 13:47:46 +00:00
|
|
|
|
// OBSOLETE: don't use, always returns true
|
|
|
|
|
//
|
|
|
|
|
// returns true if the program is successfully initialized
|
|
|
|
|
bool Initialized() { return true; }
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
|
|
|
|
protected:
|
2003-06-30 18:43:09 +00:00
|
|
|
|
// delete all objects in wxPendingDelete list
|
|
|
|
|
void DeletePendingObjects();
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// override base class method to use GUI traits
|
|
|
|
|
virtual wxAppTraits *CreateTraits();
|
|
|
|
|
|
|
|
|
|
|
2003-09-16 10:52:57 +00:00
|
|
|
|
#if wxUSE_EVTLOOP_IN_APP
|
2003-09-15 19:48:16 +00:00
|
|
|
|
// the main event loop of the application (may be NULL if the loop hasn't
|
|
|
|
|
// been started yet or has already terminated)
|
|
|
|
|
wxEventLoop *m_mainLoop;
|
2003-09-16 10:52:57 +00:00
|
|
|
|
#endif // wxUSE_EVTLOOP_IN_APP
|
2003-09-15 19:48:16 +00:00
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
// the main top level window (may be NULL)
|
2001-06-26 20:59:19 +00:00
|
|
|
|
wxWindow *m_topWindow;
|
|
|
|
|
|
2002-08-15 20:42:07 +00:00
|
|
|
|
// if Yes, exit the main loop when the last top level window is deleted, if
|
|
|
|
|
// No don't do it and if Later -- only do it once we reach our OnRun()
|
|
|
|
|
//
|
|
|
|
|
// the explanation for using this strange scheme is given in appcmn.cpp
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
Later = -1,
|
|
|
|
|
No,
|
|
|
|
|
Yes
|
|
|
|
|
} m_exitOnFrameDelete;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
2004-09-08 17:30:19 +00:00
|
|
|
|
// true if the apps whats to use the best visual on systems where
|
2000-01-31 17:37:37 +00:00
|
|
|
|
// more than one are available (Sun, SGI, XFree86 4.0 ?)
|
|
|
|
|
bool m_useBestVisual;
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
|
// does any of our windows has focus?
|
|
|
|
|
bool m_isActive;
|
2003-06-24 00:56:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxAppBase)
|
1999-07-06 00:44:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
|
#endif // wxUSE_GUI
|
|
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// now include the declaration of the real class
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
|
#if wxUSE_GUI
|
2004-12-20 12:44:22 +00:00
|
|
|
|
#if defined(__WXPALMOS__)
|
2004-10-19 13:40:30 +00:00
|
|
|
|
#include "wx/palmos/app.h"
|
|
|
|
|
#elif defined(__WXMSW__)
|
1999-10-04 20:15:38 +00:00
|
|
|
|
#include "wx/msw/app.h"
|
|
|
|
|
#elif defined(__WXMOTIF__)
|
|
|
|
|
#include "wx/motif/app.h"
|
2001-06-26 20:59:19 +00:00
|
|
|
|
#elif defined(__WXMGL__)
|
|
|
|
|
#include "wx/mgl/app.h"
|
1999-10-04 20:15:38 +00:00
|
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
|
#include "wx/gtk/app.h"
|
2002-02-05 16:34:33 +00:00
|
|
|
|
#elif defined(__WXX11__)
|
|
|
|
|
#include "wx/x11/app.h"
|
1999-10-04 20:15:38 +00:00
|
|
|
|
#elif defined(__WXMAC__)
|
|
|
|
|
#include "wx/mac/app.h"
|
2003-03-22 05:55:53 +00:00
|
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
|
#include "wx/cocoa/app.h"
|
1999-10-04 20:15:38 +00:00
|
|
|
|
#elif defined(__WXPM__)
|
|
|
|
|
#include "wx/os2/app.h"
|
|
|
|
|
#endif
|
|
|
|
|
#else // !GUI
|
2003-08-01 23:00:16 +00:00
|
|
|
|
// allow using just wxApp (instead of wxAppConsole) in console programs
|
2003-07-31 10:11:28 +00:00
|
|
|
|
typedef wxAppConsole wxApp;
|
1999-10-04 20:15:38 +00:00
|
|
|
|
#endif // GUI/!GUI
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// ----------------------------------------------------------------------------
|
1999-07-21 16:10:18 +00:00
|
|
|
|
// the global data
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
2003-08-01 23:00:16 +00:00
|
|
|
|
// for compatibility, we define this macro to access the global application
|
|
|
|
|
// object of type wxApp
|
|
|
|
|
//
|
|
|
|
|
// note that instead of using of wxTheApp in application code you should
|
|
|
|
|
// consider using DECLARE_APP() after which you may call wxGetApp() which will
|
|
|
|
|
// return the object of the correct type (i.e. MyApp and not wxApp)
|
|
|
|
|
//
|
|
|
|
|
// the cast is safe as in GUI build we only use wxApp, not wxAppConsole, and in
|
|
|
|
|
// console mode it does nothing at all
|
2003-08-01 23:37:40 +00:00
|
|
|
|
#define wxTheApp ((wxApp *)wxApp::GetInstance())
|
1999-07-21 16:10:18 +00:00
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// global functions
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
1999-10-04 20:15:38 +00:00
|
|
|
|
// event loop related functions only work in GUI programs
|
|
|
|
|
// ------------------------------------------------------
|
|
|
|
|
|
1999-07-21 16:10:18 +00:00
|
|
|
|
// Force an exit from main loop
|
2003-07-02 01:59:24 +00:00
|
|
|
|
extern void WXDLLIMPEXP_BASE wxExit();
|
1999-07-21 16:10:18 +00:00
|
|
|
|
|
|
|
|
|
// Yield to other apps/messages
|
2003-07-02 01:59:24 +00:00
|
|
|
|
extern bool WXDLLIMPEXP_BASE wxYield();
|
1999-10-04 20:15:38 +00:00
|
|
|
|
|
1999-11-14 15:14:23 +00:00
|
|
|
|
// Yield to other apps/messages
|
2003-07-02 01:59:24 +00:00
|
|
|
|
extern void WXDLLIMPEXP_BASE wxWakeUpIdle();
|
1999-11-14 15:14:23 +00:00
|
|
|
|
|
1999-07-21 16:10:18 +00:00
|
|
|
|
// ----------------------------------------------------------------------------
|
1999-07-06 00:44:26 +00:00
|
|
|
|
// macros for dynamic creation of the application object
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
// Having a global instance of this class allows wxApp to be aware of the app
|
|
|
|
|
// creator function. wxApp can then call this function to create a new app
|
|
|
|
|
// object. Convoluted, but necessary.
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
|
class WXDLLIMPEXP_BASE wxAppInitializer
|
1998-05-20 14:01:55 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
1999-07-06 00:44:26 +00:00
|
|
|
|
wxAppInitializer(wxAppInitializerFunction fn)
|
|
|
|
|
{ wxApp::SetInitializerFunction(fn); }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
};
|
|
|
|
|
|
2004-06-22 11:07:23 +00:00
|
|
|
|
// the code below defines a IMPLEMENT_WXWIN_MAIN macro which you can use if
|
|
|
|
|
// your compiler really, really wants main() to be in your main program (e.g.
|
|
|
|
|
// hello.cpp). Now IMPLEMENT_APP should add this code if required.
|
1998-05-21 19:39:05 +00:00
|
|
|
|
|
2003-08-25 20:48:47 +00:00
|
|
|
|
#define IMPLEMENT_WXWIN_MAIN_CONSOLE \
|
|
|
|
|
int main(int argc, char **argv) { return wxEntry(argc, argv); }
|
|
|
|
|
|
2004-06-22 11:07:23 +00:00
|
|
|
|
// port-specific header could have defined it already in some special wau
|
|
|
|
|
#ifndef IMPLEMENT_WXWIN_MAIN
|
2004-06-23 14:49:42 +00:00
|
|
|
|
#define IMPLEMENT_WXWIN_MAIN IMPLEMENT_WXWIN_MAIN_CONSOLE
|
2004-06-22 11:07:23 +00:00
|
|
|
|
#endif // defined(IMPLEMENT_WXWIN_MAIN)
|
1998-05-21 19:39:05 +00:00
|
|
|
|
|
2001-07-10 15:14:57 +00:00
|
|
|
|
#ifdef __WXUNIVERSAL__
|
|
|
|
|
#include "wx/univ/theme.h"
|
|
|
|
|
|
|
|
|
|
#define IMPLEMENT_WX_THEME_SUPPORT \
|
|
|
|
|
WX_USE_THEME(win32); \
|
|
|
|
|
WX_USE_THEME(gtk);
|
|
|
|
|
#else
|
|
|
|
|
#define IMPLEMENT_WX_THEME_SUPPORT
|
|
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
2000-03-05 17:49:58 +00:00
|
|
|
|
// Use this macro if you want to define your own main() or WinMain() function
|
|
|
|
|
// and call wxEntry() from there.
|
2003-06-30 18:43:09 +00:00
|
|
|
|
#define IMPLEMENT_APP_NO_MAIN(appname) \
|
2003-07-31 10:11:28 +00:00
|
|
|
|
wxAppConsole *wxCreateApp() \
|
2003-06-30 18:43:09 +00:00
|
|
|
|
{ \
|
2003-08-04 13:17:17 +00:00
|
|
|
|
wxAppConsole::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, \
|
2003-08-05 17:41:14 +00:00
|
|
|
|
"your program"); \
|
2003-06-30 18:43:09 +00:00
|
|
|
|
return new appname; \
|
|
|
|
|
} \
|
|
|
|
|
wxAppInitializer \
|
|
|
|
|
wxTheAppInitializer((wxAppInitializerFunction) wxCreateApp); \
|
2000-03-05 17:49:58 +00:00
|
|
|
|
appname& wxGetApp() { return *(appname *)wxTheApp; }
|
|
|
|
|
|
2001-07-10 15:14:57 +00:00
|
|
|
|
// Same as IMPLEMENT_APP() normally but doesn't include themes support in
|
|
|
|
|
// wxUniversal builds
|
|
|
|
|
#define IMPLEMENT_APP_NO_THEMES(appname) \
|
|
|
|
|
IMPLEMENT_APP_NO_MAIN(appname) \
|
|
|
|
|
IMPLEMENT_WXWIN_MAIN
|
|
|
|
|
|
|
|
|
|
// Use this macro exactly once, the argument is the name of the wxApp-derived
|
|
|
|
|
// class which is the class of your application.
|
|
|
|
|
#define IMPLEMENT_APP(appname) \
|
|
|
|
|
IMPLEMENT_APP_NO_THEMES(appname) \
|
|
|
|
|
IMPLEMENT_WX_THEME_SUPPORT
|
|
|
|
|
|
2003-08-25 20:48:47 +00:00
|
|
|
|
// Same as IMPLEMENT_APP(), but for console applications.
|
|
|
|
|
#define IMPLEMENT_APP_CONSOLE(appname) \
|
|
|
|
|
IMPLEMENT_APP_NO_MAIN(appname) \
|
|
|
|
|
IMPLEMENT_WXWIN_MAIN_CONSOLE
|
|
|
|
|
|
2001-07-10 15:14:57 +00:00
|
|
|
|
// this macro can be used multiple times and just allows you to use wxGetApp()
|
|
|
|
|
// function
|
1999-07-06 00:44:26 +00:00
|
|
|
|
#define DECLARE_APP(appname) extern appname& wxGetApp();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
2003-06-30 18:43:09 +00:00
|
|
|
|
#endif // _WX_APP_H_BASE_
|
|
|
|
|
|