1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/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 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/toplevel.h"
30 #include "wx/dialog.h"
31 #include "wx/string.h"
35 #include "wx/containr.h" // wxSetFocusToChild()
38 #include "wx/module.h"
39 #include "wx/dynlib.h"
41 #include "wx/msw/private.h"
42 #if defined(__WXWINCE__) && !defined(__HANDHELDPC__)
45 // Standard SDK doesn't have aygshell.dll: see include/wx/msw/wince/libraries.h
46 #if _WIN32_WCE < 400 || !defined(__WINCE_STANDARDSDK__)
49 #include "wx/msw/wince/missing.h"
52 #include "wx/msw/missing.h"
53 #include "wx/msw/winundef.h"
55 #include "wx/display.h"
65 // ----------------------------------------------------------------------------
66 // stubs for missing functions under MicroWindows
67 // ----------------------------------------------------------------------------
71 // static inline bool IsIconic(HWND WXUNUSED(hwnd)) { return false; }
72 static inline bool IsZoomed(HWND
WXUNUSED(hwnd
)) { return false; }
74 #endif // __WXMICROWIN__
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
79 wxDlgProc(HWND hDlg
, UINT message
, WPARAM wParam
, LPARAM lParam
);
81 // ----------------------------------------------------------------------------
83 // ----------------------------------------------------------------------------
85 // the name of the default wxWidgets class
87 extern wxChar
*wxCanvasClassName
;
89 extern const wxChar
*wxCanvasClassName
;
92 // ----------------------------------------------------------------------------
93 // wxTLWHiddenParentModule: used to manage the hidden parent window (we need a
94 // module to ensure that the window is always deleted)
95 // ----------------------------------------------------------------------------
97 class wxTLWHiddenParentModule
: public wxModule
100 // module init/finalize
101 virtual bool OnInit();
102 virtual void OnExit();
104 // get the hidden window (creates on demand)
105 static HWND
GetHWND();
108 // the HWND of the hidden parent
111 // the class used to create it
112 static const wxChar
*ms_className
;
114 DECLARE_DYNAMIC_CLASS(wxTLWHiddenParentModule
)
117 IMPLEMENT_DYNAMIC_CLASS(wxTLWHiddenParentModule
, wxModule
)
119 // ============================================================================
120 // wxTopLevelWindowMSW implementation
121 // ============================================================================
123 BEGIN_EVENT_TABLE(wxTopLevelWindowMSW
, wxTopLevelWindowBase
)
124 EVT_ACTIVATE(wxTopLevelWindowMSW::OnActivate
)
127 // ----------------------------------------------------------------------------
128 // wxTopLevelWindowMSW creation
129 // ----------------------------------------------------------------------------
131 void wxTopLevelWindowMSW::Init()
134 m_maximizeOnShow
= false;
136 // Data to save/restore when calling ShowFullScreen
138 m_fsOldWindowStyle
= 0;
139 m_fsIsMaximized
= false;
140 m_fsIsShowing
= false;
142 m_winLastFocused
= (wxWindow
*)NULL
;
144 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
148 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
149 SHACTIVATEINFO
* info
= new SHACTIVATEINFO
;
151 info
->cbSize
= sizeof(SHACTIVATEINFO
);
153 m_activateInfo
= (void*) info
;
157 WXDWORD
wxTopLevelWindowMSW::MSWGetStyle(long style
, WXDWORD
*exflags
) const
159 // let the base class deal with the common styles but fix the ones which
160 // don't make sense for us (we also deal with the borders ourselves)
161 WXDWORD msflags
= wxWindow::MSWGetStyle
163 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exflags
164 ) & ~WS_CHILD
& ~WS_VISIBLE
;
166 // For some reason, WS_VISIBLE needs to be defined on creation for
167 // SmartPhone 2003. The title can fail to be displayed otherwise.
168 #if defined(__SMARTPHONE__) || (defined(__WXWINCE__) && _WIN32_WCE < 400)
169 msflags
|= WS_VISIBLE
;
170 ((wxTopLevelWindowMSW
*)this)->wxWindowBase::Show(true);
173 // first select the kind of window being created
175 // note that if we don't set WS_POPUP, Windows assumes WS_OVERLAPPED and
176 // creates a window with both caption and border, hence we need to use
177 // WS_POPUP in a few cases just to avoid having caption/border which we
180 // border and caption styles
181 if ( ( style
& wxRESIZE_BORDER
) && !IsAlwaysMaximized())
182 msflags
|= WS_THICKFRAME
;
183 else if ( exflags
&& ((style
& wxBORDER_DOUBLE
) || (style
& wxBORDER_RAISED
)) )
184 *exflags
|= WS_EX_DLGMODALFRAME
;
185 else if ( !(style
& wxBORDER_NONE
) )
186 msflags
|= WS_BORDER
;
192 // normally we consider that all windows without a caption must be popups,
193 // but CE is an exception: there windows normally do not have the caption
194 // but shouldn't be made popups as popups can't have menus and don't look
195 // like normal windows anyhow
197 // TODO: Smartphone appears to like wxCAPTION, but we should check that
199 #if defined(__SMARTPHONE__) || !defined(__WXWINCE__)
200 if ( style
& wxCAPTION
)
201 msflags
|= WS_CAPTION
;
205 #endif // !__WXWINCE__
208 // next translate the individual flags
209 if ( style
& wxMINIMIZE_BOX
)
210 msflags
|= WS_MINIMIZEBOX
;
211 if ( style
& wxMAXIMIZE_BOX
)
212 msflags
|= WS_MAXIMIZEBOX
;
215 if ( style
& wxSYSTEM_MENU
)
216 msflags
|= WS_SYSMENU
;
219 // NB: under CE these 2 styles are not supported currently, we should
220 // call Minimize()/Maximize() "manually" if we want to support them
221 if ( style
& wxMINIMIZE
)
222 msflags
|= WS_MINIMIZE
;
224 if ( style
& wxMAXIMIZE
)
225 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 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
312 bool wxTopLevelWindowMSW::HandleSettingChange(WXWPARAM wParam
, WXLPARAM lParam
)
314 SHACTIVATEINFO
*info
= (SHACTIVATEINFO
*) m_activateInfo
;
317 SHHandleWMSettingChange(GetHwnd(), wParam
, lParam
, info
);
320 return wxWindowMSW::HandleSettingChange(wParam
, lParam
);
324 WXLRESULT
wxTopLevelWindowMSW::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
327 bool processed
= false;
329 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
334 SHACTIVATEINFO
* info
= (SHACTIVATEINFO
*) m_activateInfo
;
338 if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
) flags
= SHA_INPUTDIALOG
;
339 SHHandleWMActivate(GetHwnd(), wParam
, lParam
, info
, flags
);
342 // This implicitly sends a wxEVT_ACTIVATE_APP event
344 wxTheApp
->SetActive(wParam
!= 0, FindFocus());
352 wxActivateEvent
event(wxEVT_HIBERNATE
, true, wxID_ANY
);
353 event
.SetEventObject(wxTheApp
);
354 processed
= wxTheApp
->ProcessEvent(event
);
362 rc
= wxTopLevelWindowBase::MSWWindowProc(message
, wParam
, lParam
);
367 bool wxTopLevelWindowMSW::CreateDialog(const void *dlgTemplate
,
368 const wxString
& title
,
372 #ifdef __WXMICROWIN__
373 // no dialogs support under MicroWin yet
374 return CreateFrame(title
, pos
, size
);
375 #else // !__WXMICROWIN__
376 wxWindow
*parent
= GetParent();
378 // for the dialogs without wxDIALOG_NO_PARENT style, use the top level
379 // app window as parent - this avoids creating modal dialogs without
381 if ( !parent
&& !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT
) )
383 parent
= wxTheApp
->GetTopWindow();
387 // don't use transient windows as parents, this is dangerous as it
388 // can lead to a crash if the parent is destroyed before the child
390 // also don't use the window which is currently hidden as then the
391 // dialog would be hidden as well
392 if ( (parent
->GetExtraStyle() & wxWS_EX_TRANSIENT
) ||
400 m_hWnd
= (WXHWND
)::CreateDialogIndirect
403 (DLGTEMPLATE
*)dlgTemplate
,
404 parent
? GetHwndOf(parent
) : NULL
,
410 wxFAIL_MSG(wxT("Failed to create dialog. Incorrect DLGTEMPLATE?"));
412 wxLogSysError(wxT("Can't create dialog using memory template"));
418 (void)MSWGetCreateWindowFlags(&exflags
);
422 ::SetWindowLong(GetHwnd(), GWL_EXSTYLE
, exflags
);
423 ::SetWindowPos(GetHwnd(),
424 exflags
& WS_EX_TOPMOST
? HWND_TOPMOST
: 0,
428 (exflags
& WS_EX_TOPMOST
? 0 : SWP_NOZORDER
) |
432 #if !defined(__WXWINCE__)
433 // For some reason, the system menu is activated when we use the
434 // WS_EX_CONTEXTHELP style, so let's set a reasonable icon
435 if ( exflags
& WS_EX_CONTEXTHELP
)
437 wxFrame
*winTop
= wxDynamicCast(wxTheApp
->GetTopWindow(), wxFrame
);
440 wxIcon icon
= winTop
->GetIcon();
443 ::SendMessage(GetHwnd(), WM_SETICON
,
445 (LPARAM
)GetHiconOf(icon
));
451 // move the dialog to its initial position without forcing repainting
453 (void)MSWGetCreateWindowCoords(pos
, size
, x
, y
, w
, h
);
455 if ( x
== (int)CW_USEDEFAULT
)
457 // centre it on the screen - what else can we do?
458 wxSize sizeDpy
= wxGetDisplaySize();
460 x
= (sizeDpy
.x
- w
) / 2;
461 y
= (sizeDpy
.y
- h
) / 2;
464 #if !defined(__WXWINCE__) || defined(__WINCE_STANDARDSDK__)
465 if ( !::MoveWindow(GetHwnd(), x
, y
, w
, h
, FALSE
) )
467 wxLogLastError(wxT("MoveWindow"));
471 if ( !title
.empty() )
473 ::SetWindowText(GetHwnd(), title
);
478 #ifdef __SMARTPHONE__
479 // Work around title non-display glitch
484 #endif // __WXMICROWIN__/!__WXMICROWIN__
487 bool wxTopLevelWindowMSW::CreateFrame(const wxString
& title
,
492 WXDWORD flags
= MSWGetCreateWindowFlags(&exflags
);
496 if (IsAlwaysMaximized())
505 bool result
= MSWCreate(wxCanvasClassName
, title
, pos
, sz
, flags
, exflags
);
510 bool wxTopLevelWindowMSW::Create(wxWindow
*parent
,
512 const wxString
& title
,
516 const wxString
& name
)
518 bool ret
wxDUMMY_INITIALIZE(false);
523 wxSize sizeReal
= size
;
524 if ( !sizeReal
.IsFullySpecified() )
526 sizeReal
.SetDefaults(GetDefaultSize());
529 m_windowStyle
= style
;
533 m_windowId
= id
== wxID_ANY
? NewControlId() : id
;
535 wxTopLevelWindows
.Append(this);
538 parent
->AddChild(this);
540 if ( GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
)
542 // we have different dialog templates to allows creation of dialogs
543 // with & without captions under MSWindows, resizeable or not (but a
544 // resizeable dialog always has caption - otherwise it would look too
547 // we need 3 additional WORDs for dialog menu, class and title (as we
548 // don't use DS_SETFONT we don't need the fourth WORD for the font)
549 static const int dlgsize
= sizeof(DLGTEMPLATE
) + (sizeof(WORD
) * 3);
550 DLGTEMPLATE
*dlgTemplate
= (DLGTEMPLATE
*)malloc(dlgsize
);
551 memset(dlgTemplate
, 0, dlgsize
);
553 // these values are arbitrary, they won't be used normally anyhow
556 dlgTemplate
->cx
= 144;
557 dlgTemplate
->cy
= 75;
559 // reuse the code in MSWGetStyle() but correct the results slightly for
561 dlgTemplate
->style
= MSWGetStyle(style
, NULL
);
563 // all dialogs are popups
564 dlgTemplate
->style
|= WS_POPUP
;
567 // force 3D-look if necessary, it looks impossibly ugly otherwise
568 if ( style
& (wxRESIZE_BORDER
| wxCAPTION
) )
569 dlgTemplate
->style
|= DS_MODALFRAME
;
572 ret
= CreateDialog(dlgTemplate
, title
, pos
, sizeReal
);
577 ret
= CreateFrame(title
, pos
, sizeReal
);
581 if ( ret
&& !(GetWindowStyleFlag() & wxCLOSE_BOX
) )
583 EnableCloseButton(false);
587 // for standard dialogs the dialog manager generates WM_CHANGEUISTATE
588 // itself but for custom windows we have to do it ourselves in order to
589 // make the keyboard indicators (such as underlines for accelerators and
590 // focus rectangles) work under Win2k+
593 MSWUpdateUIState(UIS_INITIALIZE
);
596 // Note: if we include PocketPC in this test, dialogs can fail to show up,
597 // for example the text entry dialog in the dialogs sample. Problem with Maximise()?
598 #if defined(__WXWINCE__) && (defined(__SMARTPHONE__) || defined(__WINCE_STANDARDSDK__))
599 if ( ( style
& wxMAXIMIZE
) || IsAlwaysMaximized() )
605 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
606 SetRightMenu(); // to nothing for initialization
612 wxTopLevelWindowMSW::~wxTopLevelWindowMSW()
614 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
615 SHACTIVATEINFO
* info
= (SHACTIVATEINFO
*) m_activateInfo
;
617 m_activateInfo
= NULL
;
620 // after destroying an owned window, Windows activates the next top level
621 // window in Z order but it may be different from our owner (to reproduce
622 // this simply Alt-TAB to another application and back before closing the
623 // owned frame) whereas we always want to yield activation to our parent
624 if ( HasFlag(wxFRAME_FLOAT_ON_PARENT
) )
626 wxWindow
*parent
= GetParent();
629 ::BringWindowToTop(GetHwndOf(parent
));
634 // ----------------------------------------------------------------------------
635 // wxTopLevelWindowMSW showing
636 // ----------------------------------------------------------------------------
638 void wxTopLevelWindowMSW::DoShowWindow(int nShowCmd
)
640 ::ShowWindow(GetHwnd(), nShowCmd
);
642 m_iconized
= nShowCmd
== SW_MINIMIZE
;
645 bool wxTopLevelWindowMSW::Show(bool show
)
647 // don't use wxWindow version as we want to call DoShowWindow() ourselves
648 if ( !wxWindowBase::Show(show
) )
654 if ( m_maximizeOnShow
)
657 nShowCmd
= SW_MAXIMIZE
;
659 // This is necessary, or no window appears
660 #if defined( __WINCE_STANDARDSDK__) || defined(__SMARTPHONE__)
661 DoShowWindow(SW_SHOW
);
664 m_maximizeOnShow
= false;
668 if ( GetWindowStyle() & wxFRAME_TOOL_WINDOW
)
669 nShowCmd
= SW_SHOWNA
;
679 DoShowWindow(nShowCmd
);
681 #if defined(__WXWINCE__) && (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__))
682 // Addornments have to be added when the frame is the correct size
683 wxFrame
* frame
= wxDynamicCast(this, wxFrame
);
684 if (frame
&& frame
->GetMenuBar())
685 frame
->GetMenuBar()->AddAdornments(GetWindowStyleFlag());
691 // ----------------------------------------------------------------------------
692 // wxTopLevelWindowMSW maximize/minimize
693 // ----------------------------------------------------------------------------
695 void wxTopLevelWindowMSW::Maximize(bool maximize
)
699 // just maximize it directly
700 DoShowWindow(maximize
? SW_MAXIMIZE
: SW_RESTORE
);
704 // we can't maximize the hidden frame because it shows it as well,
705 // so just remember that we should do it later in this case
706 m_maximizeOnShow
= maximize
;
708 // after calling Maximize() the client code expects to get the frame
709 // "real" size and doesn't want to know that, because of implementation
710 // details, the frame isn't really maximized yet but will be only once
711 // it's shown, so return our size as it will be then in this case
714 // unfortunately we don't know which display we're on yet so we
715 // have to use the default one
716 SetSize(wxGetClientDisplayRect().GetSize());
718 //else: can't do anything in this case, we don't have the old size
722 bool wxTopLevelWindowMSW::IsMaximized() const
724 return IsAlwaysMaximized() ||
725 #if !defined(__SMARTPHONE__) && !defined(__POCKETPC__)
726 (::IsZoomed(GetHwnd()) != 0) ||
731 void wxTopLevelWindowMSW::Iconize(bool iconize
)
733 DoShowWindow(iconize
? SW_MINIMIZE
: SW_RESTORE
);
736 bool wxTopLevelWindowMSW::IsIconized() const
741 // don't use m_iconized, it may be briefly out of sync with the real state
742 // as it's only modified when we receive a WM_SIZE and we could be called
743 // from an event handler from one of the messages we receive before it,
745 return ::IsIconic(GetHwnd()) != 0;
749 void wxTopLevelWindowMSW::Restore()
751 DoShowWindow(SW_RESTORE
);
754 // ----------------------------------------------------------------------------
755 // wxTopLevelWindowMSW fullscreen
756 // ----------------------------------------------------------------------------
758 bool wxTopLevelWindowMSW::ShowFullScreen(bool show
, long style
)
760 if ( show
== IsFullScreen() )
766 m_fsIsShowing
= show
;
772 // zap the frame borders
774 // save the 'normal' window style
775 m_fsOldWindowStyle
= GetWindowLong(GetHwnd(), GWL_STYLE
);
777 // save the old position, width & height, maximize state
778 m_fsOldSize
= GetRect();
779 m_fsIsMaximized
= IsMaximized();
781 // decide which window style flags to turn off
782 LONG newStyle
= m_fsOldWindowStyle
;
785 if (style
& wxFULLSCREEN_NOBORDER
)
787 offFlags
|= WS_BORDER
;
789 offFlags
|= WS_THICKFRAME
;
792 if (style
& wxFULLSCREEN_NOCAPTION
)
793 offFlags
|= WS_CAPTION
| WS_SYSMENU
;
795 newStyle
&= ~offFlags
;
797 // change our window style to be compatible with full-screen mode
798 ::SetWindowLong(GetHwnd(), GWL_STYLE
, newStyle
);
802 // resize to the size of the display containing us
803 int dpy
= wxDisplay::GetFromWindow(this);
804 if ( dpy
!= wxNOT_FOUND
)
806 rect
= wxDisplay(dpy
).GetGeometry();
808 else // fall back to the main desktop
809 #endif // wxUSE_DISPLAY
811 // resize to the size of the desktop
812 wxCopyRECTToRect(wxGetWindowRect(::GetDesktopWindow()), rect
);
814 // FIXME: size of the bottom menu (toolbar)
815 // should be taken in account
816 rect
.height
+= rect
.y
;
823 // now flush the window style cache and actually go full-screen
824 long flags
= SWP_FRAMECHANGED
;
826 // showing the frame full screen should also show it if it's still
830 // don't call wxWindow version to avoid flicker from calling
831 // ::ShowWindow() -- we're going to show the window at the correct
832 // location directly below -- but do call the wxWindowBase version
833 // to sync the internal m_isShown flag
834 wxWindowBase::Show();
836 flags
|= SWP_SHOWWINDOW
;
839 SetWindowPos(GetHwnd(), HWND_TOP
,
840 rect
.x
, rect
.y
, rect
.width
, rect
.height
,
843 #if !defined(__HANDHELDPC__) && (defined(__WXWINCE__) && (_WIN32_WCE < 400))
844 ::SHFullScreen(GetHwnd(), SHFS_HIDETASKBAR
| SHFS_HIDESIPBUTTON
);
847 // finally send an event allowing the window to relayout itself &c
848 wxSizeEvent
event(rect
.GetSize(), GetId());
849 GetEventHandler()->ProcessEvent(event
);
851 else // stop showing full screen
853 #if !defined(__HANDHELDPC__) && (defined(__WXWINCE__) && (_WIN32_WCE < 400))
854 ::SHFullScreen(GetHwnd(), SHFS_SHOWTASKBAR
| SHFS_SHOWSIPBUTTON
);
856 Maximize(m_fsIsMaximized
);
857 SetWindowLong(GetHwnd(),GWL_STYLE
, m_fsOldWindowStyle
);
858 SetWindowPos(GetHwnd(),HWND_TOP
,m_fsOldSize
.x
, m_fsOldSize
.y
,
859 m_fsOldSize
.width
, m_fsOldSize
.height
, SWP_FRAMECHANGED
);
865 // ----------------------------------------------------------------------------
866 // wxTopLevelWindowMSW misc
867 // ----------------------------------------------------------------------------
869 void wxTopLevelWindowMSW::SetTitle( const wxString
& title
)
874 wxString
wxTopLevelWindowMSW::GetTitle() const
879 void wxTopLevelWindowMSW::SetIcon(const wxIcon
& icon
)
881 SetIcons( wxIconBundle( icon
) );
884 void wxTopLevelWindowMSW::SetIcons(const wxIconBundle
& icons
)
886 wxTopLevelWindowBase::SetIcons(icons
);
888 #if !defined(__WXMICROWIN__)
889 const wxIcon
& sml
= icons
.GetIcon( wxSize( 16, 16 ) );
890 if( sml
.Ok() && sml
.GetWidth() == 16 && sml
.GetHeight() == 16 )
892 ::SendMessage( GetHwndOf( this ), WM_SETICON
, ICON_SMALL
,
893 (LPARAM
)GetHiconOf(sml
) );
896 const wxIcon
& big
= icons
.GetIcon( wxSize( 32, 32 ) );
897 if( big
.Ok() && big
.GetWidth() == 32 && big
.GetHeight() == 32 )
899 ::SendMessage( GetHwndOf( this ), WM_SETICON
, ICON_BIG
,
900 (LPARAM
)GetHiconOf(big
) );
902 #endif // !__WXMICROWIN__
905 bool wxTopLevelWindowMSW::EnableCloseButton(bool enable
)
907 #if !defined(__WXMICROWIN__)
908 // get system (a.k.a. window) menu
909 HMENU hmenu
= GetSystemMenu(GetHwnd(), FALSE
/* get it */);
912 // no system menu at all -- ok if we want to remove the close button
913 // anyhow, but bad if we want to show it
917 // enabling/disabling the close item from it also automatically
918 // disables/enables the close title bar button
919 if ( ::EnableMenuItem(hmenu
, SC_CLOSE
,
921 (enable
? MF_ENABLED
: MF_GRAYED
)) == -1 )
923 wxLogLastError(_T("EnableMenuItem(SC_CLOSE)"));
928 // update appearance immediately
929 if ( !::DrawMenuBar(GetHwnd()) )
931 wxLogLastError(_T("DrawMenuBar"));
934 #endif // !__WXMICROWIN__
941 bool wxTopLevelWindowMSW::SetShape(const wxRegion
& region
)
943 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED
), false,
944 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
946 // The empty region signifies that the shape should be removed from the
948 if ( region
.IsEmpty() )
950 if (::SetWindowRgn(GetHwnd(), NULL
, TRUE
) == 0)
952 wxLogLastError(_T("SetWindowRgn"));
958 // Windows takes ownership of the region, so
959 // we'll have to make a copy of the region to give to it.
960 DWORD noBytes
= ::GetRegionData(GetHrgnOf(region
), 0, NULL
);
961 RGNDATA
*rgnData
= (RGNDATA
*) new char[noBytes
];
962 ::GetRegionData(GetHrgnOf(region
), noBytes
, rgnData
);
963 HRGN hrgn
= ::ExtCreateRegion(NULL
, noBytes
, rgnData
);
964 delete[] (char*) rgnData
;
966 // SetWindowRgn expects the region to be in coordinants
967 // relative to the window, not the client area. Figure
968 // out the offset, if any.
970 DWORD dwStyle
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
971 DWORD dwExStyle
= ::GetWindowLong(GetHwnd(), GWL_EXSTYLE
);
972 ::GetClientRect(GetHwnd(), &rect
);
973 ::AdjustWindowRectEx(&rect
, dwStyle
, FALSE
, dwExStyle
);
974 ::OffsetRgn(hrgn
, -rect
.left
, -rect
.top
);
976 // Now call the shape API with the new region.
977 if (::SetWindowRgn(GetHwnd(), hrgn
, TRUE
) == 0)
979 wxLogLastError(_T("SetWindowRgn"));
985 #endif // !__WXWINCE__
987 void wxTopLevelWindowMSW::RequestUserAttention(int flags
)
989 // check if we can use FlashWindowEx(): unfortunately a simple test for
990 // FLASHW_STOP doesn't work because MSVC6 headers do #define it but don't
991 // provide FlashWindowEx() declaration, so try to detect whether we have
992 // real headers for WINVER 0x0500 by checking for existence of a symbol not
993 // declated in MSVC6 header
994 #if defined(FLASHW_STOP) && defined(VK_XBUTTON1)
995 // available in the headers, check if it is supported by the system
996 typedef BOOL (WINAPI
*FlashWindowEx_t
)(FLASHWINFO
*pfwi
);
997 FlashWindowEx_t s_pfnFlashWindowEx
= NULL
;
998 if ( !s_pfnFlashWindowEx
)
1000 wxDynamicLibrary
dllUser32(_T("user32.dll"));
1001 s_pfnFlashWindowEx
= (FlashWindowEx_t
)
1002 dllUser32
.GetSymbol(_T("FlashWindowEx"));
1004 // we can safely unload user32.dll here, it's going to remain loaded as
1005 // long as the program is running anyhow
1008 if ( s_pfnFlashWindowEx
)
1010 WinStruct
<FLASHWINFO
> fwi
;
1011 fwi
.hwnd
= GetHwnd();
1012 fwi
.dwFlags
= FLASHW_ALL
;
1013 if ( flags
& wxUSER_ATTENTION_INFO
)
1015 // just flash a few times
1018 else // wxUSER_ATTENTION_ERROR
1020 // flash until the user notices it
1021 fwi
.dwFlags
|= FLASHW_TIMERNOFG
;
1024 s_pfnFlashWindowEx(&fwi
);
1026 else // FlashWindowEx() not available
1027 #endif // FlashWindowEx() defined
1031 ::FlashWindow(GetHwnd(), TRUE
);
1032 #endif // __WXWINCE__
1036 // ----------------------------------------------------------------------------
1037 // wxTopLevelWindow event handling
1038 // ----------------------------------------------------------------------------
1040 // Default activation behaviour - set the focus for the first child
1042 void wxTopLevelWindowMSW::OnActivate(wxActivateEvent
& event
)
1044 if ( event
.GetActive() )
1046 // restore focus to the child which was last focused unless we already
1048 wxLogTrace(_T("focus"), _T("wxTLW %08x activated."), (int) m_hWnd
);
1050 wxWindow
*winFocus
= FindFocus();
1051 if ( !winFocus
|| wxGetTopLevelParent(winFocus
) != this )
1053 wxWindow
*parent
= m_winLastFocused
? m_winLastFocused
->GetParent()
1060 wxSetFocusToChild(parent
, &m_winLastFocused
);
1063 else // deactivating
1065 // remember the last focused child if it is our child
1066 m_winLastFocused
= FindFocus();
1068 if ( m_winLastFocused
)
1070 // let it know that it doesn't have focus any more
1071 m_winLastFocused
->HandleKillFocus((WXHWND
)NULL
);
1073 // and don't remember it if it's a child from some other frame
1074 if ( wxGetTopLevelParent(m_winLastFocused
) != this )
1076 m_winLastFocused
= NULL
;
1080 wxLogTrace(_T("focus"),
1081 _T("wxTLW %08x deactivated, last focused: %08x."),
1083 (int) (m_winLastFocused
? GetHwndOf(m_winLastFocused
)
1090 // the DialogProc for all wxWidgets dialogs
1091 LONG APIENTRY _EXPORT
1092 wxDlgProc(HWND hDlg
,
1094 WPARAM
WXUNUSED(wParam
),
1095 LPARAM
WXUNUSED(lParam
))
1101 // under CE, add a "Ok" button in the dialog title bar and make it full
1104 // TODO: find the window for this HWND, and take into account
1105 // wxMAXIMIZE and wxCLOSE_BOX. For now, assume both are present.
1107 // Standard SDK doesn't have aygshell.dll: see
1108 // include/wx/msw/wince/libraries.h
1109 #if defined(__WXWINCE__) && !defined(__WINCE_STANDARDSDK__) && !defined(__HANDHELDPC__)
1110 SHINITDLGINFO shidi
;
1111 shidi
.dwMask
= SHIDIM_FLAGS
;
1112 shidi
.dwFlags
= SHIDIF_SIZEDLG
// take account of the SIP or menubar
1113 #ifndef __SMARTPHONE__
1118 SHInitDialog( &shidi
);
1119 #else // no SHInitDialog()
1122 // for WM_INITDIALOG, returning TRUE tells system to set focus to
1123 // the first control in the dialog box, but as we set the focus
1124 // ourselves, we return FALSE for it as well
1129 // for almost all messages, returning FALSE means that we didn't process
1134 // ============================================================================
1135 // wxTLWHiddenParentModule implementation
1136 // ============================================================================
1138 HWND
wxTLWHiddenParentModule::ms_hwnd
= NULL
;
1140 const wxChar
*wxTLWHiddenParentModule::ms_className
= NULL
;
1142 bool wxTLWHiddenParentModule::OnInit()
1145 ms_className
= NULL
;
1150 void wxTLWHiddenParentModule::OnExit()
1154 if ( !::DestroyWindow(ms_hwnd
) )
1156 wxLogLastError(_T("DestroyWindow(hidden TLW parent)"));
1164 if ( !::UnregisterClass(ms_className
, wxGetInstance()) )
1166 wxLogLastError(_T("UnregisterClass(\"wxTLWHiddenParent\")"));
1169 ms_className
= NULL
;
1174 HWND
wxTLWHiddenParentModule::GetHWND()
1178 if ( !ms_className
)
1180 static const wxChar
*HIDDEN_PARENT_CLASS
= _T("wxTLWHiddenParent");
1183 wxZeroMemory(wndclass
);
1185 wndclass
.lpfnWndProc
= DefWindowProc
;
1186 wndclass
.hInstance
= wxGetInstance();
1187 wndclass
.lpszClassName
= HIDDEN_PARENT_CLASS
;
1189 if ( !::RegisterClass(&wndclass
) )
1191 wxLogLastError(_T("RegisterClass(\"wxTLWHiddenParent\")"));
1195 ms_className
= HIDDEN_PARENT_CLASS
;
1199 ms_hwnd
= ::CreateWindow(ms_className
, wxEmptyString
, 0, 0, 0, 0, 0, NULL
,
1200 (HMENU
)NULL
, wxGetInstance(), NULL
);
1203 wxLogLastError(_T("CreateWindow(hidden TLW parent)"));