]>
Commit | Line | Data |
---|---|---|
32b8ec41 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: app.cpp | |
32b8ec41 | 3 | // Author: Vaclav Slavik |
7bdc1879 | 4 | // based on GTK and MSW implementations |
32b8ec41 | 5 | // Id: $Id$ |
c41c20a5 | 6 | // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) |
32b8ec41 VZ |
7 | // Licence: wxWindows licence |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "app.h" | |
12 | #endif | |
13 | ||
7bdc1879 VS |
14 | // For compilers that support precompilation, includes "wx.h". |
15 | #include "wx/wxprec.h" | |
16 | ||
17 | #ifdef __BORLANDC__ | |
18 | #pragma hdrstop | |
19 | #endif | |
20 | ||
2ec3892d | 21 | |
7bdc1879 VS |
22 | #ifndef WX_PRECOMP |
23 | #include "wx/settings.h" | |
24 | #include "wx/module.h" | |
25 | #include "wx/evtloop.h" | |
26 | #include "wx/frame.h" | |
27 | #include "wx/dialog.h" | |
2ec3892d | 28 | #include "wx/log.h" |
7bdc1879 VS |
29 | #include "wx/intl.h" |
30 | #endif | |
32b8ec41 | 31 | |
7bdc1879 | 32 | #include "wx/app.h" |
ef344ff8 | 33 | #include "wx/fontutil.h" |
df028524 VS |
34 | #include "wx/univ/theme.h" |
35 | #include "wx/univ/renderer.h" | |
58061670 | 36 | #include "wx/univ/colschem.h" |
05c9ccbe | 37 | #include "wx/sysopt.h" |
7bdc1879 | 38 | #include "wx/mgl/private.h" |
32b8ec41 VZ |
39 | |
40 | //----------------------------------------------------------------------------- | |
505f0a85 | 41 | // wxApp::Exit() |
32b8ec41 VZ |
42 | //----------------------------------------------------------------------------- |
43 | ||
e2478fde | 44 | void wxApp::Exit() |
32b8ec41 | 45 | { |
7bdc1879 | 46 | MGL_exit(); |
32b8ec41 VZ |
47 | exit(0); |
48 | } | |
49 | ||
50 | //----------------------------------------------------------------------------- | |
51 | // wxYield | |
52 | //----------------------------------------------------------------------------- | |
53 | ||
7bdc1879 VS |
54 | static bool gs_inYield = FALSE; |
55 | ||
e1218bd6 | 56 | bool wxApp::Yield(bool onlyIfNeeded) |
32b8ec41 | 57 | { |
e1218bd6 VS |
58 | if ( gs_inYield ) |
59 | { | |
60 | if ( !onlyIfNeeded ) | |
61 | { | |
62 | wxFAIL_MSG( wxT("wxYield called recursively" ) ); | |
63 | } | |
64 | ||
65 | return FALSE; | |
66 | } | |
67 | ||
7bdc1879 VS |
68 | #if wxUSE_THREADS |
69 | if ( !wxThread::IsMain() ) | |
70 | { | |
71 | // can't process events from other threads, MGL is thread-unsafe | |
72 | return TRUE; | |
73 | } | |
74 | #endif // wxUSE_THREADS | |
75 | ||
76 | gs_inYield = TRUE; | |
77 | ||
78 | wxLog::Suspend(); | |
79 | ||
ef344ff8 VS |
80 | if ( wxEventLoop::GetActive() ) |
81 | { | |
82 | while (wxEventLoop::GetActive()->Pending()) | |
83 | wxEventLoop::GetActive()->Dispatch(); | |
84 | } | |
7c9955d1 | 85 | |
7bdc1879 VS |
86 | /* it's necessary to call ProcessIdle() to update the frames sizes which |
87 | might have been changed (it also will update other things set from | |
88 | OnUpdateUI() which is a nice (and desired) side effect) */ | |
89 | while (wxTheApp->ProcessIdle()) { } | |
90 | ||
91 | wxLog::Resume(); | |
92 | ||
93 | gs_inYield = FALSE; | |
94 | ||
32b8ec41 VZ |
95 | return TRUE; |
96 | } | |
97 | ||
7bdc1879 | 98 | |
32b8ec41 VZ |
99 | //----------------------------------------------------------------------------- |
100 | // wxWakeUpIdle | |
101 | //----------------------------------------------------------------------------- | |
102 | ||
e2478fde | 103 | void wxApp::WakeUpIdle() |
32b8ec41 | 104 | { |
7bdc1879 VS |
105 | #if wxUSE_THREADS |
106 | if (!wxThread::IsMain()) | |
107 | wxMutexGuiEnter(); | |
108 | #endif | |
109 | ||
e2478fde VZ |
110 | while (wxTheApp->ProcessIdle()) |
111 | ; | |
7bdc1879 VS |
112 | |
113 | #if wxUSE_THREADS | |
114 | if (!wxThread::IsMain()) | |
115 | wxMutexGuiLeave(); | |
116 | #endif | |
32b8ec41 VZ |
117 | } |
118 | ||
58061670 VS |
119 | //----------------------------------------------------------------------------- |
120 | // Root window | |
121 | //----------------------------------------------------------------------------- | |
122 | ||
123 | class wxRootWindow : public wxWindow | |
124 | { | |
125 | public: | |
126 | wxRootWindow() : wxWindow(NULL, -1) | |
127 | { | |
128 | SetMGLwindow_t(MGL_wmGetRootWindow(g_winMng)); | |
129 | SetBackgroundColour(wxTHEME_COLOUR(DESKTOP)); | |
130 | } | |
131 | ~wxRootWindow() | |
132 | { | |
133 | // we don't want to delete MGL_WM's rootWnd | |
7c9955d1 | 134 | m_wnd = NULL; |
58061670 VS |
135 | } |
136 | ||
b7d5acd0 | 137 | virtual bool AcceptsFocus() const { return FALSE; } |
7c9955d1 | 138 | |
b7d5acd0 | 139 | DECLARE_DYNAMIC_CLASS(wxRootWindow) |
58061670 VS |
140 | }; |
141 | ||
b7d5acd0 VS |
142 | IMPLEMENT_DYNAMIC_CLASS(wxRootWindow, wxWindow) |
143 | ||
58061670 VS |
144 | static wxRootWindow *gs_rootWindow = NULL; |
145 | ||
146 | //----------------------------------------------------------------------------- | |
147 | // MGL initialization | |
148 | //----------------------------------------------------------------------------- | |
149 | ||
634f6a1f | 150 | static bool wxCreateMGL_WM(const wxDisplayModeInfo& displayMode) |
58061670 VS |
151 | { |
152 | int mode; | |
58061670 | 153 | int refresh = MGL_DEFAULT_REFRESH; |
7c9955d1 | 154 | |
58061670 | 155 | #if wxUSE_SYSTEM_OPTIONS |
05c9ccbe | 156 | if ( wxSystemOptions::HasOption(wxT("mgl.screen-refresh")) ) |
58061670 VS |
157 | refresh = wxSystemOptions::GetOptionInt(wxT("mgl.screen-refresh")); |
158 | #endif | |
7c9955d1 JS |
159 | |
160 | mode = MGL_findMode(displayMode.GetWidth(), | |
161 | displayMode.GetHeight(), | |
634f6a1f | 162 | displayMode.GetDepth()); |
58061670 VS |
163 | if ( mode == -1 ) |
164 | { | |
7c9955d1 | 165 | wxLogError(_("Mode %ix%i-%i not available."), |
d76048f5 VS |
166 | displayMode.GetWidth(), |
167 | displayMode.GetHeight(), | |
634f6a1f | 168 | displayMode.GetDepth()); |
1f43b5c9 | 169 | return FALSE; |
58061670 VS |
170 | } |
171 | g_displayDC = new MGLDisplayDC(mode, 1, refresh); | |
172 | if ( !g_displayDC->isValid() ) | |
173 | { | |
174 | delete g_displayDC; | |
175 | g_displayDC = NULL; | |
176 | return FALSE; | |
177 | } | |
7c9955d1 | 178 | |
58061670 VS |
179 | g_winMng = MGL_wmCreate(g_displayDC->getDC()); |
180 | if (!g_winMng) | |
181 | return FALSE; | |
1f43b5c9 | 182 | |
58061670 VS |
183 | return TRUE; |
184 | } | |
185 | ||
186 | static void wxDestroyMGL_WM() | |
187 | { | |
188 | if ( g_winMng ) | |
189 | { | |
190 | MGL_wmDestroy(g_winMng); | |
191 | g_winMng = NULL; | |
192 | } | |
193 | if ( g_displayDC ) | |
194 | { | |
195 | delete g_displayDC; | |
196 | g_displayDC = NULL; | |
197 | } | |
198 | } | |
199 | ||
32b8ec41 VZ |
200 | //----------------------------------------------------------------------------- |
201 | // wxApp | |
202 | //----------------------------------------------------------------------------- | |
203 | ||
204 | IMPLEMENT_DYNAMIC_CLASS(wxApp,wxEvtHandler) | |
205 | ||
206 | BEGIN_EVENT_TABLE(wxApp, wxEvtHandler) | |
955a9197 | 207 | EVT_IDLE(wxAppBase::OnIdle) |
32b8ec41 VZ |
208 | END_EVENT_TABLE() |
209 | ||
210 | ||
ef344ff8 | 211 | wxApp::wxApp() : m_mainLoop(NULL) |
7bdc1879 VS |
212 | { |
213 | } | |
214 | ||
215 | wxApp::~wxApp() | |
216 | { | |
217 | } | |
218 | ||
a3e76614 VS |
219 | wxDisplayModeInfo wxGetDefaultDisplayMode() |
220 | { | |
221 | wxString mode; | |
222 | unsigned w, h, bpp; | |
223 | ||
7c9955d1 | 224 | if ( !wxGetEnv(wxT("WXMODE"), &mode) || |
a3e76614 VS |
225 | (wxSscanf(mode.c_str(), _T("%ux%u-%u"), &w, &h, &bpp) != 3) ) |
226 | { | |
227 | w = 640, h = 480, bpp = 16; | |
228 | } | |
229 | ||
230 | return wxDisplayModeInfo(w, h, bpp); | |
231 | } | |
232 | ||
634f6a1f VS |
233 | bool wxApp::SetDisplayMode(const wxDisplayModeInfo& mode) |
234 | { | |
235 | if ( !mode.IsOk() ) | |
236 | { | |
237 | return FALSE; | |
238 | } | |
239 | if ( g_displayDC != NULL ) | |
240 | { | |
241 | // FIXME_MGL -- we currently don't allow to switch video mode | |
1f43b5c9 | 242 | // more than once. This can hopefully be changed... |
634f6a1f VS |
243 | wxFAIL_MSG(wxT("Can't change display mode after intialization!")); |
244 | return FALSE; | |
245 | } | |
1f43b5c9 VS |
246 | |
247 | if ( !wxCreateMGL_WM(mode) ) | |
248 | return FALSE; | |
249 | gs_rootWindow = new wxRootWindow; | |
250 | ||
634f6a1f | 251 | m_displayMode = mode; |
1f43b5c9 | 252 | |
634f6a1f VS |
253 | return TRUE; |
254 | } | |
255 | ||
7bdc1879 VS |
256 | bool wxApp::OnInitGui() |
257 | { | |
7bdc1879 VS |
258 | if ( !wxAppBase::OnInitGui() ) |
259 | return FALSE; | |
260 | ||
d76048f5 VS |
261 | #ifdef __WXDEBUG__ |
262 | // MGL redirects stdout and stderr to physical console, so lets redirect | |
263 | // it to file. Do it only when WXDEBUG environment variable is set | |
343e418c VS |
264 | wxString redirect; |
265 | if ( wxGetEnv(wxT("WXSTDERR"), &redirect) ) | |
266 | freopen(redirect.mb_str(), "wt", stderr); | |
2ec3892d VS |
267 | #endif |
268 | ||
d76048f5 VS |
269 | wxLog *oldLog = wxLog::SetActiveTarget(new wxLogGui); |
270 | if ( oldLog ) delete oldLog; | |
271 | ||
7bdc1879 VS |
272 | return TRUE; |
273 | } | |
274 | ||
7bdc1879 VS |
275 | int wxApp::MainLoop() |
276 | { | |
fd495ab3 | 277 | int rt; |
ef344ff8 VS |
278 | m_mainLoop = new wxEventLoop; |
279 | ||
280 | rt = m_mainLoop->Run(); | |
281 | ||
282 | delete m_mainLoop; | |
283 | m_mainLoop = NULL; | |
fd495ab3 | 284 | return rt; |
7bdc1879 VS |
285 | } |
286 | ||
287 | void wxApp::ExitMainLoop() | |
288 | { | |
ef344ff8 VS |
289 | if ( m_mainLoop ) |
290 | m_mainLoop->Exit(0); | |
7bdc1879 VS |
291 | } |
292 | ||
293 | bool wxApp::Initialized() | |
294 | { | |
bd73ba41 | 295 | return (wxTopLevelWindows.GetCount() != 0); |
7bdc1879 VS |
296 | } |
297 | ||
298 | bool wxApp::Pending() | |
299 | { | |
ef344ff8 | 300 | return wxEventLoop::GetActive()->Pending(); |
7bdc1879 VS |
301 | } |
302 | ||
303 | void wxApp::Dispatch() | |
32b8ec41 | 304 | { |
ef344ff8 | 305 | wxEventLoop::GetActive()->Dispatch(); |
32b8ec41 VZ |
306 | } |
307 | ||
05e2b077 | 308 | bool wxApp::Initialize(int& argc, wxChar **argv) |
7bdc1879 | 309 | { |
05e2b077 VZ |
310 | #ifdef __DJGPP__ |
311 | // VS: disable long filenames under DJGPP as the very first thing, | |
312 | // since SciTech MGL doesn't like them much... | |
313 | wxSetEnv(wxT("LFN"), wxT("N")); | |
314 | #endif | |
315 | ||
94826170 VZ |
316 | // must do it before calling wxAppBase::Initialize(), because fonts are |
317 | // needed by stock lists which are created there | |
318 | wxTheFontsManager = new wxFontsManager; | |
32b8ec41 | 319 | |
94826170 VZ |
320 | if ( !wxAppBase::Initialize(argc, argv) ) |
321 | return false; | |
7bdc1879 | 322 | |
bd73ba41 | 323 | if ( MGL_init(".", NULL) == 0 ) |
ddfca47f VS |
324 | { |
325 | wxLogError(_("Cannot initialize SciTech MGL!")); | |
bd73ba41 | 326 | |
94826170 VZ |
327 | wxAppBase::CleanUp(); |
328 | ||
329 | return false; | |
330 | } | |
7bdc1879 | 331 | |
7bdc1879 VS |
332 | #if wxUSE_INTL |
333 | wxFont::SetDefaultEncoding(wxLocale::GetSystemEncoding()); | |
334 | #endif | |
335 | ||
94826170 | 336 | return true; |
32b8ec41 VZ |
337 | } |
338 | ||
7bdc1879 VS |
339 | void wxApp::CleanUp() |
340 | { | |
d76048f5 VS |
341 | delete gs_rootWindow; |
342 | ||
94826170 | 343 | wxAppBase::CleanUp(); |
7bdc1879 | 344 | |
94826170 | 345 | // must do this after calling base class CleanUp() |
df16a53e VS |
346 | delete wxTheFontsManager; |
347 | wxTheFontsManager = (wxFontsManager*) NULL; | |
348 | ||
7bdc1879 VS |
349 | wxDestroyMGL_WM(); |
350 | MGL_exit(); | |
351 | } | |
352 |