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