]>
Commit | Line | Data |
---|---|---|
83df96d6 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: app.h | |
3 | // Purpose: wxApp class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_APP_H_ | |
13 | #define _WX_APP_H_ | |
14 | ||
edf6a063 | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
83df96d6 JS |
16 | #pragma interface "app.h" |
17 | #endif | |
18 | ||
19 | // ---------------------------------------------------------------------------- | |
20 | // headers | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | #include "wx/gdicmn.h" | |
24 | #include "wx/event.h" | |
25 | ||
26 | // ---------------------------------------------------------------------------- | |
27 | // forward declarations | |
28 | // ---------------------------------------------------------------------------- | |
29 | ||
30 | class WXDLLEXPORT wxFrame; | |
31 | class WXDLLEXPORT wxWindow; | |
32 | class WXDLLEXPORT wxApp; | |
33 | class WXDLLEXPORT wxKeyEvent; | |
34 | class WXDLLEXPORT wxLog; | |
1b0fb34b | 35 | class WXDLLEXPORT wxEventLoop; |
9ce8d6a2 | 36 | class WXDLLEXPORT wxXVisualInfo; |
83df96d6 JS |
37 | |
38 | // ---------------------------------------------------------------------------- | |
256d631a | 39 | // the wxApp class for wxX11 - see wxAppBase for more details |
83df96d6 JS |
40 | // ---------------------------------------------------------------------------- |
41 | ||
42 | class WXDLLEXPORT wxApp : public wxAppBase | |
43 | { | |
44 | DECLARE_DYNAMIC_CLASS(wxApp) | |
45 | ||
46 | public: | |
47 | wxApp(); | |
dc4025af | 48 | ~wxApp(); |
83df96d6 JS |
49 | |
50 | // override base class (pure) virtuals | |
51 | // ----------------------------------- | |
52 | ||
53 | virtual int MainLoop(); | |
54 | virtual void ExitMainLoop(); | |
55 | virtual bool Initialized(); | |
56 | virtual bool Pending(); | |
57 | virtual void Dispatch(); | |
e2478fde VZ |
58 | |
59 | virtual void Exit(); | |
60 | ||
83df96d6 | 61 | virtual bool Yield(bool onlyIfNeeded = FALSE); |
e2478fde | 62 | virtual void WakeUpIdle(); |
83df96d6 JS |
63 | |
64 | virtual bool OnInitGui(); | |
65 | ||
83df96d6 JS |
66 | // implementation from now on |
67 | // -------------------------- | |
68 | ||
69 | void OnIdle(wxIdleEvent& event); | |
70 | ||
83df96d6 | 71 | // Processes an X event. |
086fd560 | 72 | virtual bool ProcessXEvent(WXEvent* event); |
83df96d6 | 73 | |
d715d419 | 74 | #ifdef __WXDEBUG__ |
5968a0dc | 75 | virtual void OnAssert(const wxChar *file, int line, const wxChar* cond, const wxChar *msg); |
d715d419 | 76 | #endif // __WXDEBUG__ |
7edcafa4 | 77 | |
83df96d6 JS |
78 | protected: |
79 | bool m_showOnInit; | |
80 | ||
81 | public: | |
82 | // Implementation | |
05e2b077 | 83 | virtual bool Initialize(int& argc, wxChar **argv); |
94826170 | 84 | virtual void CleanUp(); |
83df96d6 | 85 | |
7eaac9f5 | 86 | WXWindow GetTopLevelWidget() const { return m_topLevelWidget; } |
83df96d6 | 87 | WXColormap GetMainColormap(WXDisplay* display); |
83df96d6 JS |
88 | long GetMaxRequestSize() const { return m_maxRequestSize; } |
89 | ||
90 | // This handler is called when a property change event occurs | |
086fd560 | 91 | virtual bool HandlePropertyChange(WXEvent *event); |
83df96d6 | 92 | |
256d631a JS |
93 | // Values that can be passed on the command line. |
94 | // Returns -1, -1 if none specified. | |
95 | const wxSize& GetInitialSize() const { return m_initialSize; } | |
96 | bool GetShowIconic() const { return m_showIconic; } | |
a11672a4 | 97 | |
2b5f62a0 VZ |
98 | #if wxUSE_UNICODE |
99 | // Global context for Pango layout. Either use X11 | |
100 | // or use Xft rendering according to GDK_USE_XFT | |
101 | // environment variable | |
102 | PangoContext* GetPangoContext(); | |
103 | #endif | |
9ce8d6a2 MB |
104 | |
105 | wxXVisualInfo* GetVisualInfo(WXDisplay* display) | |
106 | { | |
107 | // this should be implemented correctly for wxBitmap to work | |
108 | // with multiple display | |
109 | return m_visualInfo; | |
110 | } | |
111 | ||
dc4025af RR |
112 | // We need this before creating the app |
113 | static WXDisplay* GetDisplay() { return ms_display; } | |
114 | static WXDisplay* ms_display; | |
115 | ||
83df96d6 | 116 | public: |
256d631a JS |
117 | static long sm_lastMessageTime; |
118 | bool m_showIconic; | |
119 | wxSize m_initialSize; | |
8601b2e1 | 120 | |
9ce8d6a2 MB |
121 | #if !wxUSE_NANOX |
122 | wxXVisualInfo* m_visualInfo; | |
8601b2e1 | 123 | #endif |
dc4025af | 124 | |
83df96d6 JS |
125 | protected: |
126 | bool m_keepGoing; | |
127 | ||
7eaac9f5 | 128 | WXWindow m_topLevelWidget; |
83df96d6 | 129 | WXColormap m_mainColormap; |
83df96d6 | 130 | long m_maxRequestSize; |
1b0fb34b | 131 | wxEventLoop* m_mainLoop; |
83df96d6 JS |
132 | |
133 | DECLARE_EVENT_TABLE() | |
134 | }; | |
135 | ||
6abf9dac | 136 | #endif // _WX_APP_H_ |
83df96d6 | 137 |