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