]>
Commit | Line | Data |
---|---|---|
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 | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // =========================================================================== | |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
20 | #ifdef __GNUG__ | |
21 | #pragma implementation "app.h" | |
22 | #endif | |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #if defined(__BORLANDC__) | |
28 | #pragma hdrstop | |
29 | #endif | |
30 | ||
31 | #ifndef WX_PRECOMP | |
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" | |
46 | #include "wx/wxchar.h" | |
47 | #include "wx/icon.h" | |
48 | #endif | |
49 | ||
50 | #include "wx/log.h" | |
51 | #include "wx/module.h" | |
52 | ||
53 | #include "wx/msw/private.h" | |
54 | ||
55 | #if wxUSE_THREADS | |
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 | |
65 | ||
66 | #if wxUSE_WX_RESOURCES | |
67 | #include "wx/resource.h" | |
68 | #endif | |
69 | ||
70 | // OLE is used for drag-and-drop, clipboard, OLE Automation... | |
71 | #ifndef wxUSE_NORLANDER_HEADERS | |
72 | #if defined(__GNUWIN32__) || defined(__SC__) || defined(__SALFORDC__) | |
73 | #undef wxUSE_OLE | |
74 | ||
75 | #define wxUSE_OLE 0 | |
76 | #endif // broken compilers | |
77 | #endif | |
78 | ||
79 | #if wxUSE_OLE | |
80 | #include <ole2.h> | |
81 | #endif | |
82 | ||
83 | #include <string.h> | |
84 | #include <ctype.h> | |
85 | ||
86 | #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__) || defined(wxUSE_NORLANDER_HEADERS) | |
87 | #include <commctrl.h> | |
88 | #endif | |
89 | ||
90 | #include "wx/msw/msvcrt.h" | |
91 | ||
92 | // --------------------------------------------------------------------------- | |
93 | // global variables | |
94 | // --------------------------------------------------------------------------- | |
95 | ||
96 | extern wxChar *wxBuffer; | |
97 | extern wxChar *wxOsVersion; | |
98 | extern wxList *wxWinHandleList; | |
99 | extern wxList WXDLLEXPORT wxPendingDelete; | |
100 | extern void wxSetKeyboardHook(bool doIt); | |
101 | extern wxCursor *g_globalCursor; | |
102 | ||
103 | HINSTANCE wxhInstance = 0; | |
104 | MSG s_currentMsg; | |
105 | wxApp *wxTheApp = NULL; | |
106 | ||
107 | // FIXME why not const? and not static? | |
108 | ||
109 | // NB: all "NoRedraw" classes must have the same names as the "normal" classes | |
110 | // with NR suffix - wxWindow::MSWCreate() supposes this | |
111 | wxChar wxFrameClassName[] = wxT("wxFrameClass"); | |
112 | wxChar wxFrameClassNameNoRedraw[] = wxT("wxFrameClassNR"); | |
113 | wxChar wxMDIFrameClassName[] = wxT("wxMDIFrameClass"); | |
114 | wxChar wxMDIFrameClassNameNoRedraw[] = wxT("wxMDIFrameClassNR"); | |
115 | wxChar wxMDIChildFrameClassName[] = wxT("wxMDIChildFrameClass"); | |
116 | wxChar wxMDIChildFrameClassNameNoRedraw[] = wxT("wxMDIChildFrameClassNR"); | |
117 | wxChar wxPanelClassName[] = wxT("wxPanelClass"); | |
118 | wxChar wxCanvasClassName[] = wxT("wxCanvasClass"); | |
119 | ||
120 | HICON wxSTD_FRAME_ICON = (HICON) NULL; | |
121 | HICON wxSTD_MDICHILDFRAME_ICON = (HICON) NULL; | |
122 | HICON wxSTD_MDIPARENTFRAME_ICON = (HICON) NULL; | |
123 | ||
124 | HICON wxDEFAULT_FRAME_ICON = (HICON) NULL; | |
125 | HICON wxDEFAULT_MDICHILDFRAME_ICON = (HICON) NULL; | |
126 | HICON wxDEFAULT_MDIPARENTFRAME_ICON = (HICON) NULL; | |
127 | ||
128 | HBRUSH wxDisableButtonBrush = (HBRUSH) 0; | |
129 | ||
130 | LRESULT WXDLLEXPORT APIENTRY wxWndProc(HWND, UINT, WPARAM, LPARAM); | |
131 | ||
132 | #if defined(__WIN95__) && !defined(__TWIN32__) | |
133 | #define wxUSE_RICHEDIT 1 | |
134 | #else | |
135 | #define wxUSE_RICHEDIT 0 | |
136 | #endif | |
137 | ||
138 | #if wxUSE_RICHEDIT | |
139 | static HINSTANCE gs_hRichEdit = (HINSTANCE) NULL; | |
140 | #endif | |
141 | ||
142 | // =========================================================================== | |
143 | // implementation | |
144 | // =========================================================================== | |
145 | ||
146 | // --------------------------------------------------------------------------- | |
147 | // wxApp | |
148 | // --------------------------------------------------------------------------- | |
149 | ||
150 | #if !USE_SHARED_LIBRARY | |
151 | IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler) | |
152 | ||
153 | BEGIN_EVENT_TABLE(wxApp, wxEvtHandler) | |
154 | EVT_IDLE(wxApp::OnIdle) | |
155 | EVT_END_SESSION(wxApp::OnEndSession) | |
156 | EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession) | |
157 | END_EVENT_TABLE() | |
158 | #endif | |
159 | ||
160 | //// Initialize | |
161 | bool wxApp::Initialize() | |
162 | { | |
163 | // Some people may wish to use this, but | |
164 | // probably it shouldn't be here by default. | |
165 | #ifdef __WXDEBUG__ | |
166 | // wxRedirectIOToConsole(); | |
167 | #endif | |
168 | ||
169 | wxBuffer = new wxChar[1500]; // FIXME | |
170 | ||
171 | wxClassInfo::InitializeClasses(); | |
172 | ||
173 | #if wxUSE_RESOURCES | |
174 | wxGetResource(wxT("wxWindows"), wxT("OsVersion"), &wxOsVersion); | |
175 | #endif | |
176 | ||
177 | #if wxUSE_THREADS | |
178 | wxPendingEventsLocker = new wxCriticalSection; | |
179 | #endif | |
180 | ||
181 | wxTheColourDatabase = new wxColourDatabase(wxKEY_STRING); | |
182 | wxTheColourDatabase->Initialize(); | |
183 | ||
184 | wxInitializeStockLists(); | |
185 | wxInitializeStockObjects(); | |
186 | ||
187 | #if wxUSE_WX_RESOURCES | |
188 | wxInitializeResourceSystem(); | |
189 | #endif | |
190 | ||
191 | wxBitmap::InitStandardHandlers(); | |
192 | ||
193 | #if defined(__WIN95__) | |
194 | InitCommonControls(); | |
195 | ||
196 | #if wxUSE_RICHEDIT | |
197 | gs_hRichEdit = LoadLibrary(wxT("RICHED32.DLL")); | |
198 | ||
199 | if (gs_hRichEdit == (HINSTANCE) NULL) | |
200 | { | |
201 | wxLogError(_("Could not initialise Rich Edit DLL")); | |
202 | } | |
203 | #endif // wxUSE_RICHEDIT | |
204 | ||
205 | #endif // __WIN95__ | |
206 | ||
207 | #if wxUSE_OLE | |
208 | ||
209 | #ifdef __WIN16__ | |
210 | // for OLE, enlarge message queue to be as large as possible | |
211 | int iMsg = 96; | |
212 | while (!SetMessageQueue(iMsg) && (iMsg -= 8)) | |
213 | ; | |
214 | #endif // Win16 | |
215 | // we need to initialize OLE library | |
216 | if ( FAILED(::OleInitialize(NULL)) ) | |
217 | wxLogError(_("Cannot initialize OLE")); | |
218 | #endif // wxUSE_OLE | |
219 | ||
220 | #if wxUSE_CTL3D | |
221 | if (!Ctl3dRegister(wxhInstance)) | |
222 | wxLogError(wxT("Cannot register CTL3D")); | |
223 | ||
224 | Ctl3dAutoSubclass(wxhInstance); | |
225 | #endif | |
226 | ||
227 | g_globalCursor = new wxCursor; | |
228 | ||
229 | wxSTD_FRAME_ICON = LoadIcon(wxhInstance, wxT("wxSTD_FRAME")); | |
230 | wxSTD_MDIPARENTFRAME_ICON = LoadIcon(wxhInstance, wxT("wxSTD_MDIPARENTFRAME")); | |
231 | wxSTD_MDICHILDFRAME_ICON = LoadIcon(wxhInstance, wxT("wxSTD_MDICHILDFRAME")); | |
232 | ||
233 | wxDEFAULT_FRAME_ICON = LoadIcon(wxhInstance, wxT("wxDEFAULT_FRAME")); | |
234 | wxDEFAULT_MDIPARENTFRAME_ICON = LoadIcon(wxhInstance, wxT("wxDEFAULT_MDIPARENTFRAME")); | |
235 | wxDEFAULT_MDICHILDFRAME_ICON = LoadIcon(wxhInstance, wxT("wxDEFAULT_MDICHILDFRAME")); | |
236 | ||
237 | RegisterWindowClasses(); | |
238 | ||
239 | // Create the brush for disabling bitmap buttons | |
240 | ||
241 | LOGBRUSH lb; | |
242 | lb.lbStyle = BS_PATTERN; | |
243 | lb.lbHatch = (int)LoadBitmap( wxhInstance, wxT("wxDISABLE_BUTTON_BITMAP") ); | |
244 | if ( lb.lbHatch ) | |
245 | { | |
246 | wxDisableButtonBrush = ::CreateBrushIndirect( & lb ); | |
247 | ::DeleteObject( (HGDIOBJ)lb.lbHatch ); | |
248 | } | |
249 | //else: wxWindows resources are probably not linked in | |
250 | ||
251 | #if wxUSE_PENWINDOWS | |
252 | wxRegisterPenWin(); | |
253 | #endif | |
254 | ||
255 | wxWinHandleList = new wxList(wxKEY_INTEGER); | |
256 | ||
257 | // This is to foil optimizations in Visual C++ that throw out dummy.obj. | |
258 | // PLEASE DO NOT ALTER THIS. | |
259 | #if defined(__VISUALC__) && !defined(WXMAKINGDLL) | |
260 | extern char wxDummyChar; | |
261 | if (wxDummyChar) wxDummyChar++; | |
262 | #endif | |
263 | ||
264 | wxSetKeyboardHook(TRUE); | |
265 | ||
266 | wxModule::RegisterModules(); | |
267 | if (!wxModule::InitializeModules()) | |
268 | return FALSE; | |
269 | return TRUE; | |
270 | } | |
271 | ||
272 | // --------------------------------------------------------------------------- | |
273 | // RegisterWindowClasses | |
274 | // --------------------------------------------------------------------------- | |
275 | ||
276 | // TODO we should only register classes really used by the app. For this it | |
277 | // would be enough to just delay the class registration until an attempt | |
278 | // to create a window of this class is made. | |
279 | bool wxApp::RegisterWindowClasses() | |
280 | { | |
281 | WNDCLASS wndclass; | |
282 | ||
283 | // for each class we register one with CS_(V|H)REDRAW style and one | |
284 | // without for windows created with wxNO_FULL_REDRAW_ON_REPAINT flag | |
285 | static const long styleNormal = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS; | |
286 | static const long styleNoRedraw = CS_DBLCLKS; | |
287 | ||
288 | // the fields which are common to all classes | |
289 | wndclass.lpfnWndProc = (WNDPROC)wxWndProc; | |
290 | wndclass.cbClsExtra = 0; | |
291 | wndclass.cbWndExtra = sizeof( DWORD ); // VZ: what is this DWORD used for? | |
292 | wndclass.hInstance = wxhInstance; | |
293 | wndclass.hIcon = (HICON) NULL; | |
294 | wndclass.hCursor = ::LoadCursor((HINSTANCE)NULL, IDC_ARROW); | |
295 | wndclass.lpszMenuName = NULL; | |
296 | ||
297 | // Register the frame window class. | |
298 | wndclass.hbrBackground = (HBRUSH)(COLOR_APPWORKSPACE + 1); | |
299 | wndclass.lpszClassName = wxFrameClassName; | |
300 | wndclass.style = styleNormal; | |
301 | ||
302 | if ( !RegisterClass(&wndclass) ) | |
303 | { | |
304 | wxLogLastError("RegisterClass(frame)"); | |
305 | ||
306 | return FALSE; | |
307 | } | |
308 | ||
309 | // "no redraw" frame | |
310 | wndclass.lpszClassName = wxFrameClassNameNoRedraw; | |
311 | wndclass.style = styleNoRedraw; | |
312 | ||
313 | if ( !RegisterClass(&wndclass) ) | |
314 | { | |
315 | wxLogLastError("RegisterClass(no redraw frame)"); | |
316 | ||
317 | return FALSE; | |
318 | } | |
319 | ||
320 | // Register the MDI frame window class. | |
321 | wndclass.hbrBackground = (HBRUSH)NULL; // paint MDI frame ourselves | |
322 | wndclass.lpszClassName = wxMDIFrameClassName; | |
323 | wndclass.style = styleNormal; | |
324 | ||
325 | if ( !RegisterClass(&wndclass) ) | |
326 | { | |
327 | wxLogLastError("RegisterClass(MDI parent)"); | |
328 | ||
329 | return FALSE; | |
330 | } | |
331 | ||
332 | // "no redraw" MDI frame | |
333 | wndclass.lpszClassName = wxMDIFrameClassNameNoRedraw; | |
334 | wndclass.style = styleNoRedraw; | |
335 | ||
336 | if ( !RegisterClass(&wndclass) ) | |
337 | { | |
338 | wxLogLastError("RegisterClass(no redraw MDI parent frame)"); | |
339 | ||
340 | return FALSE; | |
341 | } | |
342 | ||
343 | // Register the MDI child frame window class. | |
344 | wndclass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); | |
345 | wndclass.lpszClassName = wxMDIChildFrameClassName; | |
346 | wndclass.style = styleNormal; | |
347 | ||
348 | if ( !RegisterClass(&wndclass) ) | |
349 | { | |
350 | wxLogLastError("RegisterClass(MDI child)"); | |
351 | ||
352 | return FALSE; | |
353 | } | |
354 | ||
355 | // "no redraw" MDI child frame | |
356 | wndclass.lpszClassName = wxMDIChildFrameClassNameNoRedraw; | |
357 | wndclass.style = styleNoRedraw; | |
358 | ||
359 | if ( !RegisterClass(&wndclass) ) | |
360 | { | |
361 | wxLogLastError("RegisterClass(no redraw MDI child)"); | |
362 | ||
363 | return FALSE; | |
364 | } | |
365 | ||
366 | // Register the panel window class. | |
367 | wndclass.hbrBackground = (HBRUSH) GetStockObject( LTGRAY_BRUSH ); | |
368 | wndclass.lpszClassName = wxPanelClassName; | |
369 | wndclass.style = styleNormal; | |
370 | ||
371 | if ( !RegisterClass(&wndclass) ) | |
372 | { | |
373 | wxLogLastError("RegisterClass(panel)"); | |
374 | ||
375 | return FALSE; | |
376 | } | |
377 | ||
378 | // Register the canvas and textsubwindow class name | |
379 | wndclass.hbrBackground = (HBRUSH)NULL; | |
380 | wndclass.lpszClassName = wxCanvasClassName; | |
381 | ||
382 | if ( !RegisterClass(&wndclass) ) | |
383 | { | |
384 | wxLogLastError("RegisterClass(canvas)"); | |
385 | ||
386 | return FALSE; | |
387 | } | |
388 | ||
389 | return TRUE; | |
390 | } | |
391 | ||
392 | // --------------------------------------------------------------------------- | |
393 | // Convert Windows to argc, argv style | |
394 | // --------------------------------------------------------------------------- | |
395 | ||
396 | void wxApp::ConvertToStandardCommandArgs(char* lpCmdLine) | |
397 | { | |
398 | wxStringList args; | |
399 | ||
400 | wxString cmdLine(lpCmdLine); | |
401 | int count = 0; | |
402 | ||
403 | // Get application name | |
404 | wxChar name[260]; // 260 is MAX_PATH value from windef.h | |
405 | ::GetModuleFileName(wxhInstance, name, WXSIZEOF(name)); | |
406 | ||
407 | args.Add(name); | |
408 | count++; | |
409 | ||
410 | wxStrcpy(name, wxFileNameFromPath(name)); | |
411 | wxStripExtension(name); | |
412 | wxTheApp->SetAppName(name); | |
413 | ||
414 | // Break up string | |
415 | // Treat strings enclosed in double-quotes as single arguments | |
416 | int i = 0; | |
417 | int len = cmdLine.Length(); | |
418 | while (i < len) | |
419 | { | |
420 | // Skip whitespace | |
421 | while ((i < len) && wxIsspace(cmdLine.GetChar(i))) | |
422 | i ++; | |
423 | ||
424 | if (i < len) | |
425 | { | |
426 | if (cmdLine.GetChar(i) == wxT('"')) // We found the start of a string | |
427 | { | |
428 | i ++; | |
429 | int first = i; | |
430 | while ((i < len) && (cmdLine.GetChar(i) != wxT('"'))) | |
431 | i ++; | |
432 | ||
433 | wxString arg(cmdLine.Mid(first, (i - first))); | |
434 | ||
435 | args.Add(arg); | |
436 | count ++; | |
437 | ||
438 | if (i < len) | |
439 | i ++; // Skip past 2nd quote | |
440 | } | |
441 | else // Unquoted argument | |
442 | { | |
443 | int first = i; | |
444 | while ((i < len) && !wxIsspace(cmdLine.GetChar(i))) | |
445 | i ++; | |
446 | ||
447 | wxString arg(cmdLine.Mid(first, (i - first))); | |
448 | ||
449 | args.Add(arg); | |
450 | count ++; | |
451 | } | |
452 | } | |
453 | } | |
454 | ||
455 | wxTheApp->argv = new wxChar*[count + 1]; | |
456 | for (i = 0; i < count; i++) | |
457 | { | |
458 | wxString arg(args[i]); | |
459 | wxTheApp->argv[i] = copystring((const wxChar*)arg); | |
460 | } | |
461 | wxTheApp->argv[count] = NULL; // argv[] is a NULL-terminated list | |
462 | wxTheApp->argc = count; | |
463 | } | |
464 | ||
465 | //// Cleans up any wxWindows internal structures left lying around | |
466 | ||
467 | void wxApp::CleanUp() | |
468 | { | |
469 | //// COMMON CLEANUP | |
470 | ||
471 | #if wxUSE_LOG | |
472 | // flush the logged messages if any and install a 'safer' log target: the | |
473 | // default one (wxLogGui) can't be used after the resources are freed just | |
474 | // below and the user suppliedo ne might be even more unsafe (using any | |
475 | // wxWindows GUI function is unsafe starting from now) | |
476 | wxLog::DontCreateOnDemand(); | |
477 | ||
478 | // this will flush the old messages if any | |
479 | delete wxLog::SetActiveTarget(new wxLogStderr); | |
480 | #endif // wxUSE_LOG | |
481 | ||
482 | // One last chance for pending objects to be cleaned up | |
483 | wxTheApp->DeletePendingObjects(); | |
484 | ||
485 | wxModule::CleanUpModules(); | |
486 | ||
487 | #if wxUSE_WX_RESOURCES | |
488 | wxCleanUpResourceSystem(); | |
489 | ||
490 | // wxDefaultResourceTable->ClearTable(); | |
491 | #endif | |
492 | ||
493 | // Indicate that the cursor can be freed, so that cursor won't be deleted | |
494 | // by deleting the bitmap list before g_globalCursor goes out of scope | |
495 | // (double deletion of the cursor). | |
496 | wxSetCursor(wxNullCursor); | |
497 | delete g_globalCursor; | |
498 | g_globalCursor = NULL; | |
499 | ||
500 | wxDeleteStockObjects(); | |
501 | ||
502 | // Destroy all GDI lists, etc. | |
503 | wxDeleteStockLists(); | |
504 | ||
505 | delete wxTheColourDatabase; | |
506 | wxTheColourDatabase = NULL; | |
507 | ||
508 | wxBitmap::CleanUpHandlers(); | |
509 | ||
510 | delete[] wxBuffer; | |
511 | wxBuffer = NULL; | |
512 | ||
513 | //// WINDOWS-SPECIFIC CLEANUP | |
514 | ||
515 | wxSetKeyboardHook(FALSE); | |
516 | ||
517 | #ifdef __WIN95__ | |
518 | ||
519 | #if wxUSE_RICHEDIT | |
520 | if (gs_hRichEdit != (HINSTANCE) NULL) | |
521 | FreeLibrary(gs_hRichEdit); | |
522 | #endif | |
523 | ||
524 | #endif | |
525 | ||
526 | #if wxUSE_PENWINDOWS | |
527 | wxCleanUpPenWin(); | |
528 | #endif | |
529 | ||
530 | if (wxSTD_FRAME_ICON) | |
531 | DestroyIcon(wxSTD_FRAME_ICON); | |
532 | if (wxSTD_MDICHILDFRAME_ICON) | |
533 | DestroyIcon(wxSTD_MDICHILDFRAME_ICON); | |
534 | if (wxSTD_MDIPARENTFRAME_ICON) | |
535 | DestroyIcon(wxSTD_MDIPARENTFRAME_ICON); | |
536 | ||
537 | if (wxDEFAULT_FRAME_ICON) | |
538 | DestroyIcon(wxDEFAULT_FRAME_ICON); | |
539 | if (wxDEFAULT_MDICHILDFRAME_ICON) | |
540 | DestroyIcon(wxDEFAULT_MDICHILDFRAME_ICON); | |
541 | if (wxDEFAULT_MDIPARENTFRAME_ICON) | |
542 | DestroyIcon(wxDEFAULT_MDIPARENTFRAME_ICON); | |
543 | ||
544 | if ( wxDisableButtonBrush ) | |
545 | ::DeleteObject( wxDisableButtonBrush ); | |
546 | ||
547 | #if wxUSE_OLE | |
548 | ::OleUninitialize(); | |
549 | #endif | |
550 | ||
551 | #if wxUSE_CTL3D | |
552 | Ctl3dUnregister(wxhInstance); | |
553 | #endif | |
554 | ||
555 | if (wxWinHandleList) | |
556 | delete wxWinHandleList; | |
557 | ||
558 | // GL: I'm annoyed ... I don't know where to put this and I don't want to | |
559 | // create a module for that as it's part of the core. | |
560 | delete wxPendingEvents; | |
561 | #if wxUSE_THREADS | |
562 | delete wxPendingEventsLocker; | |
563 | // If we don't do the following, we get an apparent memory leak. | |
564 | ((wxEvtHandler&) wxDefaultValidator).ClearEventLocker(); | |
565 | #endif | |
566 | ||
567 | wxClassInfo::CleanUpClasses(); | |
568 | ||
569 | delete wxTheApp; | |
570 | wxTheApp = NULL; | |
571 | ||
572 | #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT | |
573 | // At this point we want to check if there are any memory | |
574 | // blocks that aren't part of the wxDebugContext itself, | |
575 | // as a special case. Then when dumping we need to ignore | |
576 | // wxDebugContext, too. | |
577 | if (wxDebugContext::CountObjectsLeft(TRUE) > 0) | |
578 | { | |
579 | wxLogDebug(wxT("There were memory leaks.")); | |
580 | wxDebugContext::Dump(); | |
581 | wxDebugContext::PrintStatistics(); | |
582 | } | |
583 | // wxDebugContext::SetStream(NULL, NULL); | |
584 | #endif | |
585 | ||
586 | #if wxUSE_LOG | |
587 | // do it as the very last thing because everything else can log messages | |
588 | delete wxLog::SetActiveTarget(NULL); | |
589 | #endif // wxUSE_LOG | |
590 | } | |
591 | ||
592 | #if !defined(_WINDLL) || (defined(_WINDLL) && defined(WXMAKINGDLL)) | |
593 | ||
594 | // temporarily disable this warning which would be generated in release builds | |
595 | // because of __try | |
596 | #ifdef __VISUALC__ | |
597 | #pragma warning(disable: 4715) // not all control paths return a value | |
598 | #endif // Visual C++ | |
599 | ||
600 | //// Main wxWindows entry point | |
601 | int wxEntry(WXHINSTANCE hInstance, | |
602 | WXHINSTANCE WXUNUSED(hPrevInstance), | |
603 | char *lpCmdLine, | |
604 | int nCmdShow, | |
605 | bool enterLoop) | |
606 | { | |
607 | // do check for memory leaks on program exit | |
608 | // (another useful flag is _CRTDBG_DELAY_FREE_MEM_DF which doesn't free | |
609 | // deallocated memory which may be used to simulate low-memory condition) | |
610 | wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF); | |
611 | ||
612 | // take everything into a try-except block in release build | |
613 | // FIXME other compilers must support Win32 SEH (structured exception | |
614 | // handling) too, just find the appropriate keyword in their docs! | |
615 | // Please note that it's _not_ the same as C++ exceptions! | |
616 | #if !defined(__WXDEBUG__) && defined(__VISUALC__) | |
617 | #define CATCH_PROGRAM_EXCEPTIONS | |
618 | ||
619 | __try { | |
620 | #else | |
621 | #undef CATCH_PROGRAM_EXCEPTIONS | |
622 | #endif | |
623 | ||
624 | wxhInstance = (HINSTANCE) hInstance; | |
625 | ||
626 | if (!wxApp::Initialize()) | |
627 | return 0; | |
628 | ||
629 | // create the application object or ensure that one already exists | |
630 | if (!wxTheApp) | |
631 | { | |
632 | // The app may have declared a global application object, but we recommend | |
633 | // the IMPLEMENT_APP macro is used instead, which sets an initializer | |
634 | // function for delayed, dynamic app object construction. | |
635 | wxCHECK_MSG( wxApp::GetInitializerFunction(), 0, | |
636 | wxT("No initializer - use IMPLEMENT_APP macro.") ); | |
637 | ||
638 | wxTheApp = (*wxApp::GetInitializerFunction()) (); | |
639 | } | |
640 | ||
641 | wxCHECK_MSG( wxTheApp, 0, wxT("You have to define an instance of wxApp!") ); | |
642 | ||
643 | // save the WinMain() parameters | |
644 | wxTheApp->ConvertToStandardCommandArgs(lpCmdLine); | |
645 | wxTheApp->m_nCmdShow = nCmdShow; | |
646 | ||
647 | // GUI-specific initialisation. In fact on Windows we don't have any, | |
648 | // but this call is provided for compatibility across platforms. | |
649 | wxTheApp->OnInitGui(); | |
650 | ||
651 | // We really don't want timestamps by default, because it means | |
652 | // we can't simply double-click on the error message and get to that | |
653 | // line in the source. So VC++ at least, let's have a sensible default. | |
654 | #ifdef __VISUALC__ | |
655 | wxLog::SetTimestamp(NULL); | |
656 | #endif | |
657 | ||
658 | int retValue = 0; | |
659 | ||
660 | if ( wxTheApp->OnInit() ) | |
661 | { | |
662 | if ( enterLoop ) | |
663 | { | |
664 | retValue = wxTheApp->OnRun(); | |
665 | } | |
666 | else | |
667 | // We want to initialize, but not run or exit immediately. | |
668 | return 1; | |
669 | } | |
670 | //else: app initialization failed, so we skipped OnRun() | |
671 | ||
672 | wxWindow *topWindow = wxTheApp->GetTopWindow(); | |
673 | if ( topWindow ) | |
674 | { | |
675 | // Forcibly delete the window. | |
676 | if ( topWindow->IsKindOf(CLASSINFO(wxFrame)) || | |
677 | topWindow->IsKindOf(CLASSINFO(wxDialog)) ) | |
678 | { | |
679 | topWindow->Close(TRUE); | |
680 | wxTheApp->DeletePendingObjects(); | |
681 | } | |
682 | else | |
683 | { | |
684 | delete topWindow; | |
685 | wxTheApp->SetTopWindow(NULL); | |
686 | } | |
687 | } | |
688 | ||
689 | wxTheApp->OnExit(); | |
690 | ||
691 | wxApp::CleanUp(); | |
692 | ||
693 | return retValue; | |
694 | ||
695 | #ifdef CATCH_PROGRAM_EXCEPTIONS | |
696 | } | |
697 | __except ( EXCEPTION_EXECUTE_HANDLER ) { | |
698 | /* | |
699 | if ( wxTheApp ) | |
700 | wxTheApp->OnFatalException(); | |
701 | */ | |
702 | ||
703 | // using wxLog would be unsafe here | |
704 | ::MessageBox(NULL, | |
705 | _("Unrecoverable program error detected: " | |
706 | " the application will terminate."), | |
707 | _("Fatal Error"), | |
708 | MB_APPLMODAL | MB_ICONSTOP | MB_OK); | |
709 | ||
710 | ::ExitProcess(3); // the same exit code as abort() | |
711 | ||
712 | // NOTREACHED | |
713 | } | |
714 | #endif // CATCH_PROGRAM_EXCEPTIONS | |
715 | } | |
716 | ||
717 | // restore warning state | |
718 | #ifdef __VISUALC__ | |
719 | #pragma warning(default: 4715) // not all control paths return a value | |
720 | #endif // Visual C++ | |
721 | ||
722 | #else /* _WINDLL */ | |
723 | ||
724 | //// Entry point for DLLs | |
725 | ||
726 | int wxEntry(WXHINSTANCE hInstance) | |
727 | { | |
728 | wxhInstance = (HINSTANCE) hInstance; | |
729 | wxApp::Initialize(); | |
730 | ||
731 | // The app may have declared a global application object, but we recommend | |
732 | // the IMPLEMENT_APP macro is used instead, which sets an initializer function | |
733 | // for delayed, dynamic app object construction. | |
734 | if (!wxTheApp) | |
735 | { | |
736 | wxCHECK_MSG( wxApp::GetInitializerFunction(), 0, | |
737 | "No initializer - use IMPLEMENT_APP macro." ); | |
738 | ||
739 | wxTheApp = (* wxApp::GetInitializerFunction()) (); | |
740 | } | |
741 | ||
742 | wxCHECK_MSG( wxTheApp, 0, "You have to define an instance of wxApp!" ); | |
743 | ||
744 | wxTheApp->argc = 0; | |
745 | wxTheApp->argv = NULL; | |
746 | ||
747 | wxTheApp->OnInitGui(); | |
748 | ||
749 | wxTheApp->OnInit(); | |
750 | ||
751 | wxWindow *topWindow = wxTheApp->GetTopWindow(); | |
752 | if ( topWindow && topWindow->GetHWND()) | |
753 | { | |
754 | topWindow->Show(TRUE); | |
755 | } | |
756 | ||
757 | return 1; | |
758 | } | |
759 | #endif // _WINDLL | |
760 | ||
761 | //// Static member initialization | |
762 | ||
763 | wxAppInitializerFunction wxAppBase::m_appInitFn = (wxAppInitializerFunction) NULL; | |
764 | ||
765 | wxApp::wxApp() | |
766 | { | |
767 | m_topWindow = NULL; | |
768 | wxTheApp = this; | |
769 | m_wantDebugOutput = TRUE; | |
770 | ||
771 | argc = 0; | |
772 | argv = NULL; | |
773 | m_printMode = wxPRINT_WINDOWS; | |
774 | m_exitOnFrameDelete = TRUE; | |
775 | m_auto3D = TRUE; | |
776 | } | |
777 | ||
778 | wxApp::~wxApp() | |
779 | { | |
780 | // Delete command-line args | |
781 | int i; | |
782 | for (i = 0; i < argc; i++) | |
783 | { | |
784 | delete[] argv[i]; | |
785 | } | |
786 | delete[] argv; | |
787 | } | |
788 | ||
789 | bool wxApp::Initialized() | |
790 | { | |
791 | #ifndef _WINDLL | |
792 | if (GetTopWindow()) | |
793 | return TRUE; | |
794 | else | |
795 | return FALSE; | |
796 | #endif | |
797 | #ifdef _WINDLL // Assume initialized if DLL (no way of telling) | |
798 | return TRUE; | |
799 | #endif | |
800 | } | |
801 | ||
802 | /* | |
803 | * Get and process a message, returning FALSE if WM_QUIT | |
804 | * received (and also set the flag telling the app to exit the main loop) | |
805 | * | |
806 | */ | |
807 | bool wxApp::DoMessage() | |
808 | { | |
809 | BOOL rc = ::GetMessage(&s_currentMsg, (HWND) NULL, 0, 0); | |
810 | if ( rc == 0 ) | |
811 | { | |
812 | // got WM_QUIT | |
813 | m_keepGoing = FALSE; | |
814 | ||
815 | return FALSE; | |
816 | } | |
817 | else if ( rc == -1 ) | |
818 | { | |
819 | // should never happen, but let's test for it nevertheless | |
820 | wxLogLastError("GetMessage"); | |
821 | } | |
822 | else | |
823 | { | |
824 | #if wxUSE_THREADS | |
825 | wxASSERT_MSG( wxThread::IsMain(), | |
826 | wxT("only the main thread can process Windows messages") ); | |
827 | ||
828 | static bool s_hadGuiLock = TRUE; | |
829 | static wxMsgArray s_aSavedMessages; | |
830 | ||
831 | // if a secondary thread owns is doing GUI calls, save all messages for | |
832 | // later processing - we can't process them right now because it will | |
833 | // lead to recursive library calls (and we're not reentrant) | |
834 | if ( !wxGuiOwnedByMainThread() ) | |
835 | { | |
836 | s_hadGuiLock = FALSE; | |
837 | ||
838 | // leave out WM_COMMAND messages: too dangerous, sometimes | |
839 | // the message will be processed twice | |
840 | if ( !wxIsWaitingForThread() || | |
841 | s_currentMsg.message != WM_COMMAND ) | |
842 | { | |
843 | s_aSavedMessages.Add(s_currentMsg); | |
844 | } | |
845 | ||
846 | return TRUE; | |
847 | } | |
848 | else | |
849 | { | |
850 | // have we just regained the GUI lock? if so, post all of the saved | |
851 | // messages | |
852 | // | |
853 | // FIXME of course, it's not _exactly_ the same as processing the | |
854 | // messages normally - expect some things to break... | |
855 | if ( !s_hadGuiLock ) | |
856 | { | |
857 | s_hadGuiLock = TRUE; | |
858 | ||
859 | size_t count = s_aSavedMessages.Count(); | |
860 | for ( size_t n = 0; n < count; n++ ) | |
861 | { | |
862 | MSG& msg = s_aSavedMessages[n]; | |
863 | ||
864 | if ( !ProcessMessage((WXMSG *)&msg) ) | |
865 | { | |
866 | ::TranslateMessage(&msg); | |
867 | ::DispatchMessage(&msg); | |
868 | } | |
869 | } | |
870 | ||
871 | s_aSavedMessages.Empty(); | |
872 | } | |
873 | } | |
874 | #endif // wxUSE_THREADS | |
875 | ||
876 | // Process the message | |
877 | if ( !ProcessMessage((WXMSG *)&s_currentMsg) ) | |
878 | { | |
879 | ::TranslateMessage(&s_currentMsg); | |
880 | ::DispatchMessage(&s_currentMsg); | |
881 | } | |
882 | } | |
883 | ||
884 | return TRUE; | |
885 | } | |
886 | ||
887 | /* | |
888 | * Keep trying to process messages until WM_QUIT | |
889 | * received. | |
890 | * | |
891 | * If there are messages to be processed, they will all be | |
892 | * processed and OnIdle will not be called. | |
893 | * When there are no more messages, OnIdle is called. | |
894 | * If OnIdle requests more time, | |
895 | * it will be repeatedly called so long as there are no pending messages. | |
896 | * A 'feature' of this is that once OnIdle has decided that no more processing | |
897 | * is required, then it won't get processing time until further messages | |
898 | * are processed (it'll sit in DoMessage). | |
899 | */ | |
900 | ||
901 | int wxApp::MainLoop() | |
902 | { | |
903 | m_keepGoing = TRUE; | |
904 | ||
905 | while ( m_keepGoing ) | |
906 | { | |
907 | #if wxUSE_THREADS | |
908 | wxMutexGuiLeaveOrEnter(); | |
909 | #endif // wxUSE_THREADS | |
910 | ||
911 | while ( !::PeekMessage(&s_currentMsg, 0, 0, 0, PM_NOREMOVE) && | |
912 | ProcessIdle() ) | |
913 | { | |
914 | } | |
915 | ||
916 | ||
917 | DoMessage(); | |
918 | } | |
919 | ||
920 | return s_currentMsg.wParam; | |
921 | } | |
922 | ||
923 | // Returns TRUE if more time is needed. | |
924 | bool wxApp::ProcessIdle() | |
925 | { | |
926 | wxIdleEvent event; | |
927 | event.SetEventObject(this); | |
928 | ProcessEvent(event); | |
929 | ||
930 | return event.MoreRequested(); | |
931 | } | |
932 | ||
933 | void wxApp::ExitMainLoop() | |
934 | { | |
935 | m_keepGoing = FALSE; | |
936 | } | |
937 | ||
938 | bool wxApp::Pending() | |
939 | { | |
940 | return (::PeekMessage(&s_currentMsg, 0, 0, 0, PM_NOREMOVE) != 0); | |
941 | } | |
942 | ||
943 | void wxApp::Dispatch() | |
944 | { | |
945 | DoMessage(); | |
946 | } | |
947 | ||
948 | /* | |
949 | * Give all windows a chance to preprocess | |
950 | * the message. Some may have accelerator tables, or have | |
951 | * MDI complications. | |
952 | */ | |
953 | ||
954 | bool wxApp::ProcessMessage(WXMSG *wxmsg) | |
955 | { | |
956 | MSG *msg = (MSG *)wxmsg; | |
957 | HWND hWnd = msg->hwnd; | |
958 | wxWindow *wndThis = wxFindWinFromHandle((WXHWND)hWnd), *wnd; | |
959 | ||
960 | // for some composite controls (like a combobox), wndThis might be NULL | |
961 | // because the subcontrol is not a wxWindow, but only the control itself | |
962 | // is - try to catch this case | |
963 | while ( hWnd && !wndThis ) | |
964 | { | |
965 | hWnd = ::GetParent(hWnd); | |
966 | wndThis = wxFindWinFromHandle((WXHWND)hWnd); | |
967 | } | |
968 | ||
969 | // Try translations first; find the youngest window with | |
970 | // a translation table. | |
971 | for ( wnd = wndThis; wnd; wnd = wnd->GetParent() ) | |
972 | { | |
973 | if ( wnd->MSWTranslateMessage(wxmsg) ) | |
974 | return TRUE; | |
975 | } | |
976 | ||
977 | // Anyone for a non-translation message? Try youngest descendants first. | |
978 | for ( wnd = wndThis; wnd; wnd = wnd->GetParent() ) | |
979 | { | |
980 | if ( wnd->MSWProcessMessage(wxmsg) ) | |
981 | return TRUE; | |
982 | } | |
983 | ||
984 | return FALSE; | |
985 | } | |
986 | ||
987 | void wxApp::OnIdle(wxIdleEvent& event) | |
988 | { | |
989 | static bool s_inOnIdle = FALSE; | |
990 | ||
991 | // Avoid recursion (via ProcessEvent default case) | |
992 | if ( s_inOnIdle ) | |
993 | return; | |
994 | ||
995 | s_inOnIdle = TRUE; | |
996 | ||
997 | // 'Garbage' collection of windows deleted with Close(). | |
998 | DeletePendingObjects(); | |
999 | ||
1000 | #if wxUSE_LOG | |
1001 | // flush the logged messages if any | |
1002 | wxLog *pLog = wxLog::GetActiveTarget(); | |
1003 | if ( pLog != NULL && pLog->HasPendingMessages() ) | |
1004 | pLog->Flush(); | |
1005 | #endif // wxUSE_LOG | |
1006 | ||
1007 | // Send OnIdle events to all windows | |
1008 | if ( SendIdleEvents() ) | |
1009 | { | |
1010 | // SendIdleEvents() returns TRUE if at least one window requested more | |
1011 | // idle events | |
1012 | event.RequestMore(TRUE); | |
1013 | } | |
1014 | ||
1015 | // If they are pending events, we must process them: pending events are | |
1016 | // either events to the threads other than main or events posted with | |
1017 | // wxPostEvent() functions | |
1018 | ProcessPendingEvents(); | |
1019 | ||
1020 | s_inOnIdle = FALSE; | |
1021 | } | |
1022 | ||
1023 | // Send idle event to all top-level windows | |
1024 | bool wxApp::SendIdleEvents() | |
1025 | { | |
1026 | bool needMore = FALSE; | |
1027 | ||
1028 | wxWindowList::Node* node = wxTopLevelWindows.GetFirst(); | |
1029 | while (node) | |
1030 | { | |
1031 | wxWindow* win = node->GetData(); | |
1032 | if (SendIdleEvents(win)) | |
1033 | needMore = TRUE; | |
1034 | node = node->GetNext(); | |
1035 | } | |
1036 | ||
1037 | return needMore; | |
1038 | } | |
1039 | ||
1040 | // Send idle event to window and all subwindows | |
1041 | bool wxApp::SendIdleEvents(wxWindow* win) | |
1042 | { | |
1043 | bool needMore = FALSE; | |
1044 | ||
1045 | wxIdleEvent event; | |
1046 | event.SetEventObject(win); | |
1047 | win->GetEventHandler()->ProcessEvent(event); | |
1048 | ||
1049 | if (event.MoreRequested()) | |
1050 | needMore = TRUE; | |
1051 | ||
1052 | wxNode* node = win->GetChildren().First(); | |
1053 | while (node) | |
1054 | { | |
1055 | wxWindow* win = (wxWindow*) node->Data(); | |
1056 | if (SendIdleEvents(win)) | |
1057 | needMore = TRUE; | |
1058 | ||
1059 | node = node->Next(); | |
1060 | } | |
1061 | return needMore; | |
1062 | } | |
1063 | ||
1064 | void wxApp::DeletePendingObjects() | |
1065 | { | |
1066 | wxNode *node = wxPendingDelete.First(); | |
1067 | while (node) | |
1068 | { | |
1069 | wxObject *obj = (wxObject *)node->Data(); | |
1070 | ||
1071 | delete obj; | |
1072 | ||
1073 | if (wxPendingDelete.Member(obj)) | |
1074 | delete node; | |
1075 | ||
1076 | // Deleting one object may have deleted other pending | |
1077 | // objects, so start from beginning of list again. | |
1078 | node = wxPendingDelete.First(); | |
1079 | } | |
1080 | } | |
1081 | ||
1082 | void wxApp::OnEndSession(wxCloseEvent& WXUNUSED(event)) | |
1083 | { | |
1084 | if (GetTopWindow()) | |
1085 | GetTopWindow()->Close(TRUE); | |
1086 | } | |
1087 | ||
1088 | // Default behaviour: close the application with prompts. The | |
1089 | // user can veto the close, and therefore the end session. | |
1090 | void wxApp::OnQueryEndSession(wxCloseEvent& event) | |
1091 | { | |
1092 | if (GetTopWindow()) | |
1093 | { | |
1094 | if (!GetTopWindow()->Close(!event.CanVeto())) | |
1095 | event.Veto(TRUE); | |
1096 | } | |
1097 | } | |
1098 | ||
1099 | int wxApp::GetComCtl32Version() const | |
1100 | { | |
1101 | // have we loaded COMCTL32 yet? | |
1102 | HMODULE theModule = ::GetModuleHandle(wxT("COMCTL32")); | |
1103 | int version = 0; | |
1104 | ||
1105 | // if so, then we can check for the version | |
1106 | if (theModule) | |
1107 | { | |
1108 | // InitCommonControlsEx is unique to 4.7 and later | |
1109 | FARPROC theProc = ::GetProcAddress(theModule, "InitCommonControlsEx"); | |
1110 | ||
1111 | if (! theProc) | |
1112 | { // not found, must be 4.00 | |
1113 | version = 400; | |
1114 | } | |
1115 | else | |
1116 | { | |
1117 | // The following symbol are unique to 4.71 | |
1118 | // DllInstall | |
1119 | // FlatSB_EnableScrollBar FlatSB_GetScrollInfo FlatSB_GetScrollPos | |
1120 | // FlatSB_GetScrollProp FlatSB_GetScrollRange FlatSB_SetScrollInfo | |
1121 | // FlatSB_SetScrollPos FlatSB_SetScrollProp FlatSB_SetScrollRange | |
1122 | // FlatSB_ShowScrollBar | |
1123 | // _DrawIndirectImageList _DuplicateImageList | |
1124 | // InitializeFlatSB | |
1125 | // UninitializeFlatSB | |
1126 | // we could check for any of these - I chose DllInstall | |
1127 | FARPROC theProc = ::GetProcAddress(theModule, "DllInstall"); | |
1128 | if (! theProc) | |
1129 | { | |
1130 | // not found, must be 4.70 | |
1131 | version = 470; | |
1132 | } | |
1133 | else | |
1134 | { // found, must be 4.71 | |
1135 | version = 471; | |
1136 | } | |
1137 | } | |
1138 | } | |
1139 | return version; | |
1140 | } | |
1141 | ||
1142 | void wxExit() | |
1143 | { | |
1144 | wxLogError(_("Fatal error: exiting")); | |
1145 | ||
1146 | wxApp::CleanUp(); | |
1147 | } | |
1148 | ||
1149 | // Yield to incoming messages | |
1150 | bool wxYield() | |
1151 | { | |
1152 | // we don't want to process WM_QUIT from here - it should be processed in | |
1153 | // the main event loop in order to stop it | |
1154 | ||
1155 | MSG msg; | |
1156 | while ( PeekMessage(&msg, (HWND)0, 0, 0, PM_NOREMOVE) && | |
1157 | msg.message != WM_QUIT ) | |
1158 | { | |
1159 | if ( !wxTheApp->DoMessage() ) | |
1160 | break; | |
1161 | } | |
1162 | ||
1163 | // If they are pending events, we must process them. | |
1164 | wxTheApp->ProcessPendingEvents(); | |
1165 | ||
1166 | return TRUE; | |
1167 | } | |
1168 | ||
1169 | wxIcon | |
1170 | wxApp::GetStdIcon(int which) const | |
1171 | { | |
1172 | switch(which) | |
1173 | { | |
1174 | case wxICON_INFORMATION: | |
1175 | return wxIcon("wxICON_INFO"); | |
1176 | ||
1177 | case wxICON_QUESTION: | |
1178 | return wxIcon("wxICON_QUESTION"); | |
1179 | ||
1180 | case wxICON_EXCLAMATION: | |
1181 | return wxIcon("wxICON_WARNING"); | |
1182 | ||
1183 | default: | |
1184 | wxFAIL_MSG(wxT("requested non existent standard icon")); | |
1185 | // still fall through | |
1186 | ||
1187 | case wxICON_HAND: | |
1188 | return wxIcon("wxICON_ERROR"); | |
1189 | } | |
1190 | } | |
1191 | ||
1192 | ||
1193 | HINSTANCE wxGetInstance() | |
1194 | { | |
1195 | return wxhInstance; | |
1196 | } | |
1197 | ||
1198 | void wxSetInstance(HINSTANCE hInst) | |
1199 | { | |
1200 | wxhInstance = hInst; | |
1201 | } | |
1202 | ||
1203 | // For some reason, with MSVC++ 1.5, WinMain isn't linked in properly | |
1204 | // if in a separate file. So include it here to ensure it's linked. | |
1205 | #if (defined(__VISUALC__) && !defined(__WIN32__)) || (defined(__GNUWIN32__) && !defined(__TWIN32__)) | |
1206 | #include "main.cpp" | |
1207 | #endif |