]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/msw/toplevel.cpp | |
3 | // Purpose: implements wxTopLevelWindow for MSW | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 24.09.01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) | |
9 | // License: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/app.h" | |
29 | #include "wx/toplevel.h" | |
30 | #include "wx/dialog.h" | |
31 | #include "wx/string.h" | |
32 | #include "wx/log.h" | |
33 | #include "wx/intl.h" | |
34 | #include "wx/frame.h" | |
35 | #include "wx/containr.h" // wxSetFocusToChild() | |
36 | #endif //WX_PRECOMP | |
37 | ||
38 | #include "wx/module.h" | |
39 | #include "wx/dynlib.h" | |
40 | ||
41 | #include "wx/msw/private.h" | |
42 | #if defined(__WXWINCE__) && !defined(__HANDHELDPC__) | |
43 | #include <ole2.h> | |
44 | #include <shellapi.h> | |
45 | // Standard SDK doesn't have aygshell.dll: see include/wx/msw/wince/libraries.h | |
46 | #if _WIN32_WCE < 400 || !defined(__WINCE_STANDARDSDK__) | |
47 | #include <aygshell.h> | |
48 | #endif | |
49 | #include "wx/msw/wince/missing.h" | |
50 | #endif | |
51 | ||
52 | #include "wx/msw/missing.h" | |
53 | #include "wx/msw/winundef.h" | |
54 | ||
55 | #include "wx/display.h" | |
56 | ||
57 | #ifndef ICON_BIG | |
58 | #define ICON_BIG 1 | |
59 | #endif | |
60 | ||
61 | #ifndef ICON_SMALL | |
62 | #define ICON_SMALL 0 | |
63 | #endif | |
64 | ||
65 | // ---------------------------------------------------------------------------- | |
66 | // stubs for missing functions under MicroWindows | |
67 | // ---------------------------------------------------------------------------- | |
68 | ||
69 | #ifdef __WXMICROWIN__ | |
70 | ||
71 | // static inline bool IsIconic(HWND WXUNUSED(hwnd)) { return false; } | |
72 | static inline bool IsZoomed(HWND WXUNUSED(hwnd)) { return false; } | |
73 | ||
74 | #endif // __WXMICROWIN__ | |
75 | ||
76 | // NB: wxDlgProc must be defined here and not in dialog.cpp because the latter | |
77 | // is not included by wxUniv build which does need wxDlgProc | |
78 | LONG APIENTRY _EXPORT | |
79 | wxDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam); | |
80 | ||
81 | // ---------------------------------------------------------------------------- | |
82 | // globals | |
83 | // ---------------------------------------------------------------------------- | |
84 | ||
85 | // the name of the default wxWidgets class | |
86 | #ifdef __WXWINCE__ | |
87 | extern wxChar *wxCanvasClassName; | |
88 | #else | |
89 | extern const wxChar *wxCanvasClassName; | |
90 | #endif | |
91 | ||
92 | // ---------------------------------------------------------------------------- | |
93 | // wxTLWHiddenParentModule: used to manage the hidden parent window (we need a | |
94 | // module to ensure that the window is always deleted) | |
95 | // ---------------------------------------------------------------------------- | |
96 | ||
97 | class wxTLWHiddenParentModule : public wxModule | |
98 | { | |
99 | public: | |
100 | // module init/finalize | |
101 | virtual bool OnInit(); | |
102 | virtual void OnExit(); | |
103 | ||
104 | // get the hidden window (creates on demand) | |
105 | static HWND GetHWND(); | |
106 | ||
107 | private: | |
108 | // the HWND of the hidden parent | |
109 | static HWND ms_hwnd; | |
110 | ||
111 | // the class used to create it | |
112 | static const wxChar *ms_className; | |
113 | ||
114 | DECLARE_DYNAMIC_CLASS(wxTLWHiddenParentModule) | |
115 | }; | |
116 | ||
117 | IMPLEMENT_DYNAMIC_CLASS(wxTLWHiddenParentModule, wxModule) | |
118 | ||
119 | // ============================================================================ | |
120 | // wxTopLevelWindowMSW implementation | |
121 | // ============================================================================ | |
122 | ||
123 | BEGIN_EVENT_TABLE(wxTopLevelWindowMSW, wxTopLevelWindowBase) | |
124 | EVT_ACTIVATE(wxTopLevelWindowMSW::OnActivate) | |
125 | END_EVENT_TABLE() | |
126 | ||
127 | // ---------------------------------------------------------------------------- | |
128 | // wxTopLevelWindowMSW creation | |
129 | // ---------------------------------------------------------------------------- | |
130 | ||
131 | void wxTopLevelWindowMSW::Init() | |
132 | { | |
133 | m_iconized = | |
134 | m_maximizeOnShow = false; | |
135 | ||
136 | // Data to save/restore when calling ShowFullScreen | |
137 | m_fsStyle = 0; | |
138 | m_fsOldWindowStyle = 0; | |
139 | m_fsIsMaximized = false; | |
140 | m_fsIsShowing = false; | |
141 | ||
142 | m_winLastFocused = (wxWindow *)NULL; | |
143 | ||
144 | #if defined(__SMARTPHONE__) && defined(__WXWINCE__) | |
145 | m_MenuBarHWND = 0; | |
146 | #endif | |
147 | ||
148 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) | |
149 | SHACTIVATEINFO* info = new SHACTIVATEINFO; | |
150 | wxZeroMemory(*info); | |
151 | info->cbSize = sizeof(SHACTIVATEINFO); | |
152 | ||
153 | m_activateInfo = (void*) info; | |
154 | #endif | |
155 | } | |
156 | ||
157 | WXDWORD wxTopLevelWindowMSW::MSWGetStyle(long style, WXDWORD *exflags) const | |
158 | { | |
159 | // let the base class deal with the common styles but fix the ones which | |
160 | // don't make sense for us (we also deal with the borders ourselves) | |
161 | WXDWORD msflags = wxWindow::MSWGetStyle | |
162 | ( | |
163 | (style & ~wxBORDER_MASK) | wxBORDER_NONE, exflags | |
164 | ) & ~WS_CHILD & ~WS_VISIBLE; | |
165 | ||
166 | // For some reason, WS_VISIBLE needs to be defined on creation for | |
167 | // SmartPhone 2003. The title can fail to be displayed otherwise. | |
168 | #if defined(__SMARTPHONE__) || (defined(__WXWINCE__) && _WIN32_WCE < 400) | |
169 | msflags |= WS_VISIBLE; | |
170 | ((wxTopLevelWindowMSW*)this)->wxWindowBase::Show(true); | |
171 | #endif | |
172 | ||
173 | // first select the kind of window being created | |
174 | // | |
175 | // note that if we don't set WS_POPUP, Windows assumes WS_OVERLAPPED and | |
176 | // creates a window with both caption and border, hence we need to use | |
177 | // WS_POPUP in a few cases just to avoid having caption/border which we | |
178 | // don't want | |
179 | ||
180 | // border and caption styles | |
181 | if ( ( style & wxRESIZE_BORDER ) && !IsAlwaysMaximized()) | |
182 | msflags |= WS_THICKFRAME; | |
183 | else if ( exflags && ((style & wxBORDER_DOUBLE) || (style & wxBORDER_RAISED)) ) | |
184 | *exflags |= WS_EX_DLGMODALFRAME; | |
185 | else if ( !(style & wxBORDER_NONE) ) | |
186 | msflags |= WS_BORDER; | |
187 | #ifndef __POCKETPC__ | |
188 | else | |
189 | msflags |= WS_POPUP; | |
190 | #endif | |
191 | ||
192 | // normally we consider that all windows without a caption must be popups, | |
193 | // but CE is an exception: there windows normally do not have the caption | |
194 | // but shouldn't be made popups as popups can't have menus and don't look | |
195 | // like normal windows anyhow | |
196 | ||
197 | // TODO: Smartphone appears to like wxCAPTION, but we should check that | |
198 | // we need it. | |
199 | #if defined(__SMARTPHONE__) || !defined(__WXWINCE__) | |
200 | if ( style & wxCAPTION ) | |
201 | msflags |= WS_CAPTION; | |
202 | #ifndef __WXWINCE__ | |
203 | else | |
204 | msflags |= WS_POPUP; | |
205 | #endif // !__WXWINCE__ | |
206 | #endif | |
207 | ||
208 | // next translate the individual flags | |
209 | if ( style & wxMINIMIZE_BOX ) | |
210 | msflags |= WS_MINIMIZEBOX; | |
211 | if ( style & wxMAXIMIZE_BOX ) | |
212 | msflags |= WS_MAXIMIZEBOX; | |
213 | ||
214 | #ifndef __WXWINCE__ | |
215 | if ( style & wxSYSTEM_MENU ) | |
216 | msflags |= WS_SYSMENU; | |
217 | #endif | |
218 | ||
219 | // NB: under CE these 2 styles are not supported currently, we should | |
220 | // call Minimize()/Maximize() "manually" if we want to support them | |
221 | if ( style & wxMINIMIZE ) | |
222 | msflags |= WS_MINIMIZE; | |
223 | ||
224 | if ( style & wxMAXIMIZE ) | |
225 | msflags |= WS_MAXIMIZE; | |
226 | ||
227 | // Keep this here because it saves recoding this function in wxTinyFrame | |
228 | if ( style & (wxTINY_CAPTION_VERT | wxTINY_CAPTION_HORIZ) ) | |
229 | msflags |= WS_CAPTION; | |
230 | ||
231 | if ( exflags ) | |
232 | { | |
233 | // there is no taskbar under CE, so omit all this | |
234 | #if !defined(__WXWINCE__) | |
235 | if ( !(GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) ) | |
236 | { | |
237 | if ( style & wxFRAME_TOOL_WINDOW ) | |
238 | { | |
239 | // create the palette-like window | |
240 | *exflags |= WS_EX_TOOLWINDOW; | |
241 | ||
242 | // tool windows shouldn't appear on the taskbar (as documented) | |
243 | style |= wxFRAME_NO_TASKBAR; | |
244 | } | |
245 | ||
246 | // We have to solve 2 different problems here: | |
247 | // | |
248 | // 1. frames with wxFRAME_NO_TASKBAR flag shouldn't appear in the | |
249 | // taskbar even if they don't have a parent | |
250 | // | |
251 | // 2. frames without this style should appear in the taskbar even | |
252 | // if they're owned (Windows only puts non owned windows into | |
253 | // the taskbar normally) | |
254 | // | |
255 | // The second one is solved here by using WS_EX_APPWINDOW flag, the | |
256 | // first one is dealt with in our MSWGetParent() method | |
257 | // implementation | |
258 | if ( !(style & wxFRAME_NO_TASKBAR) && GetParent() ) | |
259 | { | |
260 | // need to force the frame to appear in the taskbar | |
261 | *exflags |= WS_EX_APPWINDOW; | |
262 | } | |
263 | //else: nothing to do [here] | |
264 | } | |
265 | ||
266 | if ( GetExtraStyle() & wxFRAME_EX_CONTEXTHELP ) | |
267 | *exflags |= WS_EX_CONTEXTHELP; | |
268 | #endif // !__WXWINCE__ | |
269 | ||
270 | if ( style & wxSTAY_ON_TOP ) | |
271 | *exflags |= WS_EX_TOPMOST; | |
272 | } | |
273 | ||
274 | return msflags; | |
275 | } | |
276 | ||
277 | WXHWND wxTopLevelWindowMSW::MSWGetParent() const | |
278 | { | |
279 | // for the frames without wxFRAME_FLOAT_ON_PARENT style we should use NULL | |
280 | // parent HWND or it would be always on top of its parent which is not what | |
281 | // we usually want (in fact, we only want it for frames with the | |
282 | // wxFRAME_FLOAT_ON_PARENT flag) | |
283 | HWND hwndParent = NULL; | |
284 | if ( HasFlag(wxFRAME_FLOAT_ON_PARENT) ) | |
285 | { | |
286 | const wxWindow *parent = GetParent(); | |
287 | ||
288 | if ( !parent ) | |
289 | { | |
290 | // this flag doesn't make sense then and will be ignored | |
291 | wxFAIL_MSG( _T("wxFRAME_FLOAT_ON_PARENT but no parent?") ); | |
292 | } | |
293 | else | |
294 | { | |
295 | hwndParent = GetHwndOf(parent); | |
296 | } | |
297 | } | |
298 | //else: don't float on parent, must not be owned | |
299 | ||
300 | // now deal with the 2nd taskbar-related problem (see comments above in | |
301 | // MSWGetStyle()) | |
302 | if ( HasFlag(wxFRAME_NO_TASKBAR) && !hwndParent ) | |
303 | { | |
304 | // use hidden parent | |
305 | hwndParent = wxTLWHiddenParentModule::GetHWND(); | |
306 | } | |
307 | ||
308 | return (WXHWND)hwndParent; | |
309 | } | |
310 | ||
311 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) | |
312 | bool wxTopLevelWindowMSW::HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam) | |
313 | { | |
314 | SHACTIVATEINFO *info = (SHACTIVATEINFO*) m_activateInfo; | |
315 | if ( info ) | |
316 | { | |
317 | SHHandleWMSettingChange(GetHwnd(), wParam, lParam, info); | |
318 | } | |
319 | ||
320 | return wxWindowMSW::HandleSettingChange(wParam, lParam); | |
321 | } | |
322 | #endif | |
323 | ||
324 | WXLRESULT wxTopLevelWindowMSW::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam) | |
325 | { | |
326 | WXLRESULT rc = 0; | |
327 | bool processed = false; | |
328 | ||
329 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) | |
330 | switch ( message ) | |
331 | { | |
332 | case WM_ACTIVATE: | |
333 | { | |
334 | SHACTIVATEINFO* info = (SHACTIVATEINFO*) m_activateInfo; | |
335 | if (info) | |
336 | { | |
337 | DWORD flags = 0; | |
338 | if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) flags = SHA_INPUTDIALOG; | |
339 | SHHandleWMActivate(GetHwnd(), wParam, lParam, info, flags); | |
340 | } | |
341 | ||
342 | // This implicitly sends a wxEVT_ACTIVATE_APP event | |
343 | if (wxTheApp) | |
344 | wxTheApp->SetActive(wParam != 0, FindFocus()); | |
345 | ||
346 | break; | |
347 | } | |
348 | case WM_HIBERNATE: | |
349 | { | |
350 | if (wxTheApp) | |
351 | { | |
352 | wxActivateEvent event(wxEVT_HIBERNATE, true, wxID_ANY); | |
353 | event.SetEventObject(wxTheApp); | |
354 | processed = wxTheApp->ProcessEvent(event); | |
355 | } | |
356 | break; | |
357 | } | |
358 | } | |
359 | #endif | |
360 | ||
361 | if ( !processed ) | |
362 | rc = wxTopLevelWindowBase::MSWWindowProc(message, wParam, lParam); | |
363 | ||
364 | return rc; | |
365 | } | |
366 | ||
367 | bool wxTopLevelWindowMSW::CreateDialog(const void *dlgTemplate, | |
368 | const wxString& title, | |
369 | const wxPoint& pos, | |
370 | const wxSize& size) | |
371 | { | |
372 | #ifdef __WXMICROWIN__ | |
373 | // no dialogs support under MicroWin yet | |
374 | return CreateFrame(title, pos, size); | |
375 | #else // !__WXMICROWIN__ | |
376 | wxWindow *parent = GetParent(); | |
377 | ||
378 | // for the dialogs without wxDIALOG_NO_PARENT style, use the top level | |
379 | // app window as parent - this avoids creating modal dialogs without | |
380 | // parent | |
381 | if ( !parent && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) ) | |
382 | { | |
383 | parent = wxTheApp->GetTopWindow(); | |
384 | ||
385 | if ( parent ) | |
386 | { | |
387 | // don't use transient windows as parents, this is dangerous as it | |
388 | // can lead to a crash if the parent is destroyed before the child | |
389 | // | |
390 | // also don't use the window which is currently hidden as then the | |
391 | // dialog would be hidden as well | |
392 | if ( (parent->GetExtraStyle() & wxWS_EX_TRANSIENT) || | |
393 | !parent->IsShown() ) | |
394 | { | |
395 | parent = NULL; | |
396 | } | |
397 | } | |
398 | } | |
399 | ||
400 | m_hWnd = (WXHWND)::CreateDialogIndirect | |
401 | ( | |
402 | wxGetInstance(), | |
403 | (DLGTEMPLATE*)dlgTemplate, | |
404 | parent ? GetHwndOf(parent) : NULL, | |
405 | (DLGPROC)wxDlgProc | |
406 | ); | |
407 | ||
408 | if ( !m_hWnd ) | |
409 | { | |
410 | wxFAIL_MSG(wxT("Failed to create dialog. Incorrect DLGTEMPLATE?")); | |
411 | ||
412 | wxLogSysError(wxT("Can't create dialog using memory template")); | |
413 | ||
414 | return false; | |
415 | } | |
416 | ||
417 | WXDWORD exflags; | |
418 | (void)MSWGetCreateWindowFlags(&exflags); | |
419 | ||
420 | if ( exflags ) | |
421 | { | |
422 | ::SetWindowLong(GetHwnd(), GWL_EXSTYLE, exflags); | |
423 | ::SetWindowPos(GetHwnd(), | |
424 | exflags & WS_EX_TOPMOST ? HWND_TOPMOST : 0, | |
425 | 0, 0, 0, 0, | |
426 | SWP_NOSIZE | | |
427 | SWP_NOMOVE | | |
428 | (exflags & WS_EX_TOPMOST ? 0 : SWP_NOZORDER) | | |
429 | SWP_NOACTIVATE); | |
430 | } | |
431 | ||
432 | #if !defined(__WXWINCE__) | |
433 | // For some reason, the system menu is activated when we use the | |
434 | // WS_EX_CONTEXTHELP style, so let's set a reasonable icon | |
435 | if ( exflags & WS_EX_CONTEXTHELP ) | |
436 | { | |
437 | wxFrame *winTop = wxDynamicCast(wxTheApp->GetTopWindow(), wxFrame); | |
438 | if ( winTop ) | |
439 | { | |
440 | wxIcon icon = winTop->GetIcon(); | |
441 | if ( icon.Ok() ) | |
442 | { | |
443 | ::SendMessage(GetHwnd(), WM_SETICON, | |
444 | (WPARAM)TRUE, | |
445 | (LPARAM)GetHiconOf(icon)); | |
446 | } | |
447 | } | |
448 | } | |
449 | #endif | |
450 | ||
451 | // move the dialog to its initial position without forcing repainting | |
452 | int x, y, w, h; | |
453 | (void)MSWGetCreateWindowCoords(pos, size, x, y, w, h); | |
454 | ||
455 | if ( x == (int)CW_USEDEFAULT ) | |
456 | { | |
457 | // centre it on the screen - what else can we do? | |
458 | wxSize sizeDpy = wxGetDisplaySize(); | |
459 | ||
460 | x = (sizeDpy.x - w) / 2; | |
461 | y = (sizeDpy.y - h) / 2; | |
462 | } | |
463 | ||
464 | #if !defined(__WXWINCE__) || defined(__WINCE_STANDARDSDK__) | |
465 | if ( !::MoveWindow(GetHwnd(), x, y, w, h, FALSE) ) | |
466 | { | |
467 | wxLogLastError(wxT("MoveWindow")); | |
468 | } | |
469 | #endif | |
470 | ||
471 | if ( !title.empty() ) | |
472 | { | |
473 | ::SetWindowText(GetHwnd(), title); | |
474 | } | |
475 | ||
476 | SubclassWin(m_hWnd); | |
477 | ||
478 | #ifdef __SMARTPHONE__ | |
479 | // Work around title non-display glitch | |
480 | Show(false); | |
481 | #endif | |
482 | ||
483 | return true; | |
484 | #endif // __WXMICROWIN__/!__WXMICROWIN__ | |
485 | } | |
486 | ||
487 | bool wxTopLevelWindowMSW::CreateFrame(const wxString& title, | |
488 | const wxPoint& pos, | |
489 | const wxSize& size) | |
490 | { | |
491 | WXDWORD exflags; | |
492 | WXDWORD flags = MSWGetCreateWindowFlags(&exflags); | |
493 | ||
494 | wxSize sz; | |
495 | ||
496 | if (IsAlwaysMaximized()) | |
497 | { | |
498 | sz = wxDefaultSize; | |
499 | } | |
500 | else | |
501 | { | |
502 | sz = size; | |
503 | } | |
504 | ||
505 | bool result = MSWCreate(wxCanvasClassName, title, pos, sz, flags, exflags); | |
506 | ||
507 | return result; | |
508 | } | |
509 | ||
510 | bool wxTopLevelWindowMSW::Create(wxWindow *parent, | |
511 | wxWindowID id, | |
512 | const wxString& title, | |
513 | const wxPoint& pos, | |
514 | const wxSize& size, | |
515 | long style, | |
516 | const wxString& name) | |
517 | { | |
518 | bool ret wxDUMMY_INITIALIZE(false); | |
519 | ||
520 | // init our fields | |
521 | Init(); | |
522 | ||
523 | wxSize sizeReal = size; | |
524 | if ( !sizeReal.IsFullySpecified() ) | |
525 | { | |
526 | sizeReal.SetDefaults(GetDefaultSize()); | |
527 | } | |
528 | ||
529 | m_windowStyle = style; | |
530 | ||
531 | SetName(name); | |
532 | ||
533 | m_windowId = id == wxID_ANY ? NewControlId() : id; | |
534 | ||
535 | wxTopLevelWindows.Append(this); | |
536 | ||
537 | if ( parent ) | |
538 | parent->AddChild(this); | |
539 | ||
540 | if ( GetExtraStyle() & wxTOPLEVEL_EX_DIALOG ) | |
541 | { | |
542 | // we have different dialog templates to allows creation of dialogs | |
543 | // with & without captions under MSWindows, resizeable or not (but a | |
544 | // resizeable dialog always has caption - otherwise it would look too | |
545 | // strange) | |
546 | ||
547 | // we need 3 additional WORDs for dialog menu, class and title (as we | |
548 | // don't use DS_SETFONT we don't need the fourth WORD for the font) | |
549 | static const int dlgsize = sizeof(DLGTEMPLATE) + (sizeof(WORD) * 3); | |
550 | DLGTEMPLATE *dlgTemplate = (DLGTEMPLATE *)malloc(dlgsize); | |
551 | memset(dlgTemplate, 0, dlgsize); | |
552 | ||
553 | // these values are arbitrary, they won't be used normally anyhow | |
554 | dlgTemplate->x = 34; | |
555 | dlgTemplate->y = 22; | |
556 | dlgTemplate->cx = 144; | |
557 | dlgTemplate->cy = 75; | |
558 | ||
559 | // reuse the code in MSWGetStyle() but correct the results slightly for | |
560 | // the dialog | |
561 | dlgTemplate->style = MSWGetStyle(style, NULL); | |
562 | ||
563 | // all dialogs are popups | |
564 | dlgTemplate->style |= WS_POPUP; | |
565 | ||
566 | #ifndef __WXWINCE__ | |
567 | // force 3D-look if necessary, it looks impossibly ugly otherwise | |
568 | if ( style & (wxRESIZE_BORDER | wxCAPTION) ) | |
569 | dlgTemplate->style |= DS_MODALFRAME; | |
570 | #endif | |
571 | ||
572 | ret = CreateDialog(dlgTemplate, title, pos, sizeReal); | |
573 | free(dlgTemplate); | |
574 | } | |
575 | else // !dialog | |
576 | { | |
577 | ret = CreateFrame(title, pos, sizeReal); | |
578 | } | |
579 | ||
580 | #ifndef __WXWINCE__ | |
581 | if ( ret && !(GetWindowStyleFlag() & wxCLOSE_BOX) ) | |
582 | { | |
583 | EnableCloseButton(false); | |
584 | } | |
585 | #endif | |
586 | ||
587 | // for standard dialogs the dialog manager generates WM_CHANGEUISTATE | |
588 | // itself but for custom windows we have to do it ourselves in order to | |
589 | // make the keyboard indicators (such as underlines for accelerators and | |
590 | // focus rectangles) work under Win2k+ | |
591 | if ( ret ) | |
592 | { | |
593 | MSWUpdateUIState(UIS_INITIALIZE); | |
594 | } | |
595 | ||
596 | // Note: if we include PocketPC in this test, dialogs can fail to show up, | |
597 | // for example the text entry dialog in the dialogs sample. Problem with Maximise()? | |
598 | #if defined(__WXWINCE__) && (defined(__SMARTPHONE__) || defined(__WINCE_STANDARDSDK__)) | |
599 | if ( ( style & wxMAXIMIZE ) || IsAlwaysMaximized() ) | |
600 | { | |
601 | this->Maximize(); | |
602 | } | |
603 | #endif | |
604 | ||
605 | #if defined(__SMARTPHONE__) && defined(__WXWINCE__) | |
606 | SetRightMenu(); // to nothing for initialization | |
607 | #endif | |
608 | ||
609 | return ret; | |
610 | } | |
611 | ||
612 | wxTopLevelWindowMSW::~wxTopLevelWindowMSW() | |
613 | { | |
614 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) | |
615 | SHACTIVATEINFO* info = (SHACTIVATEINFO*) m_activateInfo; | |
616 | delete info; | |
617 | m_activateInfo = NULL; | |
618 | #endif | |
619 | ||
620 | // after destroying an owned window, Windows activates the next top level | |
621 | // window in Z order but it may be different from our owner (to reproduce | |
622 | // this simply Alt-TAB to another application and back before closing the | |
623 | // owned frame) whereas we always want to yield activation to our parent | |
624 | if ( HasFlag(wxFRAME_FLOAT_ON_PARENT) ) | |
625 | { | |
626 | wxWindow *parent = GetParent(); | |
627 | if ( parent ) | |
628 | { | |
629 | ::BringWindowToTop(GetHwndOf(parent)); | |
630 | } | |
631 | } | |
632 | } | |
633 | ||
634 | // ---------------------------------------------------------------------------- | |
635 | // wxTopLevelWindowMSW showing | |
636 | // ---------------------------------------------------------------------------- | |
637 | ||
638 | void wxTopLevelWindowMSW::DoShowWindow(int nShowCmd) | |
639 | { | |
640 | ::ShowWindow(GetHwnd(), nShowCmd); | |
641 | ||
642 | m_iconized = nShowCmd == SW_MINIMIZE; | |
643 | } | |
644 | ||
645 | bool wxTopLevelWindowMSW::Show(bool show) | |
646 | { | |
647 | // don't use wxWindow version as we want to call DoShowWindow() ourselves | |
648 | if ( !wxWindowBase::Show(show) ) | |
649 | return false; | |
650 | ||
651 | int nShowCmd; | |
652 | if ( show ) | |
653 | { | |
654 | if ( m_maximizeOnShow ) | |
655 | { | |
656 | // show and maximize | |
657 | nShowCmd = SW_MAXIMIZE; | |
658 | ||
659 | // This is necessary, or no window appears | |
660 | #if defined( __WINCE_STANDARDSDK__) || defined(__SMARTPHONE__) | |
661 | DoShowWindow(SW_SHOW); | |
662 | #endif | |
663 | ||
664 | m_maximizeOnShow = false; | |
665 | } | |
666 | else // just show | |
667 | { | |
668 | if ( GetWindowStyle() & wxFRAME_TOOL_WINDOW ) | |
669 | nShowCmd = SW_SHOWNA; | |
670 | else | |
671 | nShowCmd = SW_SHOW; | |
672 | } | |
673 | } | |
674 | else // hide | |
675 | { | |
676 | nShowCmd = SW_HIDE; | |
677 | } | |
678 | ||
679 | DoShowWindow(nShowCmd); | |
680 | ||
681 | #if defined(__WXWINCE__) && (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__)) | |
682 | // Addornments have to be added when the frame is the correct size | |
683 | wxFrame* frame = wxDynamicCast(this, wxFrame); | |
684 | if (frame && frame->GetMenuBar()) | |
685 | frame->GetMenuBar()->AddAdornments(GetWindowStyleFlag()); | |
686 | #endif | |
687 | ||
688 | return true; | |
689 | } | |
690 | ||
691 | // ---------------------------------------------------------------------------- | |
692 | // wxTopLevelWindowMSW maximize/minimize | |
693 | // ---------------------------------------------------------------------------- | |
694 | ||
695 | void wxTopLevelWindowMSW::Maximize(bool maximize) | |
696 | { | |
697 | if ( IsShown() ) | |
698 | { | |
699 | // just maximize it directly | |
700 | DoShowWindow(maximize ? SW_MAXIMIZE : SW_RESTORE); | |
701 | } | |
702 | else // hidden | |
703 | { | |
704 | // we can't maximize the hidden frame because it shows it as well, | |
705 | // so just remember that we should do it later in this case | |
706 | m_maximizeOnShow = maximize; | |
707 | ||
708 | // after calling Maximize() the client code expects to get the frame | |
709 | // "real" size and doesn't want to know that, because of implementation | |
710 | // details, the frame isn't really maximized yet but will be only once | |
711 | // it's shown, so return our size as it will be then in this case | |
712 | if ( maximize ) | |
713 | { | |
714 | // unfortunately we don't know which display we're on yet so we | |
715 | // have to use the default one | |
716 | SetSize(wxGetClientDisplayRect().GetSize()); | |
717 | } | |
718 | //else: can't do anything in this case, we don't have the old size | |
719 | } | |
720 | } | |
721 | ||
722 | bool wxTopLevelWindowMSW::IsMaximized() const | |
723 | { | |
724 | return IsAlwaysMaximized() || | |
725 | #if !defined(__SMARTPHONE__) && !defined(__POCKETPC__) | |
726 | (::IsZoomed(GetHwnd()) != 0) || | |
727 | #endif | |
728 | m_maximizeOnShow; | |
729 | } | |
730 | ||
731 | void wxTopLevelWindowMSW::Iconize(bool iconize) | |
732 | { | |
733 | DoShowWindow(iconize ? SW_MINIMIZE : SW_RESTORE); | |
734 | } | |
735 | ||
736 | bool wxTopLevelWindowMSW::IsIconized() const | |
737 | { | |
738 | #ifdef __WXWINCE__ | |
739 | return false; | |
740 | #else | |
741 | // don't use m_iconized, it may be briefly out of sync with the real state | |
742 | // as it's only modified when we receive a WM_SIZE and we could be called | |
743 | // from an event handler from one of the messages we receive before it, | |
744 | // such as WM_MOVE | |
745 | return ::IsIconic(GetHwnd()) != 0; | |
746 | #endif | |
747 | } | |
748 | ||
749 | void wxTopLevelWindowMSW::Restore() | |
750 | { | |
751 | DoShowWindow(SW_RESTORE); | |
752 | } | |
753 | ||
754 | // ---------------------------------------------------------------------------- | |
755 | // wxTopLevelWindowMSW fullscreen | |
756 | // ---------------------------------------------------------------------------- | |
757 | ||
758 | bool wxTopLevelWindowMSW::ShowFullScreen(bool show, long style) | |
759 | { | |
760 | if ( show == IsFullScreen() ) | |
761 | { | |
762 | // nothing to do | |
763 | return true; | |
764 | } | |
765 | ||
766 | m_fsIsShowing = show; | |
767 | ||
768 | if ( show ) | |
769 | { | |
770 | m_fsStyle = style; | |
771 | ||
772 | // zap the frame borders | |
773 | ||
774 | // save the 'normal' window style | |
775 | m_fsOldWindowStyle = GetWindowLong(GetHwnd(), GWL_STYLE); | |
776 | ||
777 | // save the old position, width & height, maximize state | |
778 | m_fsOldSize = GetRect(); | |
779 | m_fsIsMaximized = IsMaximized(); | |
780 | ||
781 | // decide which window style flags to turn off | |
782 | LONG newStyle = m_fsOldWindowStyle; | |
783 | LONG offFlags = 0; | |
784 | ||
785 | if (style & wxFULLSCREEN_NOBORDER) | |
786 | { | |
787 | offFlags |= WS_BORDER; | |
788 | #ifndef __WXWINCE__ | |
789 | offFlags |= WS_THICKFRAME; | |
790 | #endif | |
791 | } | |
792 | if (style & wxFULLSCREEN_NOCAPTION) | |
793 | offFlags |= WS_CAPTION | WS_SYSMENU; | |
794 | ||
795 | newStyle &= ~offFlags; | |
796 | ||
797 | // change our window style to be compatible with full-screen mode | |
798 | ::SetWindowLong(GetHwnd(), GWL_STYLE, newStyle); | |
799 | ||
800 | wxRect rect; | |
801 | #if wxUSE_DISPLAY | |
802 | // resize to the size of the display containing us | |
803 | int dpy = wxDisplay::GetFromWindow(this); | |
804 | if ( dpy != wxNOT_FOUND ) | |
805 | { | |
806 | rect = wxDisplay(dpy).GetGeometry(); | |
807 | } | |
808 | else // fall back to the main desktop | |
809 | #endif // wxUSE_DISPLAY | |
810 | { | |
811 | // resize to the size of the desktop | |
812 | wxCopyRECTToRect(wxGetWindowRect(::GetDesktopWindow()), rect); | |
813 | #ifdef __WXWINCE__ | |
814 | // FIXME: size of the bottom menu (toolbar) | |
815 | // should be taken in account | |
816 | rect.height += rect.y; | |
817 | rect.y = 0; | |
818 | #endif | |
819 | } | |
820 | ||
821 | SetSize(rect); | |
822 | ||
823 | // now flush the window style cache and actually go full-screen | |
824 | long flags = SWP_FRAMECHANGED; | |
825 | ||
826 | // showing the frame full screen should also show it if it's still | |
827 | // hidden | |
828 | if ( !IsShown() ) | |
829 | { | |
830 | // don't call wxWindow version to avoid flicker from calling | |
831 | // ::ShowWindow() -- we're going to show the window at the correct | |
832 | // location directly below -- but do call the wxWindowBase version | |
833 | // to sync the internal m_isShown flag | |
834 | wxWindowBase::Show(); | |
835 | ||
836 | flags |= SWP_SHOWWINDOW; | |
837 | } | |
838 | ||
839 | SetWindowPos(GetHwnd(), HWND_TOP, | |
840 | rect.x, rect.y, rect.width, rect.height, | |
841 | flags); | |
842 | ||
843 | #if !defined(__HANDHELDPC__) && (defined(__WXWINCE__) && (_WIN32_WCE < 400)) | |
844 | ::SHFullScreen(GetHwnd(), SHFS_HIDETASKBAR | SHFS_HIDESIPBUTTON); | |
845 | #endif | |
846 | ||
847 | // finally send an event allowing the window to relayout itself &c | |
848 | wxSizeEvent event(rect.GetSize(), GetId()); | |
849 | GetEventHandler()->ProcessEvent(event); | |
850 | } | |
851 | else // stop showing full screen | |
852 | { | |
853 | #if !defined(__HANDHELDPC__) && (defined(__WXWINCE__) && (_WIN32_WCE < 400)) | |
854 | ::SHFullScreen(GetHwnd(), SHFS_SHOWTASKBAR | SHFS_SHOWSIPBUTTON); | |
855 | #endif | |
856 | Maximize(m_fsIsMaximized); | |
857 | SetWindowLong(GetHwnd(),GWL_STYLE, m_fsOldWindowStyle); | |
858 | SetWindowPos(GetHwnd(),HWND_TOP,m_fsOldSize.x, m_fsOldSize.y, | |
859 | m_fsOldSize.width, m_fsOldSize.height, SWP_FRAMECHANGED); | |
860 | } | |
861 | ||
862 | return true; | |
863 | } | |
864 | ||
865 | // ---------------------------------------------------------------------------- | |
866 | // wxTopLevelWindowMSW misc | |
867 | // ---------------------------------------------------------------------------- | |
868 | ||
869 | void wxTopLevelWindowMSW::SetTitle( const wxString& title) | |
870 | { | |
871 | SetLabel(title); | |
872 | } | |
873 | ||
874 | wxString wxTopLevelWindowMSW::GetTitle() const | |
875 | { | |
876 | return GetLabel(); | |
877 | } | |
878 | ||
879 | void wxTopLevelWindowMSW::SetIcon(const wxIcon& icon) | |
880 | { | |
881 | SetIcons( wxIconBundle( icon ) ); | |
882 | } | |
883 | ||
884 | void wxTopLevelWindowMSW::SetIcons(const wxIconBundle& icons) | |
885 | { | |
886 | wxTopLevelWindowBase::SetIcons(icons); | |
887 | ||
888 | #if !defined(__WXMICROWIN__) | |
889 | const wxIcon& sml = icons.GetIcon( wxSize( 16, 16 ) ); | |
890 | if( sml.Ok() && sml.GetWidth() == 16 && sml.GetHeight() == 16 ) | |
891 | { | |
892 | ::SendMessage( GetHwndOf( this ), WM_SETICON, ICON_SMALL, | |
893 | (LPARAM)GetHiconOf(sml) ); | |
894 | } | |
895 | ||
896 | const wxIcon& big = icons.GetIcon( wxSize( 32, 32 ) ); | |
897 | if( big.Ok() && big.GetWidth() == 32 && big.GetHeight() == 32 ) | |
898 | { | |
899 | ::SendMessage( GetHwndOf( this ), WM_SETICON, ICON_BIG, | |
900 | (LPARAM)GetHiconOf(big) ); | |
901 | } | |
902 | #endif // !__WXMICROWIN__ | |
903 | } | |
904 | ||
905 | bool wxTopLevelWindowMSW::EnableCloseButton(bool enable) | |
906 | { | |
907 | #if !defined(__WXMICROWIN__) | |
908 | // get system (a.k.a. window) menu | |
909 | HMENU hmenu = GetSystemMenu(GetHwnd(), FALSE /* get it */); | |
910 | if ( !hmenu ) | |
911 | { | |
912 | // no system menu at all -- ok if we want to remove the close button | |
913 | // anyhow, but bad if we want to show it | |
914 | return !enable; | |
915 | } | |
916 | ||
917 | // enabling/disabling the close item from it also automatically | |
918 | // disables/enables the close title bar button | |
919 | if ( ::EnableMenuItem(hmenu, SC_CLOSE, | |
920 | MF_BYCOMMAND | | |
921 | (enable ? MF_ENABLED : MF_GRAYED)) == -1 ) | |
922 | { | |
923 | wxLogLastError(_T("EnableMenuItem(SC_CLOSE)")); | |
924 | ||
925 | return false; | |
926 | } | |
927 | #ifndef __WXWINCE__ | |
928 | // update appearance immediately | |
929 | if ( !::DrawMenuBar(GetHwnd()) ) | |
930 | { | |
931 | wxLogLastError(_T("DrawMenuBar")); | |
932 | } | |
933 | #endif | |
934 | #endif // !__WXMICROWIN__ | |
935 | ||
936 | return true; | |
937 | } | |
938 | ||
939 | #ifndef __WXWINCE__ | |
940 | ||
941 | bool wxTopLevelWindowMSW::SetShape(const wxRegion& region) | |
942 | { | |
943 | wxCHECK_MSG( HasFlag(wxFRAME_SHAPED), false, | |
944 | _T("Shaped windows must be created with the wxFRAME_SHAPED style.")); | |
945 | ||
946 | // The empty region signifies that the shape should be removed from the | |
947 | // window. | |
948 | if ( region.IsEmpty() ) | |
949 | { | |
950 | if (::SetWindowRgn(GetHwnd(), NULL, TRUE) == 0) | |
951 | { | |
952 | wxLogLastError(_T("SetWindowRgn")); | |
953 | return false; | |
954 | } | |
955 | return true; | |
956 | } | |
957 | ||
958 | // Windows takes ownership of the region, so | |
959 | // we'll have to make a copy of the region to give to it. | |
960 | DWORD noBytes = ::GetRegionData(GetHrgnOf(region), 0, NULL); | |
961 | RGNDATA *rgnData = (RGNDATA*) new char[noBytes]; | |
962 | ::GetRegionData(GetHrgnOf(region), noBytes, rgnData); | |
963 | HRGN hrgn = ::ExtCreateRegion(NULL, noBytes, rgnData); | |
964 | delete[] (char*) rgnData; | |
965 | ||
966 | // SetWindowRgn expects the region to be in coordinants | |
967 | // relative to the window, not the client area. Figure | |
968 | // out the offset, if any. | |
969 | RECT rect; | |
970 | DWORD dwStyle = ::GetWindowLong(GetHwnd(), GWL_STYLE); | |
971 | DWORD dwExStyle = ::GetWindowLong(GetHwnd(), GWL_EXSTYLE); | |
972 | ::GetClientRect(GetHwnd(), &rect); | |
973 | ::AdjustWindowRectEx(&rect, dwStyle, FALSE, dwExStyle); | |
974 | ::OffsetRgn(hrgn, -rect.left, -rect.top); | |
975 | ||
976 | // Now call the shape API with the new region. | |
977 | if (::SetWindowRgn(GetHwnd(), hrgn, TRUE) == 0) | |
978 | { | |
979 | wxLogLastError(_T("SetWindowRgn")); | |
980 | return false; | |
981 | } | |
982 | return true; | |
983 | } | |
984 | ||
985 | #endif // !__WXWINCE__ | |
986 | ||
987 | void wxTopLevelWindowMSW::RequestUserAttention(int flags) | |
988 | { | |
989 | // check if we can use FlashWindowEx(): unfortunately a simple test for | |
990 | // FLASHW_STOP doesn't work because MSVC6 headers do #define it but don't | |
991 | // provide FlashWindowEx() declaration, so try to detect whether we have | |
992 | // real headers for WINVER 0x0500 by checking for existence of a symbol not | |
993 | // declated in MSVC6 header | |
994 | #if defined(FLASHW_STOP) && defined(VK_XBUTTON1) | |
995 | // available in the headers, check if it is supported by the system | |
996 | typedef BOOL (WINAPI *FlashWindowEx_t)(FLASHWINFO *pfwi); | |
997 | FlashWindowEx_t s_pfnFlashWindowEx = NULL; | |
998 | if ( !s_pfnFlashWindowEx ) | |
999 | { | |
1000 | wxDynamicLibrary dllUser32(_T("user32.dll")); | |
1001 | s_pfnFlashWindowEx = (FlashWindowEx_t) | |
1002 | dllUser32.GetSymbol(_T("FlashWindowEx")); | |
1003 | ||
1004 | // we can safely unload user32.dll here, it's going to remain loaded as | |
1005 | // long as the program is running anyhow | |
1006 | } | |
1007 | ||
1008 | if ( s_pfnFlashWindowEx ) | |
1009 | { | |
1010 | WinStruct<FLASHWINFO> fwi; | |
1011 | fwi.hwnd = GetHwnd(); | |
1012 | fwi.dwFlags = FLASHW_ALL; | |
1013 | if ( flags & wxUSER_ATTENTION_INFO ) | |
1014 | { | |
1015 | // just flash a few times | |
1016 | fwi.uCount = 3; | |
1017 | } | |
1018 | else // wxUSER_ATTENTION_ERROR | |
1019 | { | |
1020 | // flash until the user notices it | |
1021 | fwi.dwFlags |= FLASHW_TIMERNOFG; | |
1022 | } | |
1023 | ||
1024 | s_pfnFlashWindowEx(&fwi); | |
1025 | } | |
1026 | else // FlashWindowEx() not available | |
1027 | #endif // FlashWindowEx() defined | |
1028 | { | |
1029 | wxUnusedVar(flags); | |
1030 | #ifndef __WXWINCE__ | |
1031 | ::FlashWindow(GetHwnd(), TRUE); | |
1032 | #endif // __WXWINCE__ | |
1033 | } | |
1034 | } | |
1035 | ||
1036 | // ---------------------------------------------------------------------------- | |
1037 | // wxTopLevelWindow event handling | |
1038 | // ---------------------------------------------------------------------------- | |
1039 | ||
1040 | // Default activation behaviour - set the focus for the first child | |
1041 | // subwindow found. | |
1042 | void wxTopLevelWindowMSW::OnActivate(wxActivateEvent& event) | |
1043 | { | |
1044 | if ( event.GetActive() ) | |
1045 | { | |
1046 | // restore focus to the child which was last focused unless we already | |
1047 | // have it | |
1048 | wxLogTrace(_T("focus"), _T("wxTLW %08x activated."), (int) m_hWnd); | |
1049 | ||
1050 | wxWindow *winFocus = FindFocus(); | |
1051 | if ( !winFocus || wxGetTopLevelParent(winFocus) != this ) | |
1052 | { | |
1053 | wxWindow *parent = m_winLastFocused ? m_winLastFocused->GetParent() | |
1054 | : NULL; | |
1055 | if ( !parent ) | |
1056 | { | |
1057 | parent = this; | |
1058 | } | |
1059 | ||
1060 | wxSetFocusToChild(parent, &m_winLastFocused); | |
1061 | } | |
1062 | } | |
1063 | else // deactivating | |
1064 | { | |
1065 | // remember the last focused child if it is our child | |
1066 | m_winLastFocused = FindFocus(); | |
1067 | ||
1068 | if ( m_winLastFocused ) | |
1069 | { | |
1070 | // let it know that it doesn't have focus any more | |
1071 | m_winLastFocused->HandleKillFocus((WXHWND)NULL); | |
1072 | ||
1073 | // and don't remember it if it's a child from some other frame | |
1074 | if ( wxGetTopLevelParent(m_winLastFocused) != this ) | |
1075 | { | |
1076 | m_winLastFocused = NULL; | |
1077 | } | |
1078 | } | |
1079 | ||
1080 | wxLogTrace(_T("focus"), | |
1081 | _T("wxTLW %08x deactivated, last focused: %08x."), | |
1082 | (int) m_hWnd, | |
1083 | (int) (m_winLastFocused ? GetHwndOf(m_winLastFocused) | |
1084 | : NULL)); | |
1085 | ||
1086 | event.Skip(); | |
1087 | } | |
1088 | } | |
1089 | ||
1090 | // the DialogProc for all wxWidgets dialogs | |
1091 | LONG APIENTRY _EXPORT | |
1092 | wxDlgProc(HWND hDlg, | |
1093 | UINT message, | |
1094 | WPARAM WXUNUSED(wParam), | |
1095 | LPARAM WXUNUSED(lParam)) | |
1096 | { | |
1097 | switch ( message ) | |
1098 | { | |
1099 | case WM_INITDIALOG: | |
1100 | { | |
1101 | // under CE, add a "Ok" button in the dialog title bar and make it full | |
1102 | // screen | |
1103 | // | |
1104 | // TODO: find the window for this HWND, and take into account | |
1105 | // wxMAXIMIZE and wxCLOSE_BOX. For now, assume both are present. | |
1106 | // | |
1107 | // Standard SDK doesn't have aygshell.dll: see | |
1108 | // include/wx/msw/wince/libraries.h | |
1109 | #if defined(__WXWINCE__) && !defined(__WINCE_STANDARDSDK__) && !defined(__HANDHELDPC__) | |
1110 | SHINITDLGINFO shidi; | |
1111 | shidi.dwMask = SHIDIM_FLAGS; | |
1112 | shidi.dwFlags = SHIDIF_SIZEDLG // take account of the SIP or menubar | |
1113 | #ifndef __SMARTPHONE__ | |
1114 | | SHIDIF_DONEBUTTON | |
1115 | #endif | |
1116 | ; | |
1117 | shidi.hDlg = hDlg; | |
1118 | SHInitDialog( &shidi ); | |
1119 | #else // no SHInitDialog() | |
1120 | wxUnusedVar(hDlg); | |
1121 | #endif | |
1122 | // for WM_INITDIALOG, returning TRUE tells system to set focus to | |
1123 | // the first control in the dialog box, but as we set the focus | |
1124 | // ourselves, we return FALSE for it as well | |
1125 | return FALSE; | |
1126 | } | |
1127 | } | |
1128 | ||
1129 | // for almost all messages, returning FALSE means that we didn't process | |
1130 | // the message | |
1131 | return FALSE; | |
1132 | } | |
1133 | ||
1134 | // ============================================================================ | |
1135 | // wxTLWHiddenParentModule implementation | |
1136 | // ============================================================================ | |
1137 | ||
1138 | HWND wxTLWHiddenParentModule::ms_hwnd = NULL; | |
1139 | ||
1140 | const wxChar *wxTLWHiddenParentModule::ms_className = NULL; | |
1141 | ||
1142 | bool wxTLWHiddenParentModule::OnInit() | |
1143 | { | |
1144 | ms_hwnd = NULL; | |
1145 | ms_className = NULL; | |
1146 | ||
1147 | return true; | |
1148 | } | |
1149 | ||
1150 | void wxTLWHiddenParentModule::OnExit() | |
1151 | { | |
1152 | if ( ms_hwnd ) | |
1153 | { | |
1154 | if ( !::DestroyWindow(ms_hwnd) ) | |
1155 | { | |
1156 | wxLogLastError(_T("DestroyWindow(hidden TLW parent)")); | |
1157 | } | |
1158 | ||
1159 | ms_hwnd = NULL; | |
1160 | } | |
1161 | ||
1162 | if ( ms_className ) | |
1163 | { | |
1164 | if ( !::UnregisterClass(ms_className, wxGetInstance()) ) | |
1165 | { | |
1166 | wxLogLastError(_T("UnregisterClass(\"wxTLWHiddenParent\")")); | |
1167 | } | |
1168 | ||
1169 | ms_className = NULL; | |
1170 | } | |
1171 | } | |
1172 | ||
1173 | /* static */ | |
1174 | HWND wxTLWHiddenParentModule::GetHWND() | |
1175 | { | |
1176 | if ( !ms_hwnd ) | |
1177 | { | |
1178 | if ( !ms_className ) | |
1179 | { | |
1180 | static const wxChar *HIDDEN_PARENT_CLASS = _T("wxTLWHiddenParent"); | |
1181 | ||
1182 | WNDCLASS wndclass; | |
1183 | wxZeroMemory(wndclass); | |
1184 | ||
1185 | wndclass.lpfnWndProc = DefWindowProc; | |
1186 | wndclass.hInstance = wxGetInstance(); | |
1187 | wndclass.lpszClassName = HIDDEN_PARENT_CLASS; | |
1188 | ||
1189 | if ( !::RegisterClass(&wndclass) ) | |
1190 | { | |
1191 | wxLogLastError(_T("RegisterClass(\"wxTLWHiddenParent\")")); | |
1192 | } | |
1193 | else | |
1194 | { | |
1195 | ms_className = HIDDEN_PARENT_CLASS; | |
1196 | } | |
1197 | } | |
1198 | ||
1199 | ms_hwnd = ::CreateWindow(ms_className, wxEmptyString, 0, 0, 0, 0, 0, NULL, | |
1200 | (HMENU)NULL, wxGetInstance(), NULL); | |
1201 | if ( !ms_hwnd ) | |
1202 | { | |
1203 | wxLogLastError(_T("CreateWindow(hidden TLW parent)")); | |
1204 | } | |
1205 | } | |
1206 | ||
1207 | return ms_hwnd; | |
1208 | } |