1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
18 #include "wx/window.h"
21 //-----------------------------------------------------------------------------
23 //-----------------------------------------------------------------------------
27 class wxConfig
; // it's not used #if !USE_WXCONFIG, but fwd decl doesn't harm
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 extern wxApp
*wxTheApp
;
35 //-----------------------------------------------------------------------------
37 //-----------------------------------------------------------------------------
42 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
46 #define wxPRINT_WINDOWS 1
47 #define wxPRINT_POSTSCRIPT 2
49 //-----------------------------------------------------------------------------
51 //-----------------------------------------------------------------------------
53 class wxApp
: public wxEvtHandler
55 DECLARE_DYNAMIC_CLASS(wxApp
)
62 static void SetInitializerFunction(wxAppInitializerFunction fn
) { m_appInitFn
= fn
; }
63 static wxAppInitializerFunction
GetInitializerFunction(void) { return m_appInitFn
; }
65 virtual bool OnInit(void);
66 virtual bool OnInitGui(void);
67 virtual int OnRun(void);
68 virtual int OnExit(void);
70 wxWindow
*GetTopWindow(void);
71 void SetTopWindow( wxWindow
*win
);
72 virtual int MainLoop(void);
73 void ExitMainLoop(void);
74 bool Initialized(void);
75 virtual bool Pending(void);
76 virtual void Dispatch(void);
78 inline void SetWantDebugOutput(bool flag
) { m_wantDebugOutput
= flag
; }
79 inline bool GetWantDebugOutput(void) { return m_wantDebugOutput
; }
81 void OnIdle( wxIdleEvent
&event
);
82 bool SendIdleEvents(void);
83 bool SendIdleEvents( wxWindow
* win
);
85 inline wxString
GetAppName(void) const {
88 else return m_className
;
90 inline void SetAppName(const wxString
& name
) { m_appName
= name
; };
91 inline wxString
GetClassName(void) const { return m_className
; }
92 inline void SetClassName(const wxString
& name
) { m_className
= name
; }
94 inline void SetExitOnFrameDelete(bool flag
) { m_exitOnFrameDelete
= flag
; }
95 inline bool GetExitOnFrameDelete(void) const { return m_exitOnFrameDelete
; }
97 void SetPrintMode(int WXUNUSED(mode
) ) {};
98 int GetPrintMode(void) const { return wxPRINT_POSTSCRIPT
; };
100 // override this function to create default log target of arbitrary
101 // user-defined classv (default implementation creates a wxLogGui object)
102 virtual wxLog
*CreateLogTarget();
105 // override this function to create a global wxConfig object of different
106 // than default type (right now the default implementation returns NULL)
107 virtual wxConfig
*CreateConfig() { return NULL
; }
110 // GTK implementation
112 static void CommonInit(void);
113 static void CommonCleanUp(void);
115 bool ProcessIdle(void);
116 void DeletePendingObjects(void);
119 bool m_exitOnFrameDelete
;
120 bool m_wantDebugOutput
;
121 wxWindow
*m_topWindow
;
123 wxString m_className
;
130 static wxAppInitializerFunction m_appInitFn
;
132 DECLARE_EVENT_TABLE()
135 #endif // __GTKAPPH__