]> git.saurik.com Git - wxWidgets.git/blame - src/msw/app.cpp
Change log update
[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$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
e5c0b16a
VZ
12// ===========================================================================
13// declarations
14// ===========================================================================
15
16// ---------------------------------------------------------------------------
17// headers
18// ---------------------------------------------------------------------------
19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
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
e2478fde 51#include "wx/apptrait.h"
7104f65d 52#include "wx/filename.h"
2bda0e17 53#include "wx/module.h"
9fc6c21c 54#include "wx/dynlib.h"
4bf78aae 55
4286a5b5 56#include "wx/msw/private.h"
360ae33f 57#include "wx/msw/ole/oleutils.h"
4286a5b5 58
8614c467
VZ
59#if wxUSE_TOOLTIPS
60 #include "wx/tooltip.h"
61#endif // wxUSE_TOOLTIPS
62
c42404a5
VZ
63// OLE is used for drag-and-drop, clipboard, OLE Automation..., but some
64// compilers don't support it (missing headers, libs, ...)
2bdf7154 65#if defined(__GNUWIN32_OLD__) || defined(__SYMANTEC__) || defined(__SALFORDC__)
e5c0b16a
VZ
66 #undef wxUSE_OLE
67
68 #define wxUSE_OLE 0
69#endif // broken compilers
70
afafd942
JS
71#if defined(__POCKETPC__) || defined(__SMARTPHONE__)
72#include <aygshell.h>
73#endif
74
e5c0b16a 75#if wxUSE_OLE
6e0d9d43 76 #include <ole2.h>
d05237ea 77#endif
ce3ed50d 78
2bda0e17 79#include <string.h>
a5e0e655 80#include <ctype.h>
2bda0e17 81
0d236fd0 82#include "wx/msw/wrapcctl.h"
bdc72a22 83
6046e57a
VZ
84// For MB_TASKMODAL
85#ifdef __WXWINCE__
86#include "wx/msw/wince/missing.h"
87#endif
88
238a6044
JS
89// For DLLVER_PLATFORM_WINDOWS
90#if (!defined(__MINGW32__) || wxCHECK_W32API_VERSION( 2, 0 )) && \
91 !defined(__CYGWIN__) && !defined(__DIGITALMARS__) && !defined(__WXWINCE__) && \
92 (!defined(_MSC_VER) || (_MSC_VER > 1100))
93 #include <shlwapi.h>
94#endif
95
e5c0b16a
VZ
96// ---------------------------------------------------------------------------
97// global variables
98// ---------------------------------------------------------------------------
99
cde9f08e 100extern wxList WXDLLEXPORT wxPendingDelete;
4676948b
JS
101
102#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2bda0e17 103extern void wxSetKeyboardHook(bool doIt);
04ef50df 104#endif
2bda0e17 105
193fe989
VZ
106// NB: all "NoRedraw" classes must have the same names as the "normal" classes
107// with NR suffix - wxWindow::MSWCreate() supposes this
46fa338b 108#ifdef __WXWINCE__
7a4d2469
RN
109WXDLLIMPEXP_CORE wxChar *wxCanvasClassName;
110WXDLLIMPEXP_CORE wxChar *wxCanvasClassNameNR;
46fa338b 111#else
7a4d2469
RN
112WXDLLIMPEXP_CORE const wxChar *wxCanvasClassName = wxT("wxWindowClass");
113WXDLLIMPEXP_CORE const wxChar *wxCanvasClassNameNR = wxT("wxWindowClassNR");
46fa338b 114#endif
7a4d2469
RN
115WXDLLIMPEXP_CORE const wxChar *wxMDIFrameClassName = wxT("wxMDIFrameClass");
116WXDLLIMPEXP_CORE const wxChar *wxMDIFrameClassNameNoRedraw = wxT("wxMDIFrameClassNR");
117WXDLLIMPEXP_CORE const wxChar *wxMDIChildFrameClassName = wxT("wxMDIChildFrameClass");
118WXDLLIMPEXP_CORE const wxChar *wxMDIChildFrameClassNameNoRedraw = wxT("wxMDIChildFrameClassNR");
2bda0e17 119
94826170
VZ
120// ----------------------------------------------------------------------------
121// private functions
122// ----------------------------------------------------------------------------
2bda0e17 123
94826170 124LRESULT WXDLLEXPORT APIENTRY wxWndProc(HWND, UINT, WPARAM, LPARAM);
3b415ba4 125
e5c0b16a 126// ===========================================================================
e2478fde
VZ
127// wxGUIAppTraits implementation
128// ===========================================================================
129
130// private class which we use to pass parameters from BeforeChildWaitLoop() to
131// AfterChildWaitLoop()
132struct ChildWaitLoopData
133{
134 ChildWaitLoopData(wxWindowDisabler *wd_, wxWindow *winActive_)
135 {
136 wd = wd_;
137 winActive = winActive_;
138 }
139
140 wxWindowDisabler *wd;
141 wxWindow *winActive;
142};
143
144void *wxGUIAppTraits::BeforeChildWaitLoop()
145{
146 /*
147 We use a dirty hack here to disable all application windows (which we
148 must do because otherwise the calls to wxYield() could lead to some very
149 unexpected reentrancies in the users code) but to avoid losing
150 focus/activation entirely when the child process terminates which would
151 happen if we simply disabled everything using wxWindowDisabler. Indeed,
152 remember that Windows will never activate a disabled window and when the
153 last childs window is closed and Windows looks for a window to activate
154 all our windows are still disabled. There is no way to enable them in
155 time because we don't know when the childs windows are going to be
156 closed, so the solution we use here is to keep one special tiny frame
157 enabled all the time. Then when the child terminates it will get
158 activated and when we close it below -- after reenabling all the other
159 windows! -- the previously active window becomes activated again and
160 everything is ok.
161 */
162 wxBeginBusyCursor();
163
164 // first disable all existing windows
165 wxWindowDisabler *wd = new wxWindowDisabler;
166
167 // then create an "invisible" frame: it has minimal size, is positioned
168 // (hopefully) outside the screen and doesn't appear on the taskbar
169 wxWindow *winActive = new wxFrame
170 (
171 wxTheApp->GetTopWindow(),
fda7962d
JS
172 wxID_ANY,
173 wxEmptyString,
e2478fde
VZ
174 wxPoint(32600, 32600),
175 wxSize(1, 1),
176 wxDEFAULT_FRAME_STYLE | wxFRAME_NO_TASKBAR
177 );
178 winActive->Show();
179
180 return new ChildWaitLoopData(wd, winActive);
181}
182
183void wxGUIAppTraits::AlwaysYield()
184{
185 wxYield();
186}
187
188void wxGUIAppTraits::AfterChildWaitLoop(void *dataOrig)
189{
190 wxEndBusyCursor();
191
0588f8d7 192 ChildWaitLoopData * const data = (ChildWaitLoopData *)dataOrig;
e2478fde
VZ
193
194 delete data->wd;
195
196 // finally delete the dummy frame and, as wd has been already destroyed and
197 // the other windows reenabled, the activation is going to return to the
198 // window which had had it before
199 data->winActive->Destroy();
51036b44
VZ
200
201 // also delete the temporary data object itself
202 delete data;
e2478fde
VZ
203}
204
205bool wxGUIAppTraits::DoMessageFromThreadWait()
206{
1bf77ee5
VZ
207 // we should return false only if the app should exit, i.e. only if
208 // Dispatch() determines that the main event loop should terminate
209 return !wxTheApp || wxTheApp->Dispatch();
e2478fde
VZ
210}
211
324899f6 212wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo()
a8eaaeb2 213{
1bf77ee5 214 static wxToolkitInfo info;
324899f6
VS
215 wxToolkitInfo& baseInfo = wxAppTraits::GetToolkitInfo();
216 info.versionMajor = baseInfo.versionMajor;
217 info.versionMinor = baseInfo.versionMinor;
218 info.os = baseInfo.os;
a8eaaeb2
VS
219 info.shortName = _T("msw");
220 info.name = _T("wxMSW");
221#ifdef __WXUNIVERSAL__
222 info.shortName << _T("univ");
223 info.name << _T("/wxUniversal");
224#endif
324899f6 225 return info;
a8eaaeb2
VS
226}
227
e2478fde
VZ
228// ===========================================================================
229// wxApp implementation
e5c0b16a 230// ===========================================================================
589f0e3e 231
94826170
VZ
232int wxApp::m_nCmdShow = SW_SHOWNORMAL;
233
e5c0b16a 234// ---------------------------------------------------------------------------
e2478fde 235// wxWin macros
e5c0b16a
VZ
236// ---------------------------------------------------------------------------
237
f6bcfd97 238IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler)
e5c0b16a 239
f6bcfd97
BP
240BEGIN_EVENT_TABLE(wxApp, wxEvtHandler)
241 EVT_IDLE(wxApp::OnIdle)
242 EVT_END_SESSION(wxApp::OnEndSession)
243 EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession)
244END_EVENT_TABLE()
e5c0b16a 245
94826170
VZ
246// class to ensure that wxAppBase::CleanUp() is called if our Initialize()
247// fails
248class wxCallBaseCleanup
249{
250public:
251 wxCallBaseCleanup(wxApp *app) : m_app(app) { }
252 ~wxCallBaseCleanup() { if ( m_app ) m_app->wxAppBase::CleanUp(); }
253
254 void Dismiss() { m_app = NULL; }
255
256private:
257 wxApp *m_app;
258};
259
e5c0b16a 260//// Initialize
05e2b077 261bool wxApp::Initialize(int& argc, wxChar **argv)
2bda0e17 262{
94826170
VZ
263 if ( !wxAppBase::Initialize(argc, argv) )
264 return false;
265
266 // ensure that base cleanup is done if we return too early
267 wxCallBaseCleanup callBaseCleanup(this);
268
46fa338b
RR
269#ifdef __WXWINCE__
270 wxString tmp = GetAppName();
271 tmp += wxT("ClassName");
272 wxCanvasClassName = wxStrdup( tmp.c_str() );
273 tmp += wxT("NR");
274 wxCanvasClassNameNR = wxStrdup( tmp.c_str() );
275 HWND hWnd = FindWindow( wxCanvasClassNameNR, NULL );
276 if (hWnd)
277 {
278 SetForegroundWindow( (HWND)(((DWORD)hWnd)|0x01) );
279 return false;
280 }
281#endif
282
04ef50df 283#if defined(__WIN95__) && !defined(__WXMICROWIN__)
a5e0e655 284 InitCommonControls();
e5c0b16a 285#endif // __WIN95__
2bda0e17 286
afafd942
JS
287#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
288 SHInitExtraControls();
289#endif
290
360ae33f 291 wxOleInitialize();
2bda0e17 292
aa0b7e1e 293 RegisterWindowClasses();
2bda0e17 294
aa0b7e1e 295#if wxUSE_PENWINDOWS
a5e0e655 296 wxRegisterPenWin();
aa0b7e1e 297#endif
2bda0e17 298
1bffa913 299 wxWinHandleHash = new wxWinHashTable(wxKEY_INTEGER, 100);
2bda0e17 300
4676948b 301#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
77c46f00 302 wxSetKeyboardHook(true);
04ef50df 303#endif
2bda0e17 304
94826170
VZ
305 callBaseCleanup.Dismiss();
306
307 return true;
2bda0e17
KB
308}
309
42e69d6b
VZ
310// ---------------------------------------------------------------------------
311// RegisterWindowClasses
312// ---------------------------------------------------------------------------
589f0e3e 313
b782f2e0
VZ
314// TODO we should only register classes really used by the app. For this it
315// would be enough to just delay the class registration until an attempt
316// to create a window of this class is made.
bb6290e3 317bool wxApp::RegisterWindowClasses()
2bda0e17 318{
42e69d6b 319 WNDCLASS wndclass;
03baf031 320 wxZeroMemory(wndclass);
e5c0b16a 321
193fe989
VZ
322 // for each class we register one with CS_(V|H)REDRAW style and one
323 // without for windows created with wxNO_FULL_REDRAW_ON_REPAINT flag
324 static const long styleNormal = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS;
325 static const long styleNoRedraw = CS_DBLCLKS;
326
42e69d6b 327 // the fields which are common to all classes
e5c0b16a 328 wndclass.lpfnWndProc = (WNDPROC)wxWndProc;
e5c0b16a 329 wndclass.hInstance = wxhInstance;
42e69d6b 330 wndclass.hCursor = ::LoadCursor((HINSTANCE)NULL, IDC_ARROW);
42e69d6b 331
b9691677
VZ
332 // register the class for all normal windows
333 wndclass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
03baf031 334 wndclass.lpszClassName = wxCanvasClassName;
b782f2e0 335 wndclass.style = styleNormal;
e5c0b16a 336
42e69d6b 337 if ( !RegisterClass(&wndclass) )
e5c0b16a 338 {
f6bcfd97 339 wxLogLastError(wxT("RegisterClass(frame)"));
e5c0b16a
VZ
340 }
341
193fe989 342 // "no redraw" frame
03baf031 343 wndclass.lpszClassName = wxCanvasClassNameNR;
193fe989
VZ
344 wndclass.style = styleNoRedraw;
345
346 if ( !RegisterClass(&wndclass) )
347 {
f6bcfd97 348 wxLogLastError(wxT("RegisterClass(no redraw frame)"));
193fe989
VZ
349 }
350
e5c0b16a 351 // Register the MDI frame window class.
42e69d6b 352 wndclass.hbrBackground = (HBRUSH)NULL; // paint MDI frame ourselves
b782f2e0
VZ
353 wndclass.lpszClassName = wxMDIFrameClassName;
354 wndclass.style = styleNormal;
42e69d6b
VZ
355
356 if ( !RegisterClass(&wndclass) )
e5c0b16a 357 {
f6bcfd97 358 wxLogLastError(wxT("RegisterClass(MDI parent)"));
e5c0b16a
VZ
359 }
360
193fe989 361 // "no redraw" MDI frame
b782f2e0 362 wndclass.lpszClassName = wxMDIFrameClassNameNoRedraw;
193fe989
VZ
363 wndclass.style = styleNoRedraw;
364
365 if ( !RegisterClass(&wndclass) )
366 {
f6bcfd97 367 wxLogLastError(wxT("RegisterClass(no redraw MDI parent frame)"));
193fe989
VZ
368 }
369
e5c0b16a 370 // Register the MDI child frame window class.
42e69d6b
VZ
371 wndclass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
372 wndclass.lpszClassName = wxMDIChildFrameClassName;
b782f2e0 373 wndclass.style = styleNormal;
42e69d6b
VZ
374
375 if ( !RegisterClass(&wndclass) )
e5c0b16a 376 {
f6bcfd97 377 wxLogLastError(wxT("RegisterClass(MDI child)"));
e5c0b16a
VZ
378 }
379
193fe989
VZ
380 // "no redraw" MDI child frame
381 wndclass.lpszClassName = wxMDIChildFrameClassNameNoRedraw;
382 wndclass.style = styleNoRedraw;
383
384 if ( !RegisterClass(&wndclass) )
385 {
f6bcfd97 386 wxLogLastError(wxT("RegisterClass(no redraw MDI child)"));
193fe989
VZ
387 }
388
77c46f00 389 return true;
2bda0e17
KB
390}
391
9787a4b6
VZ
392// ---------------------------------------------------------------------------
393// UnregisterWindowClasses
394// ---------------------------------------------------------------------------
395
396bool wxApp::UnregisterWindowClasses()
397{
77c46f00 398 bool retval = true;
9787a4b6 399
c67d6888 400#ifndef __WXMICROWIN__
9787a4b6 401 // MDI frame window class.
03baf031 402 if ( !::UnregisterClass(wxMDIFrameClassName, wxhInstance) )
9787a4b6
VZ
403 {
404 wxLogLastError(wxT("UnregisterClass(MDI parent)"));
405
77c46f00 406 retval = false;
9787a4b6
VZ
407 }
408
409 // "no redraw" MDI frame
03baf031 410 if ( !::UnregisterClass(wxMDIFrameClassNameNoRedraw, wxhInstance) )
9787a4b6
VZ
411 {
412 wxLogLastError(wxT("UnregisterClass(no redraw MDI parent frame)"));
413
77c46f00 414 retval = false;
9787a4b6
VZ
415 }
416
417 // MDI child frame window class.
03baf031 418 if ( !::UnregisterClass(wxMDIChildFrameClassName, wxhInstance) )
9787a4b6
VZ
419 {
420 wxLogLastError(wxT("UnregisterClass(MDI child)"));
421
77c46f00 422 retval = false;
9787a4b6
VZ
423 }
424
425 // "no redraw" MDI child frame
03baf031 426 if ( !::UnregisterClass(wxMDIChildFrameClassNameNoRedraw, wxhInstance) )
9787a4b6
VZ
427 {
428 wxLogLastError(wxT("UnregisterClass(no redraw MDI child)"));
429
77c46f00 430 retval = false;
9787a4b6
VZ
431 }
432
03baf031
VZ
433 // canvas class name
434 if ( !::UnregisterClass(wxCanvasClassName, wxhInstance) )
9787a4b6
VZ
435 {
436 wxLogLastError(wxT("UnregisterClass(canvas)"));
437
77c46f00 438 retval = false;
9787a4b6
VZ
439 }
440
03baf031 441 if ( !::UnregisterClass(wxCanvasClassNameNR, wxhInstance) )
9787a4b6
VZ
442 {
443 wxLogLastError(wxT("UnregisterClass(no redraw canvas)"));
444
77c46f00 445 retval = false;
9787a4b6 446 }
03baf031
VZ
447#endif // __WXMICROWIN__
448
9787a4b6
VZ
449 return retval;
450}
451
bb6290e3 452void wxApp::CleanUp()
2bda0e17 453{
7a9dfa3c
VZ
454 // all objects pending for deletion must be deleted first, otherwise we
455 // would crash when they use wxWinHandleHash (and UnregisterWindowClasses()
456 // call wouldn't succeed as long as any windows still exist), so call the
457 // base class method first and only then do our clean up
458 wxAppBase::CleanUp();
459
4676948b 460#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
77c46f00 461 wxSetKeyboardHook(false);
04ef50df 462#endif
2bda0e17 463
47d67540 464#if wxUSE_PENWINDOWS
e5c0b16a 465 wxCleanUpPenWin();
2bda0e17
KB
466#endif
467
360ae33f 468 wxOleUninitialize();
2bda0e17 469
9787a4b6
VZ
470 // for an EXE the classes are unregistered when it terminates but DLL may
471 // be loaded several times (load/unload/load) into the same process in
472 // which case the registration will fail after the first time if we don't
473 // unregister the classes now
474 UnregisterWindowClasses();
9787a4b6 475
1bffa913 476 delete wxWinHandleHash;
94826170 477 wxWinHandleHash = NULL;
46fa338b
RR
478
479#ifdef __WXWINCE__
480 free( wxCanvasClassName );
481 free( wxCanvasClassNameNR );
482#endif
2bda0e17
KB
483}
484
94826170
VZ
485// ----------------------------------------------------------------------------
486// wxApp ctor/dtor
487// ----------------------------------------------------------------------------
589f0e3e 488
bb6290e3 489wxApp::wxApp()
2bda0e17 490{
e5c0b16a 491 m_printMode = wxPRINT_WINDOWS;
2bda0e17
KB
492}
493
589f0e3e
JS
494wxApp::~wxApp()
495{
94826170
VZ
496 // our cmd line arguments are allocated inside wxEntry(HINSTANCE), they
497 // don't come from main(), so we have to free them
498
499 while ( argc )
e5c0b16a 500 {
94826170
VZ
501 // m_argv elements were allocated by wxStrdup()
502 free(argv[--argc]);
e5c0b16a 503 }
94826170
VZ
504
505 // but m_argv itself -- using new[]
506 delete [] argv;
589f0e3e
JS
507}
508
6046e57a
VZ
509// ----------------------------------------------------------------------------
510// wxApp idle handling
511// ----------------------------------------------------------------------------
512
2bda0e17
KB
513void wxApp::OnIdle(wxIdleEvent& event)
514{
955a9197 515 wxAppBase::OnIdle(event);
c54f78a2 516
aef94d68
JS
517#if wxUSE_DC_CACHEING
518 // automated DC cache management: clear the cached DCs and bitmap
519 // if it's likely that the app has finished with them, that is, we
520 // get an idle event and we're not dragging anything.
4624defa 521 if (!::GetKeyState(MK_LBUTTON) && !::GetKeyState(MK_MBUTTON) && !::GetKeyState(MK_RBUTTON))
aef94d68
JS
522 wxDC::ClearCache();
523#endif // wxUSE_DC_CACHEING
2bda0e17
KB
524}
525
e2478fde
VZ
526void wxApp::WakeUpIdle()
527{
528 // Send the top window a dummy message so idle handler processing will
529 // start up again. Doing it this way ensures that the idle handler
530 // wakes up in the right thread (see also wxWakeUpMainThread() which does
531 // the same for the main app thread only)
532 wxWindow *topWindow = wxTheApp->GetTopWindow();
533 if ( topWindow )
534 {
535 if ( !::PostMessage(GetHwndOf(topWindow), WM_NULL, 0, 0) )
536 {
537 // should never happen
538 wxLogLastError(wxT("PostMessage(WM_NULL)"));
539 }
540 }
541}
542
6046e57a
VZ
543// ----------------------------------------------------------------------------
544// other wxApp event hanlders
545// ----------------------------------------------------------------------------
546
57c208c5 547void wxApp::OnEndSession(wxCloseEvent& WXUNUSED(event))
387a3b02
JS
548{
549 if (GetTopWindow())
77c46f00 550 GetTopWindow()->Close(true);
387a3b02
JS
551}
552
553// Default behaviour: close the application with prompts. The
554// user can veto the close, and therefore the end session.
555void wxApp::OnQueryEndSession(wxCloseEvent& event)
556{
557 if (GetTopWindow())
558 {
559 if (!GetTopWindow()->Close(!event.CanVeto()))
77c46f00 560 event.Veto(true);
387a3b02
JS
561 }
562}
563
6046e57a
VZ
564// ----------------------------------------------------------------------------
565// miscellaneous
566// ----------------------------------------------------------------------------
567
6d167489
VZ
568/* static */
569int wxApp::GetComCtl32Version()
570{
fd7b70bd 571#if defined(__WXMICROWIN__) || defined(__WXWINCE__)
04ef50df
JS
572 return 0;
573#else
6d167489 574 // cache the result
9fc6c21c
VZ
575 //
576 // NB: this is MT-ok as in the worst case we'd compute s_verComCtl32 twice,
577 // but as its value should be the same both times it doesn't matter
bdc72a22
VZ
578 static int s_verComCtl32 = -1;
579
6d167489
VZ
580 if ( s_verComCtl32 == -1 )
581 {
bdc72a22 582 // initally assume no comctl32.dll at all
6d167489
VZ
583 s_verComCtl32 = 0;
584
9fc6c21c
VZ
585 // we're prepared to handle the errors
586 wxLogNull noLog;
587
bdc72a22 588 // do we have it?
9fc6c21c 589 wxDynamicLibrary dllComCtl32(_T("comctl32.dll"), wxDL_VERBATIM);
6d167489
VZ
590
591 // if so, then we can check for the version
9fc6c21c 592 if ( dllComCtl32.IsLoaded() )
bb6290e3 593 {
f1189604
JS
594#ifndef DLLVER_PLATFORM_WINDOWS
595 typedef struct _DllVersionInfo
596 {
597 DWORD cbSize;
598 DWORD dwMajorVersion; // Major version
599 DWORD dwMinorVersion; // Minor version
600 DWORD dwBuildNumber; // Build number
601 DWORD dwPlatformID; // DLLVER_PLATFORM_*
602 } DLLVERSIONINFO;
603 typedef HRESULT (CALLBACK* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
604#endif
bdc72a22 605 // try to use DllGetVersion() if available in _headers_
9fc6c21c
VZ
606 wxDYNLIB_FUNCTION( DLLGETVERSIONPROC, DllGetVersion, dllComCtl32 );
607 if ( pfnDllGetVersion )
608 {
609 DLLVERSIONINFO dvi;
610 dvi.cbSize = sizeof(dvi);
611
612 HRESULT hr = (*pfnDllGetVersion)(&dvi);
613 if ( FAILED(hr) )
6d167489 614 {
9fc6c21c
VZ
615 wxLogApiError(_T("DllGetVersion"), hr);
616 }
617 else
618 {
619 // this is incompatible with _WIN32_IE values, but
620 // compatible with the other values returned by
621 // GetComCtl32Version()
622 s_verComCtl32 = 100*dvi.dwMajorVersion +
623 dvi.dwMinorVersion;
624 }
625 }
bdc72a22 626
9fc6c21c
VZ
627 // if DllGetVersion() is unavailable either during compile or
628 // run-time, try to guess the version otherwise
629 if ( !s_verComCtl32 )
630 {
631 // InitCommonControlsEx is unique to 4.70 and later
632 void *pfn = dllComCtl32.GetSymbol(_T("InitCommonControlsEx"));
633 if ( !pfn )
634 {
635 // not found, must be 4.00
636 s_verComCtl32 = 400;
6d167489 637 }
9fc6c21c 638 else // 4.70+
bdc72a22 639 {
9fc6c21c
VZ
640 // many symbols appeared in comctl32 4.71, could use any of
641 // them except may be DllInstall()
642 pfn = dllComCtl32.GetSymbol(_T("InitializeFlatSB"));
643 if ( !pfn )
bdc72a22 644 {
9fc6c21c
VZ
645 // not found, must be 4.70
646 s_verComCtl32 = 470;
bdc72a22
VZ
647 }
648 else
649 {
9fc6c21c
VZ
650 // found, must be 4.71 or later
651 s_verComCtl32 = 471;
bdc72a22 652 }
6d167489 653 }
9fc6c21c 654 }
ef094fa0 655 }
bb6290e3 656 }
6d167489
VZ
657
658 return s_verComCtl32;
9fc6c21c 659#endif // Microwin/!Microwin
bb6290e3
JS
660}
661
2bda0e17 662// Yield to incoming messages
cb2713bf 663
8461e4c2 664bool wxApp::Yield(bool onlyIfNeeded)
2bda0e17 665{
8461e4c2 666 // MT-FIXME
77c46f00 667 static bool s_inYield = false;
8461e4c2 668
e30285ab 669#if wxUSE_LOG
2ed3265e
VZ
670 // disable log flushing from here because a call to wxYield() shouldn't
671 // normally result in message boxes popping up &c
672 wxLog::Suspend();
e30285ab 673#endif // wxUSE_LOG
2ed3265e 674
8461e4c2
VZ
675 if ( s_inYield )
676 {
677 if ( !onlyIfNeeded )
678 {
679 wxFAIL_MSG( wxT("wxYield called recursively" ) );
680 }
33ac7e6f 681
77c46f00 682 return false;
8461e4c2
VZ
683 }
684
77c46f00 685 s_inYield = true;
cb2713bf 686
8e193f38
VZ
687 // we don't want to process WM_QUIT from here - it should be processed in
688 // the main event loop in order to stop it
e5c0b16a 689 MSG msg;
8e193f38
VZ
690 while ( PeekMessage(&msg, (HWND)0, 0, 0, PM_NOREMOVE) &&
691 msg.message != WM_QUIT )
e5c0b16a 692 {
5b615ed8
VZ
693#if wxUSE_THREADS
694 wxMutexGuiLeaveOrEnter();
695#endif // wxUSE_THREADS
696
1bf77ee5 697 if ( !wxTheApp->Dispatch() )
e5c0b16a
VZ
698 break;
699 }
8e193f38 700
8461e4c2
VZ
701 // if there are pending events, we must process them.
702 ProcessPendingEvents();
e5c0b16a 703
e30285ab 704#if wxUSE_LOG
2ed3265e
VZ
705 // let the logs be flashed again
706 wxLog::Resume();
e30285ab 707#endif // wxUSE_LOG
2ed3265e 708
77c46f00 709 s_inYield = false;
cb2713bf 710
77c46f00 711 return true;
2bda0e17 712}
094637f6 713
6046e57a
VZ
714#if wxUSE_EXCEPTIONS
715
716// ----------------------------------------------------------------------------
717// exception handling
718// ----------------------------------------------------------------------------
719
720bool wxApp::OnExceptionInMainLoop()
721{
722 // ask the user about what to do: use the Win32 API function here as it
77ffb593 723 // could be dangerous to use any wxWidgets code in this state
6046e57a
VZ
724 switch (
725 ::MessageBox
726 (
727 NULL,
728 _T("An unhandled exception occurred. Press \"Abort\" to \
729terminate the program,\r\n\
730\"Retry\" to exit the program normally and \"Ignore\" to try to continue."),
731 _T("Unhandled exception"),
732 MB_ABORTRETRYIGNORE |
733 MB_ICONERROR|
734 MB_TASKMODAL
735 )
736 )
737 {
738 case IDABORT:
739 throw;
740
741 default:
742 wxFAIL_MSG( _T("unexpected MessageBox() return code") );
743 // fall through
744
745 case IDRETRY:
746 return false;
747
748 case IDIGNORE:
749 return true;
750 }
751}
752
753#endif // wxUSE_EXCEPTIONS
51036b44
VZ
754
755// ----------------------------------------------------------------------------
756// deprecated event loop functions
757// ----------------------------------------------------------------------------
758
759#if WXWIN_COMPATIBILITY_2_4
760
761#include "wx/evtloop.h"
762
763void wxApp::DoMessage(WXMSG *pMsg)
764{
765 wxEventLoop *evtLoop = wxEventLoop::GetActive();
766 if ( evtLoop )
767 evtLoop->ProcessMessage(pMsg);
768}
769
770bool wxApp::DoMessage()
771{
772 wxEventLoop *evtLoop = wxEventLoop::GetActive();
773 return evtLoop ? evtLoop->Dispatch() : false;
774}
775
776bool wxApp::ProcessMessage(WXMSG* pMsg)
777{
778 wxEventLoop *evtLoop = wxEventLoop::GetActive();
779 return evtLoop && evtLoop->PreProcessMessage(pMsg);
780}
781
782#endif // WXWIN_COMPATIBILITY_2_4
783