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