1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/toplevel.cpp
3 // Purpose: implements wxTopLevelWindow for MSW
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "toplevel.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/toplevel.h"
34 #include "wx/dialog.h"
35 #include "wx/string.h"
39 #include "wx/containr.h" // wxSetFocusToChild()
42 #include "wx/module.h"
43 #include "wx/dynlib.h"
45 #include "wx/msw/private.h"
46 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__)
49 // Standard SDK doesn't have aygshell.dll: see include/wx/msw/wince/libraries.h
50 #if _WIN32_WCE < 400 || !defined(__WINCE_STANDARDSDK__)
53 #include "wx/msw/wince/missing.h"
56 #include "wx/msw/missing.h"
57 #include "wx/msw/winundef.h"
59 #include "wx/display.h"
69 // ----------------------------------------------------------------------------
70 // stubs for missing functions under MicroWindows
71 // ----------------------------------------------------------------------------
75 // static inline bool IsIconic(HWND WXUNUSED(hwnd)) { return false; }
76 static inline bool IsZoomed(HWND
WXUNUSED(hwnd
)) { return false; }
78 #endif // __WXMICROWIN__
80 // NB: wxDlgProc must be defined here and not in dialog.cpp because the latter
81 // is not included by wxUniv build which does need wxDlgProc
83 wxDlgProc(HWND hDlg
, UINT message
, WPARAM wParam
, LPARAM lParam
);
85 // ----------------------------------------------------------------------------
87 // ----------------------------------------------------------------------------
89 // the name of the default wxWidgets class
91 extern wxChar
*wxCanvasClassName
;
93 extern const wxChar
*wxCanvasClassName
;
96 // ----------------------------------------------------------------------------
97 // wxTLWHiddenParentModule: used to manage the hidden parent window (we need a
98 // module to ensure that the window is always deleted)
99 // ----------------------------------------------------------------------------
101 class wxTLWHiddenParentModule
: public wxModule
104 // module init/finalize
105 virtual bool OnInit();
106 virtual void OnExit();
108 // get the hidden window (creates on demand)
109 static HWND
GetHWND();
112 // the HWND of the hidden parent
115 // the class used to create it
116 static const wxChar
*ms_className
;
118 DECLARE_DYNAMIC_CLASS(wxTLWHiddenParentModule
)
121 IMPLEMENT_DYNAMIC_CLASS(wxTLWHiddenParentModule
, wxModule
)
123 // ============================================================================
124 // wxTopLevelWindowMSW implementation
125 // ============================================================================
127 BEGIN_EVENT_TABLE(wxTopLevelWindowMSW
, wxTopLevelWindowBase
)
128 EVT_ACTIVATE(wxTopLevelWindowMSW::OnActivate
)
131 // ----------------------------------------------------------------------------
132 // wxTopLevelWindowMSW creation
133 // ----------------------------------------------------------------------------
135 void wxTopLevelWindowMSW::Init()
138 m_maximizeOnShow
= false;
140 // Data to save/restore when calling ShowFullScreen
142 m_fsOldWindowStyle
= 0;
143 m_fsIsMaximized
= false;
144 m_fsIsShowing
= false;
146 m_winLastFocused
= (wxWindow
*)NULL
;
148 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
153 WXDWORD
wxTopLevelWindowMSW::MSWGetStyle(long style
, WXDWORD
*exflags
) const
155 // let the base class deal with the common styles but fix the ones which
156 // don't make sense for us (we also deal with the borders ourselves)
157 WXDWORD msflags
= wxWindow::MSWGetStyle
159 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exflags
160 ) & ~WS_CHILD
& ~WS_VISIBLE
;
162 // For some reason, WS_VISIBLE needs to be defined on creation for
163 // SmartPhone 2003. The title can fail to be displayed otherwise.
164 #if defined(__SMARTPHONE__) || (defined(__WXWINCE__) && _WIN32_WCE < 400)
165 msflags
|= WS_VISIBLE
;
166 ((wxTopLevelWindowMSW
*)this)->wxWindowBase::Show(true);
169 // first select the kind of window being created
171 // note that if we don't set WS_POPUP, Windows assumes WS_OVERLAPPED and
172 // creates a window with both caption and border, hence we need to use
173 // WS_POPUP in a few cases just to avoid having caption/border which we
176 #if !(defined(__SMARTPHONE__) && defined(__WXWINCE__))
177 // border and caption styles
178 if ( style
& wxRESIZE_BORDER
)
179 msflags
|= WS_THICKFRAME
;
180 else if ( exflags
&& ((style
& wxBORDER_DOUBLE
) || (style
& wxBORDER_RAISED
)) )
181 *exflags
|= WS_EX_DLGMODALFRAME
;
182 else if ( !(style
& wxBORDER_NONE
) )
183 msflags
|= WS_BORDER
;
190 // normally we consider that all windows without a caption must be popups,
191 // but CE is an exception: there windows normally do not have the caption
192 // but shouldn't be made popups as popups can't have menus and don't look
193 // like normal windows anyhow
195 // TODO: Smartphone appears to like wxCAPTION, but we should check that
197 #if defined(__SMARTPHONE__) || !defined(__WXWINCE__)
198 if ( style
& wxCAPTION
)
199 msflags
|= WS_CAPTION
;
203 #endif // !__WXWINCE__
206 // next translate the individual flags
207 if ( style
& wxMINIMIZE_BOX
)
208 msflags
|= WS_MINIMIZEBOX
;
209 if ( style
& wxMAXIMIZE_BOX
)
210 msflags
|= WS_MAXIMIZEBOX
;
213 if ( style
& wxSYSTEM_MENU
)
214 msflags
|= WS_SYSMENU
;
217 // NB: under CE these 2 styles are not supported currently, we should
218 // call Minimize()/Maximize() "manually" if we want to support them
219 if ( style
& wxMINIMIZE
)
220 msflags
|= WS_MINIMIZE
;
222 #if !defined(__POCKETPC__)
223 if ( style
& wxMAXIMIZE
)
224 msflags
|= WS_MAXIMIZE
;
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
;
233 // there is no taskbar under CE, so omit all this
234 #if !defined(__WXWINCE__)
235 if ( !(GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
) )
237 if ( style
& wxFRAME_TOOL_WINDOW
)
239 // create the palette-like window
240 *exflags
|= WS_EX_TOOLWINDOW
;
242 // tool windows shouldn't appear on the taskbar (as documented)
243 style
|= wxFRAME_NO_TASKBAR
;
246 // We have to solve 2 different problems here:
248 // 1. frames with wxFRAME_NO_TASKBAR flag shouldn't appear in the
249 // taskbar even if they don't have a parent
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)
255 // The second one is solved here by using WS_EX_APPWINDOW flag, the
256 // first one is dealt with in our MSWGetParent() method
258 if ( !(style
& wxFRAME_NO_TASKBAR
) && GetParent() )
260 // need to force the frame to appear in the taskbar
261 *exflags
|= WS_EX_APPWINDOW
;
263 //else: nothing to do [here]
266 if ( GetExtraStyle() & wxFRAME_EX_CONTEXTHELP
)
267 *exflags
|= WS_EX_CONTEXTHELP
;
268 #endif // !__WXWINCE__
270 if ( style
& wxSTAY_ON_TOP
)
271 *exflags
|= WS_EX_TOPMOST
;
277 WXHWND
wxTopLevelWindowMSW::MSWGetParent() const
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
) )
286 const wxWindow
*parent
= GetParent();
290 // this flag doesn't make sense then and will be ignored
291 wxFAIL_MSG( _T("wxFRAME_FLOAT_ON_PARENT but no parent?") );
295 hwndParent
= GetHwndOf(parent
);
298 //else: don't float on parent, must not be owned
300 // now deal with the 2nd taskbar-related problem (see comments above in
302 if ( HasFlag(wxFRAME_NO_TASKBAR
) && !hwndParent
)
305 hwndParent
= wxTLWHiddenParentModule::GetHWND();
308 return (WXHWND
)hwndParent
;
311 bool wxTopLevelWindowMSW::CreateDialog(const void *dlgTemplate
,
312 const wxString
& title
,
316 #ifdef __WXMICROWIN__
317 // no dialogs support under MicroWin yet
318 return CreateFrame(title
, pos
, size
);
319 #else // !__WXMICROWIN__
320 wxWindow
*parent
= GetParent();
322 // for the dialogs without wxDIALOG_NO_PARENT style, use the top level
323 // app window as parent - this avoids creating modal dialogs without
325 if ( !parent
&& !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT
) )
327 parent
= wxTheApp
->GetTopWindow();
331 // don't use transient windows as parents, this is dangerous as it
332 // can lead to a crash if the parent is destroyed before the child
334 // also don't use the window which is currently hidden as then the
335 // dialog would be hidden as well
336 if ( (parent
->GetExtraStyle() & wxWS_EX_TRANSIENT
) ||
344 m_hWnd
= (WXHWND
)::CreateDialogIndirect
347 (DLGTEMPLATE
*)dlgTemplate
,
348 parent
? GetHwndOf(parent
) : NULL
,
354 wxFAIL_MSG(wxT("Failed to create dialog. Incorrect DLGTEMPLATE?"));
356 wxLogSysError(wxT("Can't create dialog using memory template"));
362 (void)MSWGetCreateWindowFlags(&exflags
);
366 ::SetWindowLong(GetHwnd(), GWL_EXSTYLE
, exflags
);
367 ::SetWindowPos(GetHwnd(),
368 exflags
& WS_EX_TOPMOST
? HWND_TOPMOST
: 0,
372 (exflags
& WS_EX_TOPMOST
? 0 : SWP_NOZORDER
) |
376 #if !defined(__WXWINCE__)
377 // For some reason, the system menu is activated when we use the
378 // WS_EX_CONTEXTHELP style, so let's set a reasonable icon
379 if ( exflags
& WS_EX_CONTEXTHELP
)
381 wxFrame
*winTop
= wxDynamicCast(wxTheApp
->GetTopWindow(), wxFrame
);
384 wxIcon icon
= winTop
->GetIcon();
387 ::SendMessage(GetHwnd(), WM_SETICON
,
389 (LPARAM
)GetHiconOf(icon
));
395 // move the dialog to its initial position without forcing repainting
397 (void)MSWGetCreateWindowCoords(pos
, size
, x
, y
, w
, h
);
399 if ( x
== (int)CW_USEDEFAULT
)
401 // centre it on the screen - what else can we do?
402 wxSize sizeDpy
= wxGetDisplaySize();
404 x
= (sizeDpy
.x
- w
) / 2;
405 y
= (sizeDpy
.y
- h
) / 2;
408 #if !defined(__WXWINCE__) || defined(__WINCE_STANDARDSDK__)
409 if ( !::MoveWindow(GetHwnd(), x
, y
, w
, h
, FALSE
) )
411 wxLogLastError(wxT("MoveWindow"));
415 if ( !title
.empty() )
417 ::SetWindowText(GetHwnd(), title
);
422 #ifdef __SMARTPHONE__
423 // Work around title non-display glitch
428 #endif // __WXMICROWIN__/!__WXMICROWIN__
431 bool wxTopLevelWindowMSW::CreateFrame(const wxString
& title
,
436 WXDWORD flags
= MSWGetCreateWindowFlags(&exflags
);
438 #if !defined(__HANDHELDPC__) && ((defined(_WIN32_WCE) && _WIN32_WCE < 400) || \
439 defined(__POCKETPC__) || \
440 defined(__SMARTPHONE__))
441 // Always expand to fit the screen in PocketPC or SmartPhone
442 wxSize
sz(wxDefaultSize
);
444 #else // other (including normal desktop) Windows
448 bool result
= MSWCreate(wxCanvasClassName
, title
, pos
, sz
, flags
, exflags
);
453 bool wxTopLevelWindowMSW::Create(wxWindow
*parent
,
455 const wxString
& title
,
459 const wxString
& name
)
461 bool ret
wxDUMMY_INITIALIZE(false);
466 wxSize sizeReal
= size
;
467 if ( !sizeReal
.IsFullySpecified() )
469 sizeReal
.SetDefaults(GetDefaultSize());
472 m_windowStyle
= style
;
476 m_windowId
= id
== wxID_ANY
? NewControlId() : id
;
478 wxTopLevelWindows
.Append(this);
481 parent
->AddChild(this);
483 if ( GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
)
485 // we have different dialog templates to allows creation of dialogs
486 // with & without captions under MSWindows, resizeable or not (but a
487 // resizeable dialog always has caption - otherwise it would look too
490 // we need 3 additional WORDs for dialog menu, class and title (as we
491 // don't use DS_SETFONT we don't need the fourth WORD for the font)
492 static const int dlgsize
= sizeof(DLGTEMPLATE
) + (sizeof(WORD
) * 3);
493 DLGTEMPLATE
*dlgTemplate
= (DLGTEMPLATE
*)malloc(dlgsize
);
494 memset(dlgTemplate
, 0, dlgsize
);
496 // these values are arbitrary, they won't be used normally anyhow
499 dlgTemplate
->cx
= 144;
500 dlgTemplate
->cy
= 75;
502 // reuse the code in MSWGetStyle() but correct the results slightly for
504 dlgTemplate
->style
= MSWGetStyle(style
, NULL
);
506 // all dialogs are popups
507 dlgTemplate
->style
|= WS_POPUP
;
510 // force 3D-look if necessary, it looks impossibly ugly otherwise
511 if ( style
& (wxRESIZE_BORDER
| wxCAPTION
) )
512 dlgTemplate
->style
|= DS_MODALFRAME
;
515 ret
= CreateDialog(dlgTemplate
, title
, pos
, sizeReal
);
520 ret
= CreateFrame(title
, pos
, sizeReal
);
524 if ( ret
&& !(GetWindowStyleFlag() & wxCLOSE_BOX
) )
526 EnableCloseButton(false);
530 // for standard dialogs the dialog manager generates WM_CHANGEUISTATE
531 // itself but for custom windows we have to do it ourselves in order to
532 // make the keyboard indicators (such as underlines for accelerators and
533 // focus rectangles) work under Win2k+
539 // Note: if we include PocketPC in this test, dialogs can fail to show up,
540 // for example the text entry dialog in the dialogs sample. Problem with Maximise()?
541 #if defined(__WXWINCE__) && (defined(__SMARTPHONE__) || defined(__WINCE_STANDARDSDK__))
542 if ( style
& wxMAXIMIZE
)
548 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
549 SetRightMenu(); // to nothing for initialization
555 wxTopLevelWindowMSW::~wxTopLevelWindowMSW()
557 // after destroying an owned window, Windows activates the next top level
558 // window in Z order but it may be different from our owner (to reproduce
559 // this simply Alt-TAB to another application and back before closing the
560 // owned frame) whereas we always want to yield activation to our parent
561 if ( HasFlag(wxFRAME_FLOAT_ON_PARENT
) )
563 wxWindow
*parent
= GetParent();
566 ::BringWindowToTop(GetHwndOf(parent
));
571 // ----------------------------------------------------------------------------
572 // wxTopLevelWindowMSW showing
573 // ----------------------------------------------------------------------------
575 void wxTopLevelWindowMSW::DoShowWindow(int nShowCmd
)
577 ::ShowWindow(GetHwnd(), nShowCmd
);
579 m_iconized
= nShowCmd
== SW_MINIMIZE
;
582 bool wxTopLevelWindowMSW::Show(bool show
)
584 // don't use wxWindow version as we want to call DoShowWindow() ourselves
585 if ( !wxWindowBase::Show(show
) )
591 if ( m_maximizeOnShow
)
594 nShowCmd
= SW_MAXIMIZE
;
596 // This is necessary, or no window appears
597 #if defined( __WINCE_STANDARDSDK__) || defined(__SMARTPHONE__)
598 DoShowWindow(SW_SHOW
);
601 m_maximizeOnShow
= false;
605 if ( GetWindowStyle() & wxFRAME_TOOL_WINDOW
)
606 nShowCmd
= SW_SHOWNA
;
616 DoShowWindow(nShowCmd
);
618 #if defined(__WXWINCE__) && (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__))
619 // Addornments have to be added when the frame is the correct size
620 wxFrame
* frame
= wxDynamicCast(this, wxFrame
);
621 if (frame
&& frame
->GetMenuBar())
622 frame
->GetMenuBar()->AddAdornments(GetWindowStyleFlag());
627 ::BringWindowToTop(GetHwnd());
629 wxActivateEvent
event(wxEVT_ACTIVATE
, true, m_windowId
);
630 event
.SetEventObject( this );
631 GetEventHandler()->ProcessEvent(event
);
635 // Try to highlight the correct window (the parent)
638 HWND hWndParent
= GetHwndOf(GetParent());
640 ::BringWindowToTop(hWndParent
);
647 // ----------------------------------------------------------------------------
648 // wxTopLevelWindowMSW maximize/minimize
649 // ----------------------------------------------------------------------------
651 void wxTopLevelWindowMSW::Maximize(bool maximize
)
655 // just maximize it directly
656 DoShowWindow(maximize
? SW_MAXIMIZE
: SW_RESTORE
);
660 // we can't maximize the hidden frame because it shows it as well, so
661 // just remember that we should do it later in this case
662 m_maximizeOnShow
= maximize
;
664 // after calling Maximize() the client code expects to get the frame
665 // "real" size and doesn't want to know that, because of implementation
666 // details, the frame isn't really maximized yet but will be only once
667 // it's shown, so return our size as it will be then in this case
669 // we don't know which display we're on yet so use the default one
670 SetSize(wxGetClientDisplayRect().GetSize());
674 bool wxTopLevelWindowMSW::IsMaximized() const
679 return m_maximizeOnShow
|| ::IsZoomed(GetHwnd()) != 0;
683 void wxTopLevelWindowMSW::Iconize(bool iconize
)
685 DoShowWindow(iconize
? SW_MINIMIZE
: SW_RESTORE
);
688 bool wxTopLevelWindowMSW::IsIconized() const
693 // also update the current state
694 ((wxTopLevelWindowMSW
*)this)->m_iconized
= ::IsIconic(GetHwnd()) != 0;
700 void wxTopLevelWindowMSW::Restore()
702 DoShowWindow(SW_RESTORE
);
705 // ----------------------------------------------------------------------------
706 // wxTopLevelWindowMSW fullscreen
707 // ----------------------------------------------------------------------------
709 bool wxTopLevelWindowMSW::ShowFullScreen(bool show
, long style
)
711 if ( show
== IsFullScreen() )
717 m_fsIsShowing
= show
;
723 // zap the frame borders
725 // save the 'normal' window style
726 m_fsOldWindowStyle
= GetWindowLong(GetHwnd(), GWL_STYLE
);
728 // save the old position, width & height, maximize state
729 m_fsOldSize
= GetRect();
730 m_fsIsMaximized
= IsMaximized();
732 // decide which window style flags to turn off
733 LONG newStyle
= m_fsOldWindowStyle
;
736 if (style
& wxFULLSCREEN_NOBORDER
)
738 offFlags
|= WS_BORDER
;
740 offFlags
|= WS_THICKFRAME
;
743 if (style
& wxFULLSCREEN_NOCAPTION
)
744 offFlags
|= WS_CAPTION
| WS_SYSMENU
;
746 newStyle
&= ~offFlags
;
748 // change our window style to be compatible with full-screen mode
749 ::SetWindowLong(GetHwnd(), GWL_STYLE
, newStyle
);
753 // resize to the size of the display containing us
754 int dpy
= wxDisplay::GetFromWindow(this);
755 if ( dpy
!= wxNOT_FOUND
)
757 rect
= wxDisplay(dpy
).GetGeometry();
759 else // fall back to the main desktop
760 #endif // wxUSE_DISPLAY
762 // resize to the size of the desktop
763 wxCopyRECTToRect(wxGetWindowRect(::GetDesktopWindow()), rect
);
765 // FIXME: size of the bottom menu (toolbar)
766 // should be taken in account
767 rect
.height
+= rect
.y
;
774 // now flush the window style cache and actually go full-screen
775 long flags
= SWP_FRAMECHANGED
;
777 // showing the frame full screen should also show it if it's still
781 // don't call wxWindow version to avoid flicker from calling
782 // ::ShowWindow() -- we're going to show the window at the correct
783 // location directly below -- but do call the wxWindowBase version
784 // to sync the internal m_isShown flag
785 wxWindowBase::Show();
787 flags
|= SWP_SHOWWINDOW
;
790 SetWindowPos(GetHwnd(), HWND_TOP
,
791 rect
.x
, rect
.y
, rect
.width
, rect
.height
,
794 #if !defined(__HANDHELDPC__) && (defined(__WXWINCE__) && (_WIN32_WCE < 400))
795 ::SHFullScreen(GetHwnd(), SHFS_HIDETASKBAR
| SHFS_HIDESIPBUTTON
);
798 // finally send an event allowing the window to relayout itself &c
799 wxSizeEvent
event(rect
.GetSize(), GetId());
800 GetEventHandler()->ProcessEvent(event
);
802 else // stop showing full screen
804 #if !defined(__HANDHELDPC__) && (defined(__WXWINCE__) && (_WIN32_WCE < 400))
805 ::SHFullScreen(GetHwnd(), SHFS_SHOWTASKBAR
| SHFS_SHOWSIPBUTTON
);
807 Maximize(m_fsIsMaximized
);
808 SetWindowLong(GetHwnd(),GWL_STYLE
, m_fsOldWindowStyle
);
809 SetWindowPos(GetHwnd(),HWND_TOP
,m_fsOldSize
.x
, m_fsOldSize
.y
,
810 m_fsOldSize
.width
, m_fsOldSize
.height
, SWP_FRAMECHANGED
);
816 // ----------------------------------------------------------------------------
817 // wxTopLevelWindowMSW misc
818 // ----------------------------------------------------------------------------
820 void wxTopLevelWindowMSW::SetIcon(const wxIcon
& icon
)
822 SetIcons( wxIconBundle( icon
) );
825 void wxTopLevelWindowMSW::SetIcons(const wxIconBundle
& icons
)
827 wxTopLevelWindowBase::SetIcons(icons
);
829 #if defined(__WIN95__) && !defined(__WXMICROWIN__)
830 const wxIcon
& sml
= icons
.GetIcon( wxSize( 16, 16 ) );
831 if( sml
.Ok() && sml
.GetWidth() == 16 && sml
.GetHeight() == 16 )
833 ::SendMessage( GetHwndOf( this ), WM_SETICON
, ICON_SMALL
,
834 (LPARAM
)GetHiconOf(sml
) );
837 const wxIcon
& big
= icons
.GetIcon( wxSize( 32, 32 ) );
838 if( big
.Ok() && big
.GetWidth() == 32 && big
.GetHeight() == 32 )
840 ::SendMessage( GetHwndOf( this ), WM_SETICON
, ICON_BIG
,
841 (LPARAM
)GetHiconOf(big
) );
846 bool wxTopLevelWindowMSW::EnableCloseButton(bool enable
)
848 #if !defined(__WXMICROWIN__)
849 // get system (a.k.a. window) menu
850 HMENU hmenu
= GetSystemMenu(GetHwnd(), FALSE
/* get it */);
853 // no system menu at all -- ok if we want to remove the close button
854 // anyhow, but bad if we want to show it
858 // enabling/disabling the close item from it also automatically
859 // disables/enables the close title bar button
860 if ( ::EnableMenuItem(hmenu
, SC_CLOSE
,
862 (enable
? MF_ENABLED
: MF_GRAYED
)) == -1 )
864 wxLogLastError(_T("EnableMenuItem(SC_CLOSE)"));
869 // update appearance immediately
870 if ( !::DrawMenuBar(GetHwnd()) )
872 wxLogLastError(_T("DrawMenuBar"));
875 #endif // !__WXMICROWIN__
882 bool wxTopLevelWindowMSW::SetShape(const wxRegion
& region
)
884 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED
), false,
885 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
887 // The empty region signifies that the shape should be removed from the
889 if ( region
.IsEmpty() )
891 if (::SetWindowRgn(GetHwnd(), NULL
, TRUE
) == 0)
893 wxLogLastError(_T("SetWindowRgn"));
899 // Windows takes ownership of the region, so
900 // we'll have to make a copy of the region to give to it.
901 DWORD noBytes
= ::GetRegionData(GetHrgnOf(region
), 0, NULL
);
902 RGNDATA
*rgnData
= (RGNDATA
*) new char[noBytes
];
903 ::GetRegionData(GetHrgnOf(region
), noBytes
, rgnData
);
904 HRGN hrgn
= ::ExtCreateRegion(NULL
, noBytes
, rgnData
);
905 delete[] (char*) rgnData
;
907 // SetWindowRgn expects the region to be in coordinants
908 // relative to the window, not the client area. Figure
909 // out the offset, if any.
911 DWORD dwStyle
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
912 DWORD dwExStyle
= ::GetWindowLong(GetHwnd(), GWL_EXSTYLE
);
913 ::GetClientRect(GetHwnd(), &rect
);
914 ::AdjustWindowRectEx(&rect
, dwStyle
, FALSE
, dwExStyle
);
915 ::OffsetRgn(hrgn
, -rect
.left
, -rect
.top
);
917 // Now call the shape API with the new region.
918 if (::SetWindowRgn(GetHwnd(), hrgn
, TRUE
) == 0)
920 wxLogLastError(_T("SetWindowRgn"));
926 #endif // !__WXWINCE__
928 void wxTopLevelWindowMSW::RequestUserAttention(int flags
)
930 // check if we can use FlashWindowEx(): unfortunately a simple test for
931 // FLASHW_STOP doesn't work because MSVC6 headers do #define it but don't
932 // provide FlashWindowEx() declaration, so try to detect whether we have
933 // real headers for WINVER 0x0500 by checking for existence of a symbol not
934 // declated in MSVC6 header
935 #if defined(FLASHW_STOP) && defined(VK_XBUTTON1)
936 // available in the headers, check if it is supported by the system
937 typedef BOOL (WINAPI
*FlashWindowEx_t
)(FLASHWINFO
*pfwi
);
938 FlashWindowEx_t s_pfnFlashWindowEx
= NULL
;
939 if ( !s_pfnFlashWindowEx
)
941 wxDynamicLibrary
dllUser32(_T("user32.dll"));
942 s_pfnFlashWindowEx
= (FlashWindowEx_t
)
943 dllUser32
.GetSymbol(_T("FlashWindowEx"));
945 // we can safely unload user32.dll here, it's going to remain loaded as
946 // long as the program is running anyhow
949 if ( s_pfnFlashWindowEx
)
951 WinStruct
<FLASHWINFO
> fwi
;
952 fwi
.hwnd
= GetHwnd();
953 fwi
.dwFlags
= FLASHW_ALL
;
954 if ( flags
& wxUSER_ATTENTION_INFO
)
956 // just flash a few times
959 else // wxUSER_ATTENTION_ERROR
961 // flash until the user notices it
962 fwi
.dwFlags
|= FLASHW_TIMERNOFG
;
965 s_pfnFlashWindowEx(&fwi
);
967 else // FlashWindowEx() not available
968 #endif // FlashWindowEx() defined
972 ::FlashWindow(GetHwnd(), TRUE
);
973 #endif // __WXWINCE__
977 // ----------------------------------------------------------------------------
978 // wxTopLevelWindow event handling
979 // ----------------------------------------------------------------------------
981 // Default activation behaviour - set the focus for the first child
983 void wxTopLevelWindowMSW::OnActivate(wxActivateEvent
& event
)
985 if ( event
.GetActive() )
987 // restore focus to the child which was last focused unless we already
989 wxLogTrace(_T("focus"), _T("wxTLW %08x activated."), (int) m_hWnd
);
991 wxWindow
*winFocus
= FindFocus();
992 if ( !winFocus
|| wxGetTopLevelParent(winFocus
) != this )
994 wxWindow
*parent
= m_winLastFocused
? m_winLastFocused
->GetParent()
1001 wxSetFocusToChild(parent
, &m_winLastFocused
);
1004 else // deactivating
1006 // remember the last focused child if it is our child
1007 m_winLastFocused
= FindFocus();
1009 if ( m_winLastFocused
)
1011 // let it know that it doesn't have focus any more
1012 m_winLastFocused
->HandleKillFocus((WXHWND
)NULL
);
1014 // and don't remember it if it's a child from some other frame
1015 if ( wxGetTopLevelParent(m_winLastFocused
) != this )
1017 m_winLastFocused
= NULL
;
1021 wxLogTrace(_T("focus"),
1022 _T("wxTLW %08x deactivated, last focused: %08x."),
1024 (int) (m_winLastFocused
? GetHwndOf(m_winLastFocused
)
1031 // the DialogProc for all wxWidgets dialogs
1032 LONG APIENTRY _EXPORT
1033 wxDlgProc(HWND hDlg
,
1035 WPARAM
WXUNUSED(wParam
),
1036 LPARAM
WXUNUSED(lParam
))
1038 if ( message
== WM_INITDIALOG
)
1040 // under CE, add a "Ok" button in the dialog title bar and make it full
1043 // TODO: find the window for this HWND, and take into account
1044 // wxMAXIMIZE and wxCLOSE_BOX. For now, assume both are present.
1046 // Standard SDK doesn't have aygshell.dll: see
1047 // include/wx/msw/wince/libraries.h
1048 #if defined(__WXWINCE__) && !defined(__WINCE_STANDARDSDK__) && !defined(__HANDHELDPC__)
1049 SHINITDLGINFO shidi
;
1050 shidi
.dwMask
= SHIDIM_FLAGS
;
1051 shidi
.dwFlags
= SHIDIF_SIZEDLG
// take account of the SIP or menubar
1052 #ifndef __SMARTPHONE__
1057 SHInitDialog( &shidi
);
1058 #else // no SHInitDialog()
1063 // for almost all messages, returning FALSE means that we didn't process
1066 // for WM_INITDIALOG, returning TRUE tells system to set focus to
1067 // the first control in the dialog box, but as we set the focus
1068 // ourselves, we return FALSE for it as well
1072 // ============================================================================
1073 // wxTLWHiddenParentModule implementation
1074 // ============================================================================
1076 HWND
wxTLWHiddenParentModule::ms_hwnd
= NULL
;
1078 const wxChar
*wxTLWHiddenParentModule::ms_className
= NULL
;
1080 bool wxTLWHiddenParentModule::OnInit()
1083 ms_className
= NULL
;
1088 void wxTLWHiddenParentModule::OnExit()
1092 if ( !::DestroyWindow(ms_hwnd
) )
1094 wxLogLastError(_T("DestroyWindow(hidden TLW parent)"));
1102 if ( !::UnregisterClass(ms_className
, wxGetInstance()) )
1104 wxLogLastError(_T("UnregisterClass(\"wxTLWHiddenParent\")"));
1107 ms_className
= NULL
;
1112 HWND
wxTLWHiddenParentModule::GetHWND()
1116 if ( !ms_className
)
1118 static const wxChar
*HIDDEN_PARENT_CLASS
= _T("wxTLWHiddenParent");
1121 wxZeroMemory(wndclass
);
1123 wndclass
.lpfnWndProc
= DefWindowProc
;
1124 wndclass
.hInstance
= wxGetInstance();
1125 wndclass
.lpszClassName
= HIDDEN_PARENT_CLASS
;
1127 if ( !::RegisterClass(&wndclass
) )
1129 wxLogLastError(_T("RegisterClass(\"wxTLWHiddenParent\")"));
1133 ms_className
= HIDDEN_PARENT_CLASS
;
1137 ms_hwnd
= ::CreateWindow(ms_className
, wxEmptyString
, 0, 0, 0, 0, 0, NULL
,
1138 (HMENU
)NULL
, wxGetInstance(), NULL
);
1141 wxLogLastError(_T("CreateWindow(hidden TLW parent)"));