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