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 // ----------------------------------------------------------------------------
25 // ----------------------------------------------------------------------------
26 // forward declarations
27 // ----------------------------------------------------------------------------
29 class WXDLLEXPORT wxFrame
;
30 class WXDLLEXPORT wxWindow
;
31 class WXDLLEXPORT wxApp
;
32 class WXDLLEXPORT wxKeyEvent
;
33 class WXDLLEXPORT wxLog
;
34 class WXDLLEXPORT wxEventLoop
;
35 class WXDLLEXPORT wxXVisualInfo
;
36 class wxPerDisplayDataMap
;
38 // ----------------------------------------------------------------------------
39 // the wxApp class for Motif - see wxAppBase for more details
40 // ----------------------------------------------------------------------------
42 class WXDLLEXPORT wxApp
: public wxAppBase
44 DECLARE_DYNAMIC_CLASS(wxApp
)
50 // override base class (pure) virtuals
51 // -----------------------------------
53 virtual int MainLoop();
54 virtual void ExitMainLoop();
55 virtual bool Initialized();
56 virtual bool Pending();
57 virtual void Dispatch();
61 virtual bool Yield(bool onlyIfNeeded
= FALSE
);
62 virtual bool ProcessIdle();
63 virtual void WakeUpIdle(); // implemented in motif/evtloop.cpp
65 virtual bool OnInitGui();
67 // implementation from now on
68 // --------------------------
70 void OnIdle(wxIdleEvent
& event
);
72 // Send idle event to all top-level windows.
73 // Returns TRUE if more idle time is requested.
74 bool SendIdleEvents();
76 // Send idle event to window and all subwindows
77 // Returns TRUE if more idle time is requested.
78 bool SendIdleEvents(wxWindow
* win
);
85 virtual bool Initialize(int& argc
, wxChar
**argv
);
86 virtual void CleanUp();
89 WXAppContext
GetAppContext() const { return m_appContext
; }
90 WXWidget
GetTopLevelWidget();
91 WXColormap
GetMainColormap(WXDisplay
* display
);
92 WXDisplay
* GetInitialDisplay() const { return m_initialDisplay
; }
94 void SetTopLevelWidget(WXDisplay
* display
, WXWidget widget
);
96 // This handler is called when a property change event occurs
97 virtual void HandlePropertyChange(WXEvent
*event
);
99 wxXVisualInfo
* GetVisualInfo(WXDisplay
* display
);
102 wxEventLoop
* m_eventLoop
;
105 WXAppContext m_appContext
;
106 WXColormap m_mainColormap
;
107 WXDisplay
* m_initialDisplay
;
108 wxPerDisplayDataMap
* m_perDisplayData
;
110 DECLARE_EVENT_TABLE()