]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: app.cpp | |
3 | // Purpose: wxApp | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
a5e0e655 | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
e5c0b16a VZ |
12 | // =========================================================================== |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
e5c0b16a | 21 | #pragma implementation "app.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
2bda0e17 KB |
25 | #include "wx/wxprec.h" |
26 | ||
27 | #if defined(__BORLANDC__) | |
e5c0b16a | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
31 | #ifndef WX_PRECOMP | |
e5c0b16a VZ |
32 | #include "wx/frame.h" |
33 | #include "wx/app.h" | |
34 | #include "wx/utils.h" | |
35 | #include "wx/gdicmn.h" | |
36 | #include "wx/pen.h" | |
37 | #include "wx/brush.h" | |
38 | #include "wx/cursor.h" | |
39 | #include "wx/icon.h" | |
40 | #include "wx/palette.h" | |
41 | #include "wx/dc.h" | |
42 | #include "wx/dialog.h" | |
43 | #include "wx/msgdlg.h" | |
44 | #include "wx/intl.h" | |
45 | #include "wx/dynarray.h" | |
72cdf4c9 VZ |
46 | #include "wx/wxchar.h" |
47 | #include "wx/icon.h" | |
2bda0e17 KB |
48 | #endif |
49 | ||
2bda0e17 KB |
50 | #include "wx/log.h" |
51 | #include "wx/module.h" | |
4bf78aae | 52 | |
4286a5b5 RR |
53 | #include "wx/msw/private.h" |
54 | ||
4bf78aae | 55 | #if wxUSE_THREADS |
bee503b0 VZ |
56 | #include "wx/thread.h" |
57 | ||
58 | // define the array of MSG strutures | |
59 | WX_DECLARE_OBJARRAY(MSG, wxMsgArray); | |
60 | ||
61 | #include "wx/arrimpl.cpp" | |
62 | ||
63 | WX_DEFINE_OBJARRAY(wxMsgArray); | |
64 | #endif // wxUSE_THREADS | |
2bda0e17 | 65 | |
47d67540 | 66 | #if wxUSE_WX_RESOURCES |
e5c0b16a | 67 | #include "wx/resource.h" |
2bda0e17 KB |
68 | #endif |
69 | ||
8614c467 VZ |
70 | #if wxUSE_TOOLTIPS |
71 | #include "wx/tooltip.h" | |
72 | #endif // wxUSE_TOOLTIPS | |
73 | ||
c42404a5 VZ |
74 | // OLE is used for drag-and-drop, clipboard, OLE Automation..., but some |
75 | // compilers don't support it (missing headers, libs, ...) | |
76 | #if defined(__GNUWIN32_OLD__) || defined(__SC__) || defined(__SALFORDC__) | |
e5c0b16a VZ |
77 | #undef wxUSE_OLE |
78 | ||
79 | #define wxUSE_OLE 0 | |
80 | #endif // broken compilers | |
81 | ||
82 | #if wxUSE_OLE | |
6e0d9d43 | 83 | #include <ole2.h> |
d05237ea | 84 | #endif |
ce3ed50d | 85 | |
2bda0e17 | 86 | #include <string.h> |
a5e0e655 | 87 | #include <ctype.h> |
2bda0e17 | 88 | |
ae090fdb | 89 | #if defined(__WIN95__) && !((defined(__GNUWIN32_OLD__) || defined(__TWIN32__)) && !defined(__CYGWIN10__)) |
e5c0b16a | 90 | #include <commctrl.h> |
2bda0e17 KB |
91 | #endif |
92 | ||
6e0d9d43 | 93 | #include "wx/msw/msvcrt.h" |
370382c7 | 94 | |
bdc72a22 VZ |
95 | // ---------------------------------------------------------------------------- |
96 | // conditional compilation | |
97 | // ---------------------------------------------------------------------------- | |
98 | ||
99 | // The macro _WIN32_IE is defined by commctrl.h (unless it had already been | |
100 | // defined before) and shows us what common control features are available | |
101 | // during the compile time (it doesn't mean that they will be available during | |
102 | // the run-time, use GetComCtl32Version() to test for them!). The possible | |
103 | // values are: | |
104 | // | |
105 | // 0x0200 for comctl32.dll 4.00 shipped with Win95/NT 4.0 | |
106 | // 0x0300 4.70 IE 3.x | |
107 | // 0x0400 4.71 IE 4.0 | |
108 | // 0x0401 4.72 IE 4.01 and Win98 | |
109 | // 0x0500 5.00 IE 5.x and NT 5.0 (Win2000) | |
110 | ||
111 | #ifndef _WIN32_IE | |
112 | // minimal set of features by default | |
113 | #define _WIN32_IE 0x0200 | |
114 | #endif | |
115 | ||
036bc7d9 VZ |
116 | #if _WIN32_IE >= 0x0300 |
117 | #include <shlwapi.h> | |
118 | #endif | |
119 | ||
e5c0b16a VZ |
120 | // --------------------------------------------------------------------------- |
121 | // global variables | |
122 | // --------------------------------------------------------------------------- | |
123 | ||
837e5743 | 124 | extern wxChar *wxBuffer; |
2bda0e17 | 125 | extern wxList *wxWinHandleList; |
cde9f08e | 126 | extern wxList WXDLLEXPORT wxPendingDelete; |
2bda0e17 | 127 | extern void wxSetKeyboardHook(bool doIt); |
2bda0e17 | 128 | |
42e69d6b | 129 | MSG s_currentMsg; |
2bda0e17 KB |
130 | wxApp *wxTheApp = NULL; |
131 | ||
193fe989 VZ |
132 | // NB: all "NoRedraw" classes must have the same names as the "normal" classes |
133 | // with NR suffix - wxWindow::MSWCreate() supposes this | |
2ffa221c VZ |
134 | const wxChar *wxFrameClassName = wxT("wxFrameClass"); |
135 | const wxChar *wxFrameClassNameNoRedraw = wxT("wxFrameClassNR"); | |
136 | const wxChar *wxMDIFrameClassName = wxT("wxMDIFrameClass"); | |
137 | const wxChar *wxMDIFrameClassNameNoRedraw = wxT("wxMDIFrameClassNR"); | |
138 | const wxChar *wxMDIChildFrameClassName = wxT("wxMDIChildFrameClass"); | |
139 | const wxChar *wxMDIChildFrameClassNameNoRedraw = wxT("wxMDIChildFrameClassNR"); | |
140 | const wxChar *wxPanelClassName = wxT("wxPanelClass"); | |
d3f5d09d | 141 | const wxChar *wxPanelClassNameNR = wxT("wxPanelClassNR"); |
2ffa221c | 142 | const wxChar *wxCanvasClassName = wxT("wxCanvasClass"); |
d3f5d09d | 143 | const wxChar *wxCanvasClassNameNR = wxT("wxCanvasClassNR"); |
2bda0e17 | 144 | |
57c208c5 JS |
145 | HICON wxSTD_FRAME_ICON = (HICON) NULL; |
146 | HICON wxSTD_MDICHILDFRAME_ICON = (HICON) NULL; | |
147 | HICON wxSTD_MDIPARENTFRAME_ICON = (HICON) NULL; | |
2bda0e17 | 148 | |
57c208c5 JS |
149 | HICON wxDEFAULT_FRAME_ICON = (HICON) NULL; |
150 | HICON wxDEFAULT_MDICHILDFRAME_ICON = (HICON) NULL; | |
151 | HICON wxDEFAULT_MDIPARENTFRAME_ICON = (HICON) NULL; | |
2bda0e17 | 152 | |
57c208c5 | 153 | HBRUSH wxDisableButtonBrush = (HBRUSH) 0; |
2bda0e17 | 154 | |
3135f4a7 | 155 | LRESULT WXDLLEXPORT APIENTRY wxWndProc(HWND, UINT, WPARAM, LPARAM); |
2bda0e17 | 156 | |
bd3277fe VZ |
157 | // FIXME wxUSE_ON_FATAL_EXCEPTION is only supported for VC++ now because it |
158 | // needs compiler support for Win32 SEH. Others (especially Borland) | |
159 | // probably have it too, but I'm not sure about how it works | |
f6bcfd97 BP |
160 | // JACS: get 'Cannot use __try in functions that require unwinding |
161 | // in Unicode mode, so disabling. | |
162 | #if !defined(__VISUALC__) || defined(__WIN16__) || defined(UNICODE) | |
bd3277fe VZ |
163 | #undef wxUSE_ON_FATAL_EXCEPTION |
164 | #define wxUSE_ON_FATAL_EXCEPTION 0 | |
165 | #endif // VC++ | |
166 | ||
3b415ba4 VZ |
167 | #if wxUSE_ON_FATAL_EXCEPTION |
168 | static bool gs_handleExceptions = FALSE; | |
169 | #endif | |
170 | ||
e5c0b16a VZ |
171 | // =========================================================================== |
172 | // implementation | |
173 | // =========================================================================== | |
589f0e3e | 174 | |
e5c0b16a VZ |
175 | // --------------------------------------------------------------------------- |
176 | // wxApp | |
177 | // --------------------------------------------------------------------------- | |
178 | ||
f6bcfd97 | 179 | IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler) |
e5c0b16a | 180 | |
f6bcfd97 BP |
181 | BEGIN_EVENT_TABLE(wxApp, wxEvtHandler) |
182 | EVT_IDLE(wxApp::OnIdle) | |
183 | EVT_END_SESSION(wxApp::OnEndSession) | |
184 | EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession) | |
185 | END_EVENT_TABLE() | |
e5c0b16a | 186 | |
e5c0b16a | 187 | //// Initialize |
589f0e3e | 188 | bool wxApp::Initialize() |
2bda0e17 | 189 | { |
f6bcfd97 BP |
190 | // the first thing to do is to check if we're trying to run an Unicode |
191 | // program under Win9x - if so, abort right now as it has no chance to | |
192 | // work | |
193 | #if wxUSE_UNICODE | |
194 | if ( wxGetOsVersion() != wxWINDOWS_NT ) | |
195 | { | |
196 | // note that we can use MessageBoxW() as it's implemented even under | |
197 | // Win9x - OTOH, we can't use wxGetTranslation() because the file APIs | |
198 | // used by wxLocale are not | |
199 | ::MessageBox | |
200 | ( | |
201 | NULL, | |
202 | _T("This program uses Unicode and requires Windows NT/2000.\nProgram aborted."), | |
203 | _T("wxWindows Fatal Error"), | |
204 | MB_ICONERROR | MB_OK | |
205 | ); | |
206 | ||
207 | return FALSE; | |
208 | } | |
209 | #endif // wxUSE_UNICODE | |
210 | ||
c030b70f JS |
211 | // Some people may wish to use this, but |
212 | // probably it shouldn't be here by default. | |
213 | #ifdef __WXDEBUG__ | |
e5c0b16a | 214 | // wxRedirectIOToConsole(); |
c030b70f JS |
215 | #endif |
216 | ||
837e5743 | 217 | wxBuffer = new wxChar[1500]; // FIXME |
589f0e3e | 218 | |
aa0b7e1e | 219 | wxClassInfo::InitializeClasses(); |
589f0e3e | 220 | |
4d3a259a | 221 | #if wxUSE_THREADS |
8e193f38 | 222 | wxPendingEventsLocker = new wxCriticalSection; |
4d3a259a GL |
223 | #endif |
224 | ||
aa0b7e1e JS |
225 | wxTheColourDatabase = new wxColourDatabase(wxKEY_STRING); |
226 | wxTheColourDatabase->Initialize(); | |
589f0e3e | 227 | |
aa0b7e1e JS |
228 | wxInitializeStockLists(); |
229 | wxInitializeStockObjects(); | |
589f0e3e | 230 | |
aa0b7e1e | 231 | #if wxUSE_WX_RESOURCES |
a5e0e655 | 232 | wxInitializeResourceSystem(); |
aa0b7e1e | 233 | #endif |
2bda0e17 | 234 | |
aa0b7e1e | 235 | wxBitmap::InitStandardHandlers(); |
2bda0e17 | 236 | |
aa0b7e1e | 237 | #if defined(__WIN95__) |
a5e0e655 | 238 | InitCommonControls(); |
57c208c5 | 239 | |
e5c0b16a | 240 | #endif // __WIN95__ |
2bda0e17 | 241 | |
1e6feb95 | 242 | #if wxUSE_OLE || wxUSE_DRAG_AND_DROP || wxUSE_DATAOBJ |
c49245f8 VZ |
243 | |
244 | #ifdef __WIN16__ | |
e5c0b16a | 245 | // for OLE, enlarge message queue to be as large as possible |
aa0b7e1e | 246 | int iMsg = 96; |
c49245f8 VZ |
247 | while (!SetMessageQueue(iMsg) && (iMsg -= 8)) |
248 | ; | |
249 | #endif // Win16 | |
a5e0e655 VZ |
250 | // we need to initialize OLE library |
251 | if ( FAILED(::OleInitialize(NULL)) ) | |
e5c0b16a | 252 | wxLogError(_("Cannot initialize OLE")); |
1e6feb95 | 253 | |
c49245f8 | 254 | #endif // wxUSE_OLE |
2bda0e17 | 255 | |
1f112209 | 256 | #if wxUSE_CTL3D |
a5e0e655 | 257 | if (!Ctl3dRegister(wxhInstance)) |
223d09f6 | 258 | wxLogError(wxT("Cannot register CTL3D")); |
2bda0e17 | 259 | |
a5e0e655 | 260 | Ctl3dAutoSubclass(wxhInstance); |
1e6feb95 | 261 | #endif // wxUSE_CTL3D |
2bda0e17 | 262 | |
87a1e308 VZ |
263 | // VZ: these icons are not in wx.rc anyhow (but should they?)! |
264 | #if 0 | |
223d09f6 KB |
265 | wxSTD_FRAME_ICON = LoadIcon(wxhInstance, wxT("wxSTD_FRAME")); |
266 | wxSTD_MDIPARENTFRAME_ICON = LoadIcon(wxhInstance, wxT("wxSTD_MDIPARENTFRAME")); | |
267 | wxSTD_MDICHILDFRAME_ICON = LoadIcon(wxhInstance, wxT("wxSTD_MDICHILDFRAME")); | |
2bda0e17 | 268 | |
223d09f6 KB |
269 | wxDEFAULT_FRAME_ICON = LoadIcon(wxhInstance, wxT("wxDEFAULT_FRAME")); |
270 | wxDEFAULT_MDIPARENTFRAME_ICON = LoadIcon(wxhInstance, wxT("wxDEFAULT_MDIPARENTFRAME")); | |
271 | wxDEFAULT_MDICHILDFRAME_ICON = LoadIcon(wxhInstance, wxT("wxDEFAULT_MDICHILDFRAME")); | |
87a1e308 | 272 | #endif // 0 |
2bda0e17 | 273 | |
aa0b7e1e | 274 | RegisterWindowClasses(); |
2bda0e17 | 275 | |
aa0b7e1e | 276 | // Create the brush for disabling bitmap buttons |
2bda0e17 | 277 | |
42e69d6b | 278 | LOGBRUSH lb; |
aa0b7e1e | 279 | lb.lbStyle = BS_PATTERN; |
223d09f6 | 280 | lb.lbHatch = (int)LoadBitmap( wxhInstance, wxT("wxDISABLE_BUTTON_BITMAP") ); |
3a5ffa81 VZ |
281 | if ( lb.lbHatch ) |
282 | { | |
283 | wxDisableButtonBrush = ::CreateBrushIndirect( & lb ); | |
284 | ::DeleteObject( (HGDIOBJ)lb.lbHatch ); | |
285 | } | |
286 | //else: wxWindows resources are probably not linked in | |
2bda0e17 | 287 | |
aa0b7e1e | 288 | #if wxUSE_PENWINDOWS |
a5e0e655 | 289 | wxRegisterPenWin(); |
aa0b7e1e | 290 | #endif |
2bda0e17 | 291 | |
aa0b7e1e | 292 | wxWinHandleList = new wxList(wxKEY_INTEGER); |
2bda0e17 | 293 | |
6e0d9d43 | 294 | // This is to foil optimizations in Visual C++ that throw out dummy.obj. |
8cbd2bde | 295 | // PLEASE DO NOT ALTER THIS. |
7fee680b | 296 | #if defined(__VISUALC__) && defined(__WIN16__) && !defined(WXMAKINGDLL) |
a5e0e655 VZ |
297 | extern char wxDummyChar; |
298 | if (wxDummyChar) wxDummyChar++; | |
aa0b7e1e | 299 | #endif |
a5e0e655 | 300 | |
aa0b7e1e | 301 | wxSetKeyboardHook(TRUE); |
2bda0e17 | 302 | |
aa0b7e1e JS |
303 | wxModule::RegisterModules(); |
304 | if (!wxModule::InitializeModules()) | |
305 | return FALSE; | |
306 | return TRUE; | |
2bda0e17 KB |
307 | } |
308 | ||
42e69d6b VZ |
309 | // --------------------------------------------------------------------------- |
310 | // RegisterWindowClasses | |
311 | // --------------------------------------------------------------------------- | |
589f0e3e | 312 | |
b782f2e0 VZ |
313 | // TODO we should only register classes really used by the app. For this it |
314 | // would be enough to just delay the class registration until an attempt | |
315 | // to create a window of this class is made. | |
bb6290e3 | 316 | bool wxApp::RegisterWindowClasses() |
2bda0e17 | 317 | { |
42e69d6b | 318 | WNDCLASS wndclass; |
e5c0b16a | 319 | |
193fe989 VZ |
320 | // for each class we register one with CS_(V|H)REDRAW style and one |
321 | // without for windows created with wxNO_FULL_REDRAW_ON_REPAINT flag | |
322 | static const long styleNormal = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS; | |
323 | static const long styleNoRedraw = CS_DBLCLKS; | |
324 | ||
42e69d6b | 325 | // the fields which are common to all classes |
e5c0b16a VZ |
326 | wndclass.lpfnWndProc = (WNDPROC)wxWndProc; |
327 | wndclass.cbClsExtra = 0; | |
193fe989 | 328 | wndclass.cbWndExtra = sizeof( DWORD ); // VZ: what is this DWORD used for? |
e5c0b16a | 329 | wndclass.hInstance = wxhInstance; |
42e69d6b VZ |
330 | wndclass.hIcon = (HICON) NULL; |
331 | wndclass.hCursor = ::LoadCursor((HINSTANCE)NULL, IDC_ARROW); | |
e5c0b16a | 332 | wndclass.lpszMenuName = NULL; |
42e69d6b VZ |
333 | |
334 | // Register the frame window class. | |
335 | wndclass.hbrBackground = (HBRUSH)(COLOR_APPWORKSPACE + 1); | |
e5c0b16a | 336 | wndclass.lpszClassName = wxFrameClassName; |
b782f2e0 | 337 | wndclass.style = styleNormal; |
e5c0b16a | 338 | |
42e69d6b | 339 | if ( !RegisterClass(&wndclass) ) |
e5c0b16a | 340 | { |
f6bcfd97 | 341 | wxLogLastError(wxT("RegisterClass(frame)")); |
42e69d6b VZ |
342 | |
343 | return FALSE; | |
e5c0b16a VZ |
344 | } |
345 | ||
193fe989 VZ |
346 | // "no redraw" frame |
347 | wndclass.lpszClassName = wxFrameClassNameNoRedraw; | |
348 | wndclass.style = styleNoRedraw; | |
349 | ||
350 | if ( !RegisterClass(&wndclass) ) | |
351 | { | |
f6bcfd97 | 352 | wxLogLastError(wxT("RegisterClass(no redraw frame)")); |
193fe989 VZ |
353 | |
354 | return FALSE; | |
355 | } | |
356 | ||
e5c0b16a | 357 | // Register the MDI frame window class. |
42e69d6b | 358 | wndclass.hbrBackground = (HBRUSH)NULL; // paint MDI frame ourselves |
b782f2e0 VZ |
359 | wndclass.lpszClassName = wxMDIFrameClassName; |
360 | wndclass.style = styleNormal; | |
42e69d6b VZ |
361 | |
362 | if ( !RegisterClass(&wndclass) ) | |
e5c0b16a | 363 | { |
f6bcfd97 | 364 | wxLogLastError(wxT("RegisterClass(MDI parent)")); |
42e69d6b VZ |
365 | |
366 | return FALSE; | |
e5c0b16a VZ |
367 | } |
368 | ||
193fe989 | 369 | // "no redraw" MDI frame |
b782f2e0 | 370 | wndclass.lpszClassName = wxMDIFrameClassNameNoRedraw; |
193fe989 VZ |
371 | wndclass.style = styleNoRedraw; |
372 | ||
373 | if ( !RegisterClass(&wndclass) ) | |
374 | { | |
f6bcfd97 | 375 | wxLogLastError(wxT("RegisterClass(no redraw MDI parent frame)")); |
193fe989 VZ |
376 | |
377 | return FALSE; | |
378 | } | |
379 | ||
e5c0b16a | 380 | // Register the MDI child frame window class. |
42e69d6b VZ |
381 | wndclass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); |
382 | wndclass.lpszClassName = wxMDIChildFrameClassName; | |
b782f2e0 | 383 | wndclass.style = styleNormal; |
42e69d6b VZ |
384 | |
385 | if ( !RegisterClass(&wndclass) ) | |
e5c0b16a | 386 | { |
f6bcfd97 | 387 | wxLogLastError(wxT("RegisterClass(MDI child)")); |
42e69d6b VZ |
388 | |
389 | return FALSE; | |
e5c0b16a VZ |
390 | } |
391 | ||
193fe989 VZ |
392 | // "no redraw" MDI child frame |
393 | wndclass.lpszClassName = wxMDIChildFrameClassNameNoRedraw; | |
394 | wndclass.style = styleNoRedraw; | |
395 | ||
396 | if ( !RegisterClass(&wndclass) ) | |
397 | { | |
f6bcfd97 | 398 | wxLogLastError(wxT("RegisterClass(no redraw MDI child)")); |
193fe989 VZ |
399 | |
400 | return FALSE; | |
401 | } | |
402 | ||
e5c0b16a | 403 | // Register the panel window class. |
42e69d6b VZ |
404 | wndclass.hbrBackground = (HBRUSH) GetStockObject( LTGRAY_BRUSH ); |
405 | wndclass.lpszClassName = wxPanelClassName; | |
b782f2e0 | 406 | wndclass.style = styleNormal; |
42e69d6b VZ |
407 | |
408 | if ( !RegisterClass(&wndclass) ) | |
e5c0b16a | 409 | { |
f6bcfd97 | 410 | wxLogLastError(wxT("RegisterClass(panel)")); |
42e69d6b VZ |
411 | |
412 | return FALSE; | |
e5c0b16a VZ |
413 | } |
414 | ||
d3f5d09d UM |
415 | // Register the no redraw panel window class. |
416 | wndclass.lpszClassName = wxPanelClassNameNR; | |
417 | wndclass.style = styleNoRedraw; | |
418 | ||
419 | if ( !RegisterClass(&wndclass) ) | |
420 | { | |
f6bcfd97 | 421 | wxLogLastError(wxT("RegisterClass(no redraw panel)")); |
d3f5d09d UM |
422 | |
423 | return FALSE; | |
424 | } | |
425 | ||
e5c0b16a | 426 | // Register the canvas and textsubwindow class name |
42e69d6b VZ |
427 | wndclass.hbrBackground = (HBRUSH)NULL; |
428 | wndclass.lpszClassName = wxCanvasClassName; | |
429 | ||
430 | if ( !RegisterClass(&wndclass) ) | |
e5c0b16a | 431 | { |
f6bcfd97 | 432 | wxLogLastError(wxT("RegisterClass(canvas)")); |
42e69d6b VZ |
433 | |
434 | return FALSE; | |
e5c0b16a VZ |
435 | } |
436 | ||
d3f5d09d UM |
437 | wndclass.lpszClassName = wxCanvasClassNameNR; |
438 | wndclass.style = styleNoRedraw; | |
439 | if ( !RegisterClass(&wndclass) ) | |
440 | { | |
f6bcfd97 | 441 | wxLogLastError(wxT("RegisterClass(no redraw canvas)")); |
d3f5d09d UM |
442 | |
443 | return FALSE; | |
444 | } | |
445 | ||
e5c0b16a | 446 | return TRUE; |
2bda0e17 KB |
447 | } |
448 | ||
42e69d6b VZ |
449 | // --------------------------------------------------------------------------- |
450 | // Convert Windows to argc, argv style | |
451 | // --------------------------------------------------------------------------- | |
589f0e3e JS |
452 | |
453 | void wxApp::ConvertToStandardCommandArgs(char* lpCmdLine) | |
454 | { | |
da36f544 | 455 | wxStringList args; |
589f0e3e | 456 | |
da36f544 JS |
457 | wxString cmdLine(lpCmdLine); |
458 | int count = 0; | |
589f0e3e | 459 | |
da36f544 | 460 | // Get application name |
837e5743 | 461 | wxChar name[260]; // 260 is MAX_PATH value from windef.h |
da36f544 JS |
462 | ::GetModuleFileName(wxhInstance, name, WXSIZEOF(name)); |
463 | ||
da36f544 | 464 | args.Add(name); |
50ef256e | 465 | count++; |
589f0e3e | 466 | |
837e5743 | 467 | wxStrcpy(name, wxFileNameFromPath(name)); |
da36f544 JS |
468 | wxStripExtension(name); |
469 | wxTheApp->SetAppName(name); | |
589f0e3e | 470 | |
da36f544 JS |
471 | // Break up string |
472 | // Treat strings enclosed in double-quotes as single arguments | |
473 | int i = 0; | |
474 | int len = cmdLine.Length(); | |
475 | while (i < len) | |
a5e0e655 | 476 | { |
da36f544 | 477 | // Skip whitespace |
837e5743 | 478 | while ((i < len) && wxIsspace(cmdLine.GetChar(i))) |
da36f544 JS |
479 | i ++; |
480 | ||
481 | if (i < len) | |
482 | { | |
223d09f6 | 483 | if (cmdLine.GetChar(i) == wxT('"')) // We found the start of a string |
da36f544 JS |
484 | { |
485 | i ++; | |
486 | int first = i; | |
223d09f6 | 487 | while ((i < len) && (cmdLine.GetChar(i) != wxT('"'))) |
da36f544 JS |
488 | i ++; |
489 | ||
490 | wxString arg(cmdLine.Mid(first, (i - first))); | |
491 | ||
492 | args.Add(arg); | |
493 | count ++; | |
494 | ||
495 | if (i < len) | |
496 | i ++; // Skip past 2nd quote | |
497 | } | |
498 | else // Unquoted argument | |
499 | { | |
500 | int first = i; | |
837e5743 | 501 | while ((i < len) && !wxIsspace(cmdLine.GetChar(i))) |
da36f544 JS |
502 | i ++; |
503 | ||
504 | wxString arg(cmdLine.Mid(first, (i - first))); | |
505 | ||
506 | args.Add(arg); | |
507 | count ++; | |
508 | } | |
509 | } | |
a5e0e655 | 510 | } |
a5e0e655 | 511 | |
837e5743 | 512 | wxTheApp->argv = new wxChar*[count + 1]; |
da36f544 | 513 | for (i = 0; i < count; i++) |
a5e0e655 | 514 | { |
da36f544 | 515 | wxString arg(args[i]); |
837e5743 | 516 | wxTheApp->argv[i] = copystring((const wxChar*)arg); |
a5e0e655 | 517 | } |
da36f544 JS |
518 | wxTheApp->argv[count] = NULL; // argv[] is a NULL-terminated list |
519 | wxTheApp->argc = count; | |
589f0e3e JS |
520 | } |
521 | ||
522 | //// Cleans up any wxWindows internal structures left lying around | |
523 | ||
bb6290e3 | 524 | void wxApp::CleanUp() |
2bda0e17 | 525 | { |
e5c0b16a VZ |
526 | //// COMMON CLEANUP |
527 | ||
546db2a8 | 528 | #if wxUSE_LOG |
e5c0b16a VZ |
529 | // flush the logged messages if any and install a 'safer' log target: the |
530 | // default one (wxLogGui) can't be used after the resources are freed just | |
531 | // below and the user suppliedo ne might be even more unsafe (using any | |
532 | // wxWindows GUI function is unsafe starting from now) | |
533 | wxLog::DontCreateOnDemand(); | |
f5e5bd66 | 534 | |
e5c0b16a VZ |
535 | // this will flush the old messages if any |
536 | delete wxLog::SetActiveTarget(new wxLogStderr); | |
546db2a8 | 537 | #endif // wxUSE_LOG |
f5e5bd66 | 538 | |
e5c0b16a VZ |
539 | // One last chance for pending objects to be cleaned up |
540 | wxTheApp->DeletePendingObjects(); | |
f5e5bd66 | 541 | |
e5c0b16a | 542 | wxModule::CleanUpModules(); |
2bda0e17 | 543 | |
47d67540 | 544 | #if wxUSE_WX_RESOURCES |
e5c0b16a | 545 | wxCleanUpResourceSystem(); |
589f0e3e | 546 | |
e5c0b16a | 547 | // wxDefaultResourceTable->ClearTable(); |
589f0e3e JS |
548 | #endif |
549 | ||
42e69d6b | 550 | wxDeleteStockObjects(); |
589f0e3e | 551 | |
e5c0b16a VZ |
552 | // Destroy all GDI lists, etc. |
553 | wxDeleteStockLists(); | |
589f0e3e | 554 | |
e5c0b16a VZ |
555 | delete wxTheColourDatabase; |
556 | wxTheColourDatabase = NULL; | |
589f0e3e | 557 | |
e5c0b16a | 558 | wxBitmap::CleanUpHandlers(); |
589f0e3e | 559 | |
e5c0b16a VZ |
560 | delete[] wxBuffer; |
561 | wxBuffer = NULL; | |
589f0e3e | 562 | |
e5c0b16a | 563 | //// WINDOWS-SPECIFIC CLEANUP |
2bda0e17 | 564 | |
e5c0b16a | 565 | wxSetKeyboardHook(FALSE); |
2bda0e17 | 566 | |
47d67540 | 567 | #if wxUSE_PENWINDOWS |
e5c0b16a | 568 | wxCleanUpPenWin(); |
2bda0e17 KB |
569 | #endif |
570 | ||
e5c0b16a VZ |
571 | if (wxSTD_FRAME_ICON) |
572 | DestroyIcon(wxSTD_FRAME_ICON); | |
573 | if (wxSTD_MDICHILDFRAME_ICON) | |
574 | DestroyIcon(wxSTD_MDICHILDFRAME_ICON); | |
575 | if (wxSTD_MDIPARENTFRAME_ICON) | |
576 | DestroyIcon(wxSTD_MDIPARENTFRAME_ICON); | |
577 | ||
578 | if (wxDEFAULT_FRAME_ICON) | |
579 | DestroyIcon(wxDEFAULT_FRAME_ICON); | |
580 | if (wxDEFAULT_MDICHILDFRAME_ICON) | |
581 | DestroyIcon(wxDEFAULT_MDICHILDFRAME_ICON); | |
582 | if (wxDEFAULT_MDIPARENTFRAME_ICON) | |
583 | DestroyIcon(wxDEFAULT_MDIPARENTFRAME_ICON); | |
584 | ||
585 | if ( wxDisableButtonBrush ) | |
42e69d6b | 586 | ::DeleteObject( wxDisableButtonBrush ); |
e5c0b16a VZ |
587 | |
588 | #if wxUSE_OLE | |
589 | ::OleUninitialize(); | |
5de5db0e | 590 | #endif |
2bda0e17 | 591 | |
1f112209 | 592 | #if wxUSE_CTL3D |
e5c0b16a | 593 | Ctl3dUnregister(wxhInstance); |
2bda0e17 KB |
594 | #endif |
595 | ||
e5c0b16a | 596 | if (wxWinHandleList) |
42e69d6b | 597 | delete wxWinHandleList; |
d50b2a58 | 598 | |
3135f4a7 | 599 | // GL: I'm annoyed ... I don't know where to put this and I don't want to |
4d3a259a | 600 | // create a module for that as it's part of the core. |
4d3a259a | 601 | delete wxPendingEvents; |
1e6feb95 | 602 | |
8e193f38 | 603 | #if wxUSE_THREADS |
4d3a259a | 604 | delete wxPendingEventsLocker; |
1e6feb95 | 605 | // If we don't do the following, we get an apparent memory leak |
f80eabe5 | 606 | #if wxUSE_VALIDATORS |
63863e09 | 607 | ((wxEvtHandler&) wxDefaultValidator).ClearEventLocker(); |
1e6feb95 VZ |
608 | #endif // wxUSE_VALIDATORS |
609 | #endif // wxUSE_THREADS | |
4d3a259a | 610 | |
e5c0b16a | 611 | wxClassInfo::CleanUpClasses(); |
0c32066b | 612 | |
e5c0b16a VZ |
613 | delete wxTheApp; |
614 | wxTheApp = NULL; | |
184b5d99 JS |
615 | |
616 | #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT | |
e5c0b16a VZ |
617 | // At this point we want to check if there are any memory |
618 | // blocks that aren't part of the wxDebugContext itself, | |
619 | // as a special case. Then when dumping we need to ignore | |
620 | // wxDebugContext, too. | |
d13c32e9 | 621 | if (wxDebugContext::CountObjectsLeft(TRUE) > 0) |
e5c0b16a | 622 | { |
5fa399c9 | 623 | wxLogMessage(wxT("There were memory leaks.")); |
e5c0b16a VZ |
624 | wxDebugContext::Dump(); |
625 | wxDebugContext::PrintStatistics(); | |
626 | } | |
627 | // wxDebugContext::SetStream(NULL, NULL); | |
184b5d99 JS |
628 | #endif |
629 | ||
546db2a8 | 630 | #if wxUSE_LOG |
e5c0b16a VZ |
631 | // do it as the very last thing because everything else can log messages |
632 | delete wxLog::SetActiveTarget(NULL); | |
546db2a8 | 633 | #endif // wxUSE_LOG |
2bda0e17 KB |
634 | } |
635 | ||
7ece89c6 RD |
636 | //---------------------------------------------------------------------- |
637 | // Entry point helpers, used by wxPython | |
638 | //---------------------------------------------------------------------- | |
639 | ||
f6bcfd97 | 640 | int WXDLLEXPORT wxEntryStart( int WXUNUSED(argc), char** WXUNUSED(argv) ) |
7ece89c6 RD |
641 | { |
642 | return wxApp::Initialize(); | |
643 | } | |
644 | ||
f6bcfd97 | 645 | int WXDLLEXPORT wxEntryInitGui() |
7ece89c6 | 646 | { |
1e6feb95 | 647 | return wxTheApp->OnInitGui(); |
7ece89c6 RD |
648 | } |
649 | ||
650 | void WXDLLEXPORT wxEntryCleanup() | |
651 | { | |
652 | wxApp::CleanUp(); | |
653 | } | |
654 | ||
655 | ||
2bda0e17 KB |
656 | #if !defined(_WINDLL) || (defined(_WINDLL) && defined(WXMAKINGDLL)) |
657 | ||
e5c0b16a VZ |
658 | // temporarily disable this warning which would be generated in release builds |
659 | // because of __try | |
3f4a0c5b | 660 | #ifdef __VISUALC__ |
f8a3e080 VZ |
661 | #pragma warning(disable: 4715) // not all control paths return a value |
662 | #endif // Visual C++ | |
663 | ||
7ece89c6 RD |
664 | //---------------------------------------------------------------------- |
665 | // Main wxWindows entry point | |
666 | //---------------------------------------------------------------------- | |
a5e0e655 VZ |
667 | int wxEntry(WXHINSTANCE hInstance, |
668 | WXHINSTANCE WXUNUSED(hPrevInstance), | |
669 | char *lpCmdLine, | |
670 | int nCmdShow, | |
671 | bool enterLoop) | |
2bda0e17 | 672 | { |
6e0d9d43 VZ |
673 | // do check for memory leaks on program exit |
674 | // (another useful flag is _CRTDBG_DELAY_FREE_MEM_DF which doesn't free | |
675 | // deallocated memory which may be used to simulate low-memory condition) | |
676 | wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF); | |
6418cb93 SC |
677 | #ifdef __MWERKS__ |
678 | #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT | |
679 | // This seems to be necessary since there are 'rogue' | |
680 | // objects present at this point (perhaps global objects?) | |
681 | // Setting a checkpoint will ignore them as far as the | |
682 | // memory checking facility is concerned. | |
683 | // Of course you may argue that memory allocated in globals should be | |
684 | // checked, but this is a reasonable compromise. | |
685 | wxDebugContext::SetCheckpoint(); | |
686 | #endif | |
687 | #endif | |
3b415ba4 VZ |
688 | |
689 | // take everything into a try-except block to be able to call | |
690 | // OnFatalException() if necessary | |
3b415ba4 | 691 | #if wxUSE_ON_FATAL_EXCEPTION |
3f4a0c5b | 692 | __try { |
a5e0e655 | 693 | #endif |
e5c0b16a | 694 | wxhInstance = (HINSTANCE) hInstance; |
2bda0e17 | 695 | |
7ece89c6 | 696 | if (!wxEntryStart(0,0)) |
e5c0b16a | 697 | return 0; |
2bda0e17 | 698 | |
e5c0b16a VZ |
699 | // create the application object or ensure that one already exists |
700 | if (!wxTheApp) | |
701 | { | |
702 | // The app may have declared a global application object, but we recommend | |
703 | // the IMPLEMENT_APP macro is used instead, which sets an initializer | |
704 | // function for delayed, dynamic app object construction. | |
705 | wxCHECK_MSG( wxApp::GetInitializerFunction(), 0, | |
223d09f6 | 706 | wxT("No initializer - use IMPLEMENT_APP macro.") ); |
f8a3e080 | 707 | |
e5c0b16a VZ |
708 | wxTheApp = (*wxApp::GetInitializerFunction()) (); |
709 | } | |
710 | ||
223d09f6 | 711 | wxCHECK_MSG( wxTheApp, 0, wxT("You have to define an instance of wxApp!") ); |
e5c0b16a VZ |
712 | |
713 | // save the WinMain() parameters | |
714 | wxTheApp->ConvertToStandardCommandArgs(lpCmdLine); | |
715 | wxTheApp->m_nCmdShow = nCmdShow; | |
a5e0e655 | 716 | |
36edded9 JS |
717 | // We really don't want timestamps by default, because it means |
718 | // we can't simply double-click on the error message and get to that | |
719 | // line in the source. So VC++ at least, let's have a sensible default. | |
720 | #ifdef __VISUALC__ | |
721 | wxLog::SetTimestamp(NULL); | |
722 | #endif | |
723 | ||
e5c0b16a VZ |
724 | int retValue = 0; |
725 | ||
6afafc42 VZ |
726 | // it is common to create a modal dialog in OnInit() (to ask/notify the |
727 | // user about something) but it wouldn't work if we don't change the | |
728 | // "exit on delete last frame" flag here as when this dialog is | |
729 | // deleted, the app would terminate (it was the last top level window | |
730 | // as the main frame wasn't created yet!), so disable this behaviour | |
731 | // temproarily | |
732 | bool exitOnLastFrameDelete = wxTheApp->GetExitOnFrameDelete(); | |
733 | wxTheApp->SetExitOnFrameDelete(FALSE); | |
734 | ||
735 | // init the app | |
1e6feb95 | 736 | retValue = wxEntryInitGui() && wxTheApp->OnInit() ? 0 : -1; |
6afafc42 VZ |
737 | |
738 | // restore the old flag value | |
739 | wxTheApp->SetExitOnFrameDelete(exitOnLastFrameDelete); | |
740 | ||
741 | if ( retValue == 0 ) | |
e5c0b16a VZ |
742 | { |
743 | if ( enterLoop ) | |
744 | { | |
6afafc42 | 745 | // run the main loop |
e5c0b16a VZ |
746 | retValue = wxTheApp->OnRun(); |
747 | } | |
748 | else | |
6afafc42 VZ |
749 | { |
750 | // we want to initialize, but not run or exit immediately. | |
e5c0b16a | 751 | return 1; |
6afafc42 | 752 | } |
e5c0b16a VZ |
753 | } |
754 | //else: app initialization failed, so we skipped OnRun() | |
755 | ||
756 | wxWindow *topWindow = wxTheApp->GetTopWindow(); | |
757 | if ( topWindow ) | |
758 | { | |
759 | // Forcibly delete the window. | |
760 | if ( topWindow->IsKindOf(CLASSINFO(wxFrame)) || | |
761 | topWindow->IsKindOf(CLASSINFO(wxDialog)) ) | |
762 | { | |
763 | topWindow->Close(TRUE); | |
764 | wxTheApp->DeletePendingObjects(); | |
765 | } | |
766 | else | |
767 | { | |
768 | delete topWindow; | |
769 | wxTheApp->SetTopWindow(NULL); | |
770 | } | |
771 | } | |
772 | ||
773 | wxTheApp->OnExit(); | |
774 | ||
7ece89c6 | 775 | wxEntryCleanup(); |
e5c0b16a VZ |
776 | |
777 | return retValue; | |
778 | ||
3b415ba4 | 779 | #if wxUSE_ON_FATAL_EXCEPTION |
e5c0b16a | 780 | } |
3b415ba4 VZ |
781 | __except ( gs_handleExceptions ? EXCEPTION_EXECUTE_HANDLER |
782 | : EXCEPTION_CONTINUE_SEARCH ) { | |
783 | if ( wxTheApp ) | |
f6bcfd97 BP |
784 | { |
785 | // give the user a chance to do something special about this | |
e5c0b16a | 786 | wxTheApp->OnFatalException(); |
f6bcfd97 | 787 | } |
e5c0b16a VZ |
788 | |
789 | ::ExitProcess(3); // the same exit code as abort() | |
790 | ||
791 | // NOTREACHED | |
792 | } | |
3b415ba4 | 793 | #endif // wxUSE_ON_FATAL_EXCEPTION |
2bda0e17 KB |
794 | } |
795 | ||
f8a3e080 | 796 | // restore warning state |
3f4a0c5b | 797 | #ifdef __VISUALC__ |
f8a3e080 VZ |
798 | #pragma warning(default: 4715) // not all control paths return a value |
799 | #endif // Visual C++ | |
800 | ||
2bda0e17 KB |
801 | #else /* _WINDLL */ |
802 | ||
7ece89c6 RD |
803 | //---------------------------------------------------------------------- |
804 | // Entry point for wxWindows + the App in a DLL | |
805 | //---------------------------------------------------------------------- | |
589f0e3e | 806 | |
2bda0e17 KB |
807 | int wxEntry(WXHINSTANCE hInstance) |
808 | { | |
e5c0b16a | 809 | wxhInstance = (HINSTANCE) hInstance; |
7ece89c6 | 810 | wxEntryStart(0, 0); |
2bda0e17 | 811 | |
e5c0b16a VZ |
812 | // The app may have declared a global application object, but we recommend |
813 | // the IMPLEMENT_APP macro is used instead, which sets an initializer function | |
814 | // for delayed, dynamic app object construction. | |
815 | if (!wxTheApp) | |
a5e0e655 | 816 | { |
e5c0b16a VZ |
817 | wxCHECK_MSG( wxApp::GetInitializerFunction(), 0, |
818 | "No initializer - use IMPLEMENT_APP macro." ); | |
2bda0e17 | 819 | |
e5c0b16a VZ |
820 | wxTheApp = (* wxApp::GetInitializerFunction()) (); |
821 | } | |
2bda0e17 | 822 | |
e5c0b16a | 823 | wxCHECK_MSG( wxTheApp, 0, "You have to define an instance of wxApp!" ); |
2bda0e17 | 824 | |
e5c0b16a VZ |
825 | wxTheApp->argc = 0; |
826 | wxTheApp->argv = NULL; | |
2bda0e17 | 827 | |
7ece89c6 | 828 | wxEntryInitGui(); |
2bda0e17 | 829 | |
e5c0b16a | 830 | wxTheApp->OnInit(); |
2bda0e17 | 831 | |
e5c0b16a VZ |
832 | wxWindow *topWindow = wxTheApp->GetTopWindow(); |
833 | if ( topWindow && topWindow->GetHWND()) | |
834 | { | |
835 | topWindow->Show(TRUE); | |
836 | } | |
2bda0e17 | 837 | |
e5c0b16a | 838 | return 1; |
2bda0e17 KB |
839 | } |
840 | #endif // _WINDLL | |
841 | ||
589f0e3e JS |
842 | //// Static member initialization |
843 | ||
c94ad3c3 | 844 | wxAppInitializerFunction wxAppBase::m_appInitFn = (wxAppInitializerFunction) NULL; |
2bda0e17 | 845 | |
bb6290e3 | 846 | wxApp::wxApp() |
2bda0e17 | 847 | { |
e5c0b16a VZ |
848 | argc = 0; |
849 | argv = NULL; | |
e5c0b16a | 850 | m_printMode = wxPRINT_WINDOWS; |
e5c0b16a | 851 | m_auto3D = TRUE; |
2bda0e17 KB |
852 | } |
853 | ||
589f0e3e JS |
854 | wxApp::~wxApp() |
855 | { | |
e5c0b16a VZ |
856 | // Delete command-line args |
857 | int i; | |
858 | for (i = 0; i < argc; i++) | |
859 | { | |
860 | delete[] argv[i]; | |
861 | } | |
862 | delete[] argv; | |
589f0e3e JS |
863 | } |
864 | ||
bb6290e3 | 865 | bool wxApp::Initialized() |
2bda0e17 KB |
866 | { |
867 | #ifndef _WINDLL | |
e5c0b16a VZ |
868 | if (GetTopWindow()) |
869 | return TRUE; | |
870 | else | |
871 | return FALSE; | |
3b415ba4 | 872 | #else // Assume initialized if DLL (no way of telling) |
e5c0b16a | 873 | return TRUE; |
2bda0e17 KB |
874 | #endif |
875 | } | |
876 | ||
877 | /* | |
878 | * Get and process a message, returning FALSE if WM_QUIT | |
bee503b0 | 879 | * received (and also set the flag telling the app to exit the main loop) |
2bda0e17 KB |
880 | * |
881 | */ | |
bb6290e3 | 882 | bool wxApp::DoMessage() |
2bda0e17 | 883 | { |
bee503b0 VZ |
884 | BOOL rc = ::GetMessage(&s_currentMsg, (HWND) NULL, 0, 0); |
885 | if ( rc == 0 ) | |
886 | { | |
887 | // got WM_QUIT | |
888 | m_keepGoing = FALSE; | |
4a9968f9 | 889 | |
bee503b0 VZ |
890 | return FALSE; |
891 | } | |
892 | else if ( rc == -1 ) | |
893 | { | |
894 | // should never happen, but let's test for it nevertheless | |
f6bcfd97 | 895 | wxLogLastError(wxT("GetMessage")); |
bee503b0 VZ |
896 | } |
897 | else | |
898 | { | |
899 | #if wxUSE_THREADS | |
900 | wxASSERT_MSG( wxThread::IsMain(), | |
223d09f6 | 901 | wxT("only the main thread can process Windows messages") ); |
d50b2a58 | 902 | |
bee503b0 VZ |
903 | static bool s_hadGuiLock = TRUE; |
904 | static wxMsgArray s_aSavedMessages; | |
905 | ||
906 | // if a secondary thread owns is doing GUI calls, save all messages for | |
907 | // later processing - we can't process them right now because it will | |
908 | // lead to recursive library calls (and we're not reentrant) | |
909 | if ( !wxGuiOwnedByMainThread() ) | |
910 | { | |
911 | s_hadGuiLock = FALSE; | |
912 | ||
4a9968f9 VZ |
913 | // leave out WM_COMMAND messages: too dangerous, sometimes |
914 | // the message will be processed twice | |
915 | if ( !wxIsWaitingForThread() || | |
e5c0b16a | 916 | s_currentMsg.message != WM_COMMAND ) |
4a9968f9 VZ |
917 | { |
918 | s_aSavedMessages.Add(s_currentMsg); | |
919 | } | |
bee503b0 VZ |
920 | |
921 | return TRUE; | |
922 | } | |
923 | else | |
924 | { | |
925 | // have we just regained the GUI lock? if so, post all of the saved | |
926 | // messages | |
927 | // | |
928 | // FIXME of course, it's not _exactly_ the same as processing the | |
929 | // messages normally - expect some things to break... | |
930 | if ( !s_hadGuiLock ) | |
931 | { | |
932 | s_hadGuiLock = TRUE; | |
933 | ||
934 | size_t count = s_aSavedMessages.Count(); | |
935 | for ( size_t n = 0; n < count; n++ ) | |
936 | { | |
937 | MSG& msg = s_aSavedMessages[n]; | |
938 | ||
939 | if ( !ProcessMessage((WXMSG *)&msg) ) | |
940 | { | |
941 | ::TranslateMessage(&msg); | |
942 | ::DispatchMessage(&msg); | |
943 | } | |
944 | } | |
945 | ||
946 | s_aSavedMessages.Empty(); | |
947 | } | |
948 | } | |
949 | #endif // wxUSE_THREADS | |
950 | ||
951 | // Process the message | |
ed45e263 | 952 | DoMessage((WXMSG *)&s_currentMsg); |
bee503b0 VZ |
953 | } |
954 | ||
955 | return TRUE; | |
2bda0e17 KB |
956 | } |
957 | ||
ed45e263 VZ |
958 | void wxApp::DoMessage(WXMSG *pMsg) |
959 | { | |
960 | if ( !ProcessMessage(pMsg) ) | |
961 | { | |
962 | ::TranslateMessage((MSG *)pMsg); | |
963 | ::DispatchMessage((MSG *)pMsg); | |
964 | } | |
965 | } | |
966 | ||
2bda0e17 KB |
967 | /* |
968 | * Keep trying to process messages until WM_QUIT | |
969 | * received. | |
970 | * | |
971 | * If there are messages to be processed, they will all be | |
972 | * processed and OnIdle will not be called. | |
973 | * When there are no more messages, OnIdle is called. | |
974 | * If OnIdle requests more time, | |
975 | * it will be repeatedly called so long as there are no pending messages. | |
976 | * A 'feature' of this is that once OnIdle has decided that no more processing | |
977 | * is required, then it won't get processing time until further messages | |
978 | * are processed (it'll sit in DoMessage). | |
979 | */ | |
980 | ||
bb6290e3 | 981 | int wxApp::MainLoop() |
2bda0e17 | 982 | { |
e5c0b16a | 983 | m_keepGoing = TRUE; |
bee503b0 | 984 | |
e5c0b16a VZ |
985 | while ( m_keepGoing ) |
986 | { | |
987 | #if wxUSE_THREADS | |
bee503b0 | 988 | wxMutexGuiLeaveOrEnter(); |
e5c0b16a | 989 | #endif // wxUSE_THREADS |
bee503b0 | 990 | |
b6c588e1 VZ |
991 | while ( !Pending() && ProcessIdle() ) |
992 | ; | |
7214297d | 993 | |
b6c588e1 | 994 | // a message came or no more idle processing to do |
e5c0b16a VZ |
995 | DoMessage(); |
996 | } | |
2bda0e17 | 997 | |
e5c0b16a | 998 | return s_currentMsg.wParam; |
2bda0e17 KB |
999 | } |
1000 | ||
1001 | // Returns TRUE if more time is needed. | |
bb6290e3 | 1002 | bool wxApp::ProcessIdle() |
2bda0e17 KB |
1003 | { |
1004 | wxIdleEvent event; | |
1005 | event.SetEventObject(this); | |
1006 | ProcessEvent(event); | |
1007 | ||
1008 | return event.MoreRequested(); | |
1009 | } | |
1010 | ||
bb6290e3 | 1011 | void wxApp::ExitMainLoop() |
2bda0e17 | 1012 | { |
b6c588e1 | 1013 | // VZ: why not ::PostQuitMessage()? |
e5c0b16a | 1014 | m_keepGoing = FALSE; |
2bda0e17 KB |
1015 | } |
1016 | ||
bb6290e3 | 1017 | bool wxApp::Pending() |
2bda0e17 | 1018 | { |
b6c588e1 | 1019 | return ::PeekMessage(&s_currentMsg, 0, 0, 0, PM_NOREMOVE) != 0; |
2bda0e17 KB |
1020 | } |
1021 | ||
bb6290e3 | 1022 | void wxApp::Dispatch() |
2bda0e17 | 1023 | { |
bee503b0 | 1024 | DoMessage(); |
2bda0e17 KB |
1025 | } |
1026 | ||
1027 | /* | |
1028 | * Give all windows a chance to preprocess | |
1029 | * the message. Some may have accelerator tables, or have | |
1030 | * MDI complications. | |
1031 | */ | |
2a47d3c1 | 1032 | |
d3f0a137 | 1033 | bool wxApp::ProcessMessage(WXMSG *wxmsg) |
2bda0e17 | 1034 | { |
d3f0a137 VZ |
1035 | MSG *msg = (MSG *)wxmsg; |
1036 | HWND hWnd = msg->hwnd; | |
8614c467 | 1037 | wxWindow *wndThis = wxGetWindowFromHWND((WXHWND)hWnd); |
2bda0e17 | 1038 | |
8614c467 VZ |
1039 | #if wxUSE_TOOLTIPS |
1040 | // we must relay WM_MOUSEMOVE events to the tooltip ctrl if we want it to | |
1041 | // popup the tooltip bubbles | |
1042 | if ( wndThis && (msg->message == WM_MOUSEMOVE) ) | |
834362a2 | 1043 | { |
8614c467 VZ |
1044 | wxToolTip *tt = wndThis->GetToolTip(); |
1045 | if ( tt ) | |
1046 | { | |
1047 | tt->RelayEvent(wxmsg); | |
1048 | } | |
834362a2 | 1049 | } |
8614c467 | 1050 | #endif // wxUSE_TOOLTIPS |
834362a2 | 1051 | |
e5c0b16a VZ |
1052 | // Try translations first; find the youngest window with |
1053 | // a translation table. | |
8614c467 | 1054 | wxWindow *wnd; |
42bcb12b | 1055 | |
ee544c17 | 1056 | bool pastTopLevelWindow = FALSE; |
d3f0a137 | 1057 | for ( wnd = wndThis; wnd; wnd = wnd->GetParent() ) |
2bda0e17 | 1058 | { |
ee544c17 JS |
1059 | if ( !pastTopLevelWindow && wnd->MSWTranslateMessage(wxmsg)) |
1060 | return TRUE; | |
1061 | if ( wnd->MSWProcessMessage(wxmsg) ) | |
d3f0a137 | 1062 | return TRUE; |
3bdc265d VZ |
1063 | |
1064 | // stop at first top level window, i.e. don't try to process the key | |
1065 | // strokes originating in a dialog using the accelerators of the parent | |
1066 | // frame - this doesn't make much sense | |
1067 | if ( wnd->IsTopLevel() ) | |
ee544c17 | 1068 | pastTopLevelWindow = TRUE; |
57a7b7c1 | 1069 | } |
d3f0a137 | 1070 | |
e5c0b16a | 1071 | return FALSE; |
2bda0e17 KB |
1072 | } |
1073 | ||
1074 | void wxApp::OnIdle(wxIdleEvent& event) | |
1075 | { | |
3222fde2 | 1076 | static bool s_inOnIdle = FALSE; |
2bda0e17 | 1077 | |
3222fde2 VZ |
1078 | // Avoid recursion (via ProcessEvent default case) |
1079 | if ( s_inOnIdle ) | |
1080 | return; | |
2bda0e17 | 1081 | |
3222fde2 | 1082 | s_inOnIdle = TRUE; |
2bda0e17 | 1083 | |
52e52bea GRG |
1084 | // If there are pending events, we must process them: pending events |
1085 | // are either events to the threads other than main or events posted | |
1086 | // with wxPostEvent() functions | |
1087 | // GRG: I have moved this here so that all pending events are processed | |
1088 | // before starting to delete any objects. This behaves better (in | |
1089 | // particular, wrt wxPostEvent) and is coherent with wxGTK's current | |
1090 | // behaviour. Changed Feb/2000 before 2.1.14 | |
1091 | ProcessPendingEvents(); | |
1092 | ||
3222fde2 VZ |
1093 | // 'Garbage' collection of windows deleted with Close(). |
1094 | DeletePendingObjects(); | |
2bda0e17 | 1095 | |
546db2a8 | 1096 | #if wxUSE_LOG |
3222fde2 | 1097 | // flush the logged messages if any |
2ed3265e | 1098 | wxLog::FlushActive(); |
546db2a8 | 1099 | #endif // wxUSE_LOG |
c54f78a2 | 1100 | |
3222fde2 VZ |
1101 | // Send OnIdle events to all windows |
1102 | if ( SendIdleEvents() ) | |
1103 | { | |
1104 | // SendIdleEvents() returns TRUE if at least one window requested more | |
1105 | // idle events | |
1106 | event.RequestMore(TRUE); | |
1107 | } | |
2bda0e17 | 1108 | |
3222fde2 | 1109 | s_inOnIdle = FALSE; |
2bda0e17 KB |
1110 | } |
1111 | ||
1112 | // Send idle event to all top-level windows | |
bb6290e3 | 1113 | bool wxApp::SendIdleEvents() |
2bda0e17 KB |
1114 | { |
1115 | bool needMore = FALSE; | |
e146b8c8 | 1116 | |
f1d534df | 1117 | wxWindowList::Node* node = wxTopLevelWindows.GetFirst(); |
3222fde2 VZ |
1118 | while (node) |
1119 | { | |
e146b8c8 | 1120 | wxWindow* win = node->GetData(); |
3222fde2 | 1121 | if (SendIdleEvents(win)) |
2bda0e17 | 1122 | needMore = TRUE; |
e146b8c8 | 1123 | node = node->GetNext(); |
3222fde2 VZ |
1124 | } |
1125 | ||
2bda0e17 KB |
1126 | return needMore; |
1127 | } | |
1128 | ||
1129 | // Send idle event to window and all subwindows | |
1130 | bool wxApp::SendIdleEvents(wxWindow* win) | |
1131 | { | |
e5c0b16a | 1132 | bool needMore = FALSE; |
2bda0e17 | 1133 | |
e5c0b16a VZ |
1134 | wxIdleEvent event; |
1135 | event.SetEventObject(win); | |
1136 | win->GetEventHandler()->ProcessEvent(event); | |
2bda0e17 | 1137 | |
e5c0b16a VZ |
1138 | if (event.MoreRequested()) |
1139 | needMore = TRUE; | |
2bda0e17 | 1140 | |
e5c0b16a VZ |
1141 | wxNode* node = win->GetChildren().First(); |
1142 | while (node) | |
1143 | { | |
1144 | wxWindow* win = (wxWindow*) node->Data(); | |
1145 | if (SendIdleEvents(win)) | |
1146 | needMore = TRUE; | |
2bda0e17 | 1147 | |
e5c0b16a VZ |
1148 | node = node->Next(); |
1149 | } | |
42e69d6b | 1150 | return needMore; |
2bda0e17 KB |
1151 | } |
1152 | ||
bb6290e3 | 1153 | void wxApp::DeletePendingObjects() |
2bda0e17 | 1154 | { |
e5c0b16a VZ |
1155 | wxNode *node = wxPendingDelete.First(); |
1156 | while (node) | |
1157 | { | |
1158 | wxObject *obj = (wxObject *)node->Data(); | |
d50b2a58 | 1159 | |
e5c0b16a | 1160 | delete obj; |
2bda0e17 | 1161 | |
e5c0b16a VZ |
1162 | if (wxPendingDelete.Member(obj)) |
1163 | delete node; | |
2bda0e17 | 1164 | |
e5c0b16a VZ |
1165 | // Deleting one object may have deleted other pending |
1166 | // objects, so start from beginning of list again. | |
1167 | node = wxPendingDelete.First(); | |
1168 | } | |
2bda0e17 KB |
1169 | } |
1170 | ||
57c208c5 | 1171 | void wxApp::OnEndSession(wxCloseEvent& WXUNUSED(event)) |
387a3b02 JS |
1172 | { |
1173 | if (GetTopWindow()) | |
1174 | GetTopWindow()->Close(TRUE); | |
1175 | } | |
1176 | ||
1177 | // Default behaviour: close the application with prompts. The | |
1178 | // user can veto the close, and therefore the end session. | |
1179 | void wxApp::OnQueryEndSession(wxCloseEvent& event) | |
1180 | { | |
1181 | if (GetTopWindow()) | |
1182 | { | |
1183 | if (!GetTopWindow()->Close(!event.CanVeto())) | |
1184 | event.Veto(TRUE); | |
1185 | } | |
1186 | } | |
1187 | ||
6d167489 VZ |
1188 | /* static */ |
1189 | int wxApp::GetComCtl32Version() | |
1190 | { | |
6d167489 | 1191 | // cache the result |
bdc72a22 VZ |
1192 | static int s_verComCtl32 = -1; |
1193 | ||
1194 | wxCRIT_SECT_DECLARE(csComCtl32); | |
1195 | wxCRIT_SECT_LOCKER(lock, csComCtl32); | |
6d167489 VZ |
1196 | |
1197 | if ( s_verComCtl32 == -1 ) | |
1198 | { | |
bdc72a22 | 1199 | // initally assume no comctl32.dll at all |
6d167489 VZ |
1200 | s_verComCtl32 = 0; |
1201 | ||
bdc72a22 VZ |
1202 | // do we have it? |
1203 | HMODULE hModuleComCtl32 = ::GetModuleHandle(wxT("COMCTL32")); | |
6d167489 VZ |
1204 | |
1205 | // if so, then we can check for the version | |
bdc72a22 | 1206 | if ( hModuleComCtl32 ) |
bb6290e3 | 1207 | { |
bdc72a22 VZ |
1208 | // try to use DllGetVersion() if available in _headers_ |
1209 | #ifdef DLLVER_PLATFORM_WINDOWS // defined in shlwapi.h | |
1210 | DLLGETVERSIONPROC pfnDllGetVersion = (DLLGETVERSIONPROC) | |
f6bcfd97 | 1211 | ::GetProcAddress(hModuleComCtl32, "DllGetVersion"); |
bdc72a22 | 1212 | if ( pfnDllGetVersion ) |
6d167489 | 1213 | { |
bdc72a22 VZ |
1214 | DLLVERSIONINFO dvi; |
1215 | dvi.cbSize = sizeof(dvi); | |
1216 | ||
1217 | HRESULT hr = (*pfnDllGetVersion)(&dvi); | |
1218 | if ( FAILED(hr) ) | |
1219 | { | |
1220 | wxLogApiError(_T("DllGetVersion"), hr); | |
1221 | } | |
1222 | else | |
1223 | { | |
1224 | // this is incompatible with _WIN32_IE values, but | |
1225 | // compatible with the other values returned by | |
1226 | // GetComCtl32Version() | |
1227 | s_verComCtl32 = 100*dvi.dwMajorVersion + | |
1228 | dvi.dwMinorVersion; | |
1229 | } | |
6d167489 | 1230 | } |
bdc72a22 VZ |
1231 | #endif |
1232 | // DllGetVersion() unavailable either during compile or | |
1233 | // run-time, try to guess the version otherwise | |
1234 | if ( !s_verComCtl32 ) | |
1235 | { | |
1236 | // InitCommonControlsEx is unique to 4.70 and later | |
1237 | FARPROC theProc = ::GetProcAddress | |
1238 | ( | |
1239 | hModuleComCtl32, | |
a8ee71c7 | 1240 | "InitCommonControlsEx" |
bdc72a22 VZ |
1241 | ); |
1242 | ||
1243 | if ( !theProc ) | |
1244 | { | |
1245 | // not found, must be 4.00 | |
1246 | s_verComCtl32 = 400; | |
1247 | } | |
1248 | else | |
1249 | { | |
1250 | // many symbols appeared in comctl32 4.71, could use | |
1251 | // any of them except may be DllInstall | |
1252 | theProc = ::GetProcAddress | |
1253 | ( | |
1254 | hModuleComCtl32, | |
a8ee71c7 | 1255 | "InitializeFlatSB" |
bdc72a22 VZ |
1256 | ); |
1257 | if ( !theProc ) | |
1258 | { | |
1259 | // not found, must be 4.70 | |
1260 | s_verComCtl32 = 470; | |
1261 | } | |
1262 | else | |
1263 | { | |
1264 | // found, must be 4.71 | |
1265 | s_verComCtl32 = 471; | |
1266 | } | |
1267 | } | |
6d167489 | 1268 | } |
bb6290e3 JS |
1269 | } |
1270 | } | |
6d167489 VZ |
1271 | |
1272 | return s_verComCtl32; | |
bb6290e3 JS |
1273 | } |
1274 | ||
1275 | void wxExit() | |
2bda0e17 | 1276 | { |
e5c0b16a VZ |
1277 | wxLogError(_("Fatal error: exiting")); |
1278 | ||
1279 | wxApp::CleanUp(); | |
3f8e5072 | 1280 | exit(0); |
2bda0e17 KB |
1281 | } |
1282 | ||
1283 | // Yield to incoming messages | |
cb2713bf JS |
1284 | |
1285 | static bool gs_inYield = FALSE; | |
1286 | ||
bb6290e3 | 1287 | bool wxYield() |
2bda0e17 | 1288 | { |
2ed3265e VZ |
1289 | // disable log flushing from here because a call to wxYield() shouldn't |
1290 | // normally result in message boxes popping up &c | |
1291 | wxLog::Suspend(); | |
1292 | ||
33ac7e6f | 1293 | #ifdef __WXDEBUG__ |
cb2713bf JS |
1294 | if (gs_inYield) |
1295 | wxFAIL_MSG( wxT("wxYield called recursively" ) ); | |
1296 | #endif | |
33ac7e6f | 1297 | |
cb2713bf JS |
1298 | gs_inYield = TRUE; |
1299 | ||
8e193f38 VZ |
1300 | // we don't want to process WM_QUIT from here - it should be processed in |
1301 | // the main event loop in order to stop it | |
e5c0b16a | 1302 | MSG msg; |
8e193f38 VZ |
1303 | while ( PeekMessage(&msg, (HWND)0, 0, 0, PM_NOREMOVE) && |
1304 | msg.message != WM_QUIT ) | |
e5c0b16a | 1305 | { |
5b615ed8 VZ |
1306 | #if wxUSE_THREADS |
1307 | wxMutexGuiLeaveOrEnter(); | |
1308 | #endif // wxUSE_THREADS | |
1309 | ||
e5c0b16a VZ |
1310 | if ( !wxTheApp->DoMessage() ) |
1311 | break; | |
1312 | } | |
8e193f38 | 1313 | |
aadbdf11 | 1314 | // If they are pending events, we must process them. |
3f8e5072 JS |
1315 | if (wxTheApp) |
1316 | wxTheApp->ProcessPendingEvents(); | |
e5c0b16a | 1317 | |
2ed3265e VZ |
1318 | // let the logs be flashed again |
1319 | wxLog::Resume(); | |
1320 | ||
cb2713bf JS |
1321 | gs_inYield = FALSE; |
1322 | ||
e5c0b16a | 1323 | return TRUE; |
2bda0e17 | 1324 | } |
094637f6 | 1325 | |
cb2713bf JS |
1326 | // Yield to incoming messages; but fail silently if recursion is detected. |
1327 | bool wxYieldIfNeeded() | |
1328 | { | |
1329 | if (gs_inYield) | |
1330 | return FALSE; | |
33ac7e6f | 1331 | |
cb2713bf JS |
1332 | return wxYield(); |
1333 | } | |
1334 | ||
3b415ba4 VZ |
1335 | bool wxHandleFatalExceptions(bool doit) |
1336 | { | |
1337 | #if wxUSE_ON_FATAL_EXCEPTION | |
1338 | // assume this can only be called from the main thread | |
1339 | gs_handleExceptions = doit; | |
1340 | ||
1341 | return TRUE; | |
1342 | #else | |
1343 | wxFAIL_MSG(_T("set wxUSE_ON_FATAL_EXCEPTION to 1 to sue this function")); | |
33ac7e6f KB |
1344 | |
1345 | (void)doit; | |
3b415ba4 VZ |
1346 | return FALSE; |
1347 | #endif | |
1348 | } | |
1349 | ||
9779893b RD |
1350 | //----------------------------------------------------------------------------- |
1351 | // wxWakeUpIdle | |
1352 | //----------------------------------------------------------------------------- | |
1353 | ||
1354 | void wxWakeUpIdle() | |
1355 | { | |
1356 | // Send the top window a dummy message so idle handler processing will | |
1357 | // start up again. Doing it this way ensures that the idle handler | |
b568d04f VZ |
1358 | // wakes up in the right thread (see also wxWakeUpMainThread() which does |
1359 | // the same for the main app thread only) | |
9779893b | 1360 | wxWindow *topWindow = wxTheApp->GetTopWindow(); |
b568d04f VZ |
1361 | if ( topWindow ) |
1362 | { | |
1363 | if ( !::PostMessage(GetHwndOf(topWindow), WM_NULL, 0, 0) ) | |
1364 | { | |
1365 | // should never happen | |
f6bcfd97 | 1366 | wxLogLastError(wxT("PostMessage(WM_NULL)")); |
b568d04f | 1367 | } |
9779893b RD |
1368 | } |
1369 | } | |
1370 | ||
1371 | //----------------------------------------------------------------------------- | |
1372 | ||
ebea0891 KB |
1373 | wxIcon |
1374 | wxApp::GetStdIcon(int which) const | |
1375 | { | |
094637f6 VZ |
1376 | switch(which) |
1377 | { | |
1378 | case wxICON_INFORMATION: | |
1379 | return wxIcon("wxICON_INFO"); | |
1380 | ||
1381 | case wxICON_QUESTION: | |
1382 | return wxIcon("wxICON_QUESTION"); | |
1383 | ||
1384 | case wxICON_EXCLAMATION: | |
1385 | return wxIcon("wxICON_WARNING"); | |
1386 | ||
1387 | default: | |
223d09f6 | 1388 | wxFAIL_MSG(wxT("requested non existent standard icon")); |
094637f6 VZ |
1389 | // still fall through |
1390 | ||
1391 | case wxICON_HAND: | |
1392 | return wxIcon("wxICON_ERROR"); | |
1393 | } | |
ebea0891 KB |
1394 | } |
1395 | ||
2bda0e17 KB |
1396 | // For some reason, with MSVC++ 1.5, WinMain isn't linked in properly |
1397 | // if in a separate file. So include it here to ensure it's linked. | |
31e78e0c | 1398 | #if (defined(__VISUALC__) && !defined(__WIN32__)) || (defined(__GNUWIN32__) && !defined(__TWIN32__) && !defined(WXMAKINGDLL)) |
e5c0b16a | 1399 | #include "main.cpp" |
2bda0e17 | 1400 | #endif |