1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxApp class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "app.h"
20 #include "wx/object.h"
22 class WXDLLEXPORT wxFrame
;
23 class WXDLLEXPORT wxWindow
;
24 class WXDLLEXPORT wxApp
;
25 class WXDLLEXPORT wxKeyEvent
;
26 class WXDLLEXPORT wxLog
;
29 class WXDLLEXPORT wxConfig
;
32 #define wxPRINT_WINDOWS 1
33 #define wxPRINT_POSTSCRIPT 2
35 WXDLLEXPORT_DATA(extern wxApp
*) wxTheApp
;
37 void WXDLLEXPORT
wxCleanUp(void);
38 void WXDLLEXPORT
wxCommonCleanUp(void); // Call this from the platform's wxCleanUp()
39 void WXDLLEXPORT
wxCommonInit(void); // Call this from the platform's initialization
41 // Force an exit from main loop
42 void WXDLLEXPORT
wxExit(void);
44 // Yield to other apps/messages
45 bool WXDLLEXPORT
wxYield(void);
47 // Represents the application. Derive OnInit and declare
48 // a new App object to start application
49 class WXDLLEXPORT wxApp
: public wxEvtHandler
51 DECLARE_DYNAMIC_CLASS(wxApp
)
53 inline ~wxApp(void) {}
55 static void SetInitializerFunction(wxAppInitializerFunction fn
) { m_appInitFn
= fn
; }
56 static wxAppInitializerFunction
GetInitializerFunction(void) { return m_appInitFn
; }
58 virtual int MainLoop(void);
59 void ExitMainLoop(void);
60 bool Initialized(void);
61 virtual bool Pending(void) ;
62 virtual void Dispatch(void) ;
64 virtual void OnIdle(wxIdleEvent
& event
);
67 virtual bool OnInit(void) { return FALSE
; };
69 // No specific tasks to do here.
70 virtual bool OnInitGui(void) { return TRUE
; }
72 // Called to set off the main loop
73 virtual int OnRun(void) { return MainLoop(); };
74 virtual int OnExit(void) { return 0; };
75 inline void SetPrintMode(int mode
) { m_printMode
= mode
; }
76 inline int GetPrintMode(void) const { return m_printMode
; }
78 inline void SetExitOnFrameDelete(bool flag
) { m_exitOnFrameDelete
= flag
; }
79 inline bool GetExitOnFrameDelete(void) const { return m_exitOnFrameDelete
; }
82 inline void SetShowFrameOnInit(bool flag) { m_showOnInit = flag; }
83 inline bool GetShowFrameOnInit(void) const { return m_showOnInit; }
86 inline wxString
GetAppName(void) const {
89 else return m_className
;
92 inline void SetAppName(const wxString
& name
) { m_appName
= name
; };
93 inline wxString
GetClassName(void) const { return m_className
; }
94 inline void SetClassName(const wxString
& name
) { m_className
= name
; }
95 wxWindow
*GetTopWindow(void) const ;
96 inline void SetTopWindow(wxWindow
*win
) { m_topWindow
= win
; }
98 inline void SetWantDebugOutput(bool flag
) { m_wantDebugOutput
= flag
; }
99 inline bool GetWantDebugOutput(void) { return m_wantDebugOutput
; }
101 // Send idle event to all top-level windows.
102 // Returns TRUE if more idle time is requested.
103 bool SendIdleEvents(void);
105 // Send idle event to window and all subwindows
106 // Returns TRUE if more idle time is requested.
107 bool SendIdleEvents(wxWindow
* win
);
109 inline void SetAuto3D(bool flag
) { m_auto3D
= flag
; }
110 inline bool GetAuto3D(void) const { return m_auto3D
; }
112 // Creates a log object
113 virtual wxLog
* CreateLogTarget();
116 // override this function to create a global wxConfig object of different
117 // than default type (right now the default implementation returns NULL)
118 virtual wxConfig
* CreateConfig() { return NULL
; }
119 #endif //USE_WXCONFIG
122 // void (*work_proc)(wxApp*app); // work procedure;
127 bool m_wantDebugOutput
;
128 wxString m_className
;
130 wxWindow
* m_topWindow
;
131 bool m_exitOnFrameDelete
;
133 int m_printMode
; // wxPRINT_WINDOWS, wxPRINT_POSTSCRIPT
134 bool m_auto3D
; // Always use 3D controls, except
136 static wxAppInitializerFunction m_appInitFn
;
138 /* Windows-specific wxApp definitions */
143 static bool Initialize(WXHINSTANCE instance
);
144 static void CommonInit(void);
145 static bool RegisterWindowClasses(void);
146 static void CleanUp(void);
147 static void CommonCleanUp(void);
148 virtual bool DoMessage(void);
149 virtual bool ProcessMessage(WXMSG
* pMsg
);
150 void DeletePendingObjects(void);
151 bool ProcessIdle(void);
154 inline void SetPendingCleanup(bool flag) { m_pendingCleanup = flag; }
155 inline bool GetPendingCleanup(void) { return m_pendingCleanup; }
157 bool DoResourceCleanup(void);
158 // Set resource collection scheme on or off.
159 inline void SetResourceCollection(bool flag) { m_resourceCollection = flag; }
160 inline bool GetResourceCollection(void) { return m_resourceCollection; }
164 static long sm_lastMessageTime
;
169 // bool m_resourceCollection;
170 // bool m_pendingCleanup; // TRUE if we need to check the GDI object lists for cleanup
172 DECLARE_EVENT_TABLE()
175 #if !defined(_WINDLL) || (defined(_WINDLL) && defined(WXMAKINGDLL))
176 int WXDLLEXPORT
wxEntry(WXHINSTANCE hInstance
, WXHINSTANCE hPrevInstance
, char *lpszCmdLine
,
177 int nCmdShow
, bool enterLoop
= TRUE
);
179 int WXDLLEXPORT
wxEntry(WXHINSTANCE hInstance
);