1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxApp class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "app.h"
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
23 #include "wx/gdicmn.h"
26 // ----------------------------------------------------------------------------
27 // forward declarations
28 // ----------------------------------------------------------------------------
30 class WXDLLEXPORT wxFrame
;
31 class WXDLLEXPORT wxWindow
;
32 class WXDLLEXPORT wxApp
;
33 class WXDLLEXPORT wxKeyEvent
;
34 class WXDLLEXPORT wxLog
;
35 class WXDLLEXPORT wxEventLoop
;
37 // ----------------------------------------------------------------------------
38 // the wxApp class for wxX11 - see wxAppBase for more details
39 // ----------------------------------------------------------------------------
41 class WXDLLEXPORT wxApp
: public wxAppBase
43 DECLARE_DYNAMIC_CLASS(wxApp
)
49 // override base class (pure) virtuals
50 // -----------------------------------
52 virtual int MainLoop();
53 virtual void ExitMainLoop();
54 virtual bool Initialized();
55 virtual bool Pending();
56 virtual void Dispatch();
57 virtual bool Yield(bool onlyIfNeeded
= FALSE
);
59 virtual bool OnInitGui();
61 virtual wxIcon
GetStdIcon(int which
) const;
63 // implementation from now on
64 // --------------------------
66 void OnIdle(wxIdleEvent
& event
);
68 // Send idle event to all top-level windows.
69 // Returns TRUE if more idle time is requested.
70 bool SendIdleEvents();
72 // Send idle event to window and all subwindows
73 // Returns TRUE if more idle time is requested.
74 bool SendIdleEvents(wxWindow
* win
);
76 // Processes an X event.
77 virtual bool ProcessXEvent(WXEvent
* event
);
79 virtual void OnAssert(const wxChar
*file
, int line
, const wxChar
*msg
);
86 static bool Initialize();
87 static void CleanUp();
89 void DeletePendingObjects();
92 WXWindow
GetTopLevelWidget() const { return m_topLevelWidget
; }
93 WXColormap
GetMainColormap(WXDisplay
* display
);
94 long GetMaxRequestSize() const { return m_maxRequestSize
; }
96 // This handler is called when a property change event occurs
97 virtual bool HandlePropertyChange(WXEvent
*event
);
99 // We need this before create the app
100 static WXDisplay
* GetDisplay() { return ms_display
; }
101 static WXDisplay
* ms_display
;
103 // Values that can be passed on the command line.
104 // Returns -1, -1 if none specified.
105 const wxSize
& GetInitialSize() const { return m_initialSize
; }
106 bool GetShowIconic() const { return m_showIconic
; }
109 static long sm_lastMessageTime
;
111 wxSize m_initialSize
;
115 WXWindow m_topLevelWidget
;
116 WXColormap m_mainColormap
;
117 long m_maxRequestSize
;
118 wxEventLoop
* m_mainLoop
;
120 DECLARE_EVENT_TABLE()
123 int WXDLLEXPORT
wxEntry( int argc
, char *argv
[] );