1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxApp class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "app.h"
20 #include "wx/object.h"
21 #include "wx/gdicmn.h"
24 class WXDLLEXPORT wxFrame
;
25 class WXDLLEXPORT wxWindow
;
26 class WXDLLEXPORT wxApp
;
27 class WXDLLEXPORT wxKeyEvent
;
28 class WXDLLEXPORT wxLog
;
30 #define wxPRINT_WINDOWS 1
31 #define wxPRINT_POSTSCRIPT 2
33 WXDLLEXPORT_DATA(extern wxApp
*) wxTheApp
;
35 // Force an exit from main loop
36 void WXDLLEXPORT
wxExit();
38 // Yield to other apps/messages
39 bool WXDLLEXPORT
wxYield();
41 // Represents the application. Derive OnInit and declare
42 // a new App object to start application
43 class WXDLLEXPORT wxApp
: public wxEvtHandler
45 DECLARE_DYNAMIC_CLASS(wxApp
)
49 static void SetInitializerFunction(wxAppInitializerFunction fn
) { m_appInitFn
= fn
; }
50 static wxAppInitializerFunction
GetInitializerFunction() { return m_appInitFn
; }
52 virtual int MainLoop();
55 virtual bool Pending() ;
56 virtual void Dispatch() ;
58 void OnIdle(wxIdleEvent
& event
);
61 virtual bool OnInit() { return FALSE
; };
63 // No specific tasks to do here.
64 virtual bool OnInitGui() { return TRUE
; }
66 // Called to set off the main loop
67 virtual int OnRun() { return MainLoop(); };
68 virtual int OnExit() { return 0; }
70 inline void SetPrintMode(int mode
) { m_printMode
= mode
; }
71 inline int GetPrintMode() const { return m_printMode
; }
73 inline void SetExitOnFrameDelete(bool flag
) { m_exitOnFrameDelete
= flag
; }
74 inline bool GetExitOnFrameDelete() const { return m_exitOnFrameDelete
; }
76 inline wxString
GetAppName() const {
79 else return m_className
;
82 inline void SetAppName(const wxString
& name
) { m_appName
= name
; };
83 inline wxString
GetClassName() const { return m_className
; }
84 inline void SetClassName(const wxString
& name
) { m_className
= name
; }
86 void SetVendorName(const wxString
& vendorName
) { m_vendorName
= vendorName
; }
87 const wxString
& GetVendorName() const { return m_vendorName
; }
89 wxWindow
*GetTopWindow() const ;
90 inline void SetTopWindow(wxWindow
*win
) { m_topWindow
= win
; }
92 inline void SetWantDebugOutput(bool flag
) { m_wantDebugOutput
= flag
; }
93 inline bool GetWantDebugOutput() { return m_wantDebugOutput
; }
95 // Send idle event to all top-level windows.
96 // Returns TRUE if more idle time is requested.
97 bool SendIdleEvents();
99 // Send idle event to window and all subwindows
100 // Returns TRUE if more idle time is requested.
101 bool SendIdleEvents(wxWindow
* win
);
103 // Windows only, but for compatibility...
104 inline void SetAuto3D(bool flag
) { m_auto3D
= flag
; }
105 inline bool GetAuto3D() const { return m_auto3D
; }
107 // Creates a log object
108 virtual wxLog
* CreateLogTarget();
111 // Will always be set to the appropriate, main-style values.
116 bool m_wantDebugOutput
;
117 wxString m_className
;
120 wxWindow
* m_topWindow
;
121 bool m_exitOnFrameDelete
;
123 int m_printMode
; // wxPRINT_WINDOWS, wxPRINT_POSTSCRIPT
124 bool m_auto3D
; // Always use 3D controls, except
126 static wxAppInitializerFunction m_appInitFn
;
131 static bool Initialize();
132 static void CleanUp();
134 void DeletePendingObjects();
138 static long sm_lastMessageTime
;
144 DECLARE_EVENT_TABLE()
147 // TODO: add platform-specific arguments
148 int WXDLLEXPORT
wxEntry( int argc
, char *argv
[] );