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