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 license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
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/string.h"
40 #include "wx/msw/private.h"
42 // ----------------------------------------------------------------------------
43 // stubs for missing functions under MicroWindows
44 // ----------------------------------------------------------------------------
48 // static inline bool IsIconic(HWND WXUNUSED(hwnd)) { return FALSE; }
49 static inline bool IsZoomed(HWND
WXUNUSED(hwnd
)) { return FALSE
; }
51 #endif // __WXMICROWIN__
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 // list of all frames and modeless dialogs
58 wxWindowList wxModelessWindows
;
60 // the name of the default wxWindows class
61 extern const wxChar
*wxCanvasClassName
;
63 // ============================================================================
64 // wxTopLevelWindowMSW implementation
65 // ============================================================================
69 wxDlgProc(HWND
WXUNUSED(hWnd
), UINT message
, WPARAM
WXUNUSED(wParam
), LPARAM
WXUNUSED(lParam
))
71 if ( message
== WM_INITDIALOG
)
73 // for this message, returning TRUE tells system to set focus to the
74 // first control in the dialog box
79 // for all the other ones, FALSE means that we didn't process the
85 // ----------------------------------------------------------------------------
86 // wxTopLevelWindowMSW creation
87 // ----------------------------------------------------------------------------
89 void wxTopLevelWindowMSW::Init()
92 m_maximizeOnShow
= FALSE
;
94 // unlike (almost?) all other windows, frames are created hidden
97 // Data to save/restore when calling ShowFullScreen
99 m_fsOldWindowStyle
= 0;
100 m_fsIsMaximized
= FALSE
;
101 m_fsIsShowing
= FALSE
;
104 WXDWORD
wxTopLevelWindowMSW::MSWGetStyle(long style
, WXDWORD
*exflags
) const
106 // let the base class deal with the common styles but fix the ones which
107 // don't make sense for us (we also deal with the borders ourselves)
108 WXDWORD msflags
= wxWindow::MSWGetStyle
110 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exflags
113 // first select the kind of window being created
115 // note that if we don't set WS_POPUP, Windows assumes WS_OVERLAPPED and
116 // creates a window with both caption and border, hence we also test it
117 // below in some other cases
118 if ( style
& wxFRAME_TOOL_WINDOW
)
121 msflags
|= WS_OVERLAPPED
;
123 // border and caption styles
124 if ( style
& wxRESIZE_BORDER
)
125 msflags
|= WS_THICKFRAME
;
126 else if ( !(style
& wxBORDER_NONE
) )
127 msflags
|= WS_BORDER
;
131 if ( style
& wxCAPTION
)
132 msflags
|= WS_CAPTION
;
136 // next translate the individual flags
137 if ( style
& wxMINIMIZE_BOX
)
138 msflags
|= WS_MINIMIZEBOX
;
139 if ( style
& wxMAXIMIZE_BOX
)
140 msflags
|= WS_MAXIMIZEBOX
;
141 if ( style
& wxSYSTEM_MENU
)
142 msflags
|= WS_SYSMENU
;
143 if ( style
& wxMINIMIZE
)
144 msflags
|= WS_MINIMIZE
;
145 if ( style
& wxMAXIMIZE
)
146 msflags
|= WS_MAXIMIZE
;
148 // Keep this here because it saves recoding this function in wxTinyFrame
149 #if wxUSE_ITSY_BITSY && !defined(__WIN32__)
150 if ( style
& wxTINY_CAPTION_VERT
)
151 msflags
|= IBS_VERTCAPTION
;
152 if ( style
& wxTINY_CAPTION_HORIZ
)
153 msflags
|= IBS_HORZCAPTION
;
155 if ( style
& (wxTINY_CAPTION_VERT
| wxTINY_CAPTION_HORIZ
) )
156 msflags
|= WS_CAPTION
;
161 #if !defined(__WIN16__) && !defined(__SC__)
162 if ( !(GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
) )
164 // make all frames appear in the win9x shell taskbar unless
165 // wxFRAME_TOOL_WINDOW or wxFRAME_NO_TASKBAR is given - without
166 // giving them WS_EX_APPWINDOW style, the child (i.e. owned) frames
167 // wouldn't appear in it
168 if ( (style
& wxFRAME_TOOL_WINDOW
) || (style
& wxFRAME_NO_TASKBAR
) )
169 *exflags
|= WS_EX_TOOLWINDOW
;
170 else if ( !(style
& wxFRAME_NO_TASKBAR
) )
171 *exflags
|= WS_EX_APPWINDOW
;
175 if ( style
& wxSTAY_ON_TOP
)
176 *exflags
|= WS_EX_TOPMOST
;
179 if ( GetExtraStyle() & wxFRAME_EX_CONTEXTHELP
)
180 *exflags
|= WS_EX_CONTEXTHELP
;
187 bool wxTopLevelWindowMSW::CreateDialog(const void *dlgTemplate
,
188 const wxString
& title
,
192 #ifdef __WXMICROWIN__
193 // no dialogs support under MicroWin yet
194 return CreateFrame(title
, pos
, size
);
195 #else // !__WXMICROWIN__
196 wxWindow
*parent
= GetParent();
198 // for the dialogs without wxDIALOG_NO_PARENT style, use the top level
199 // app window as parent - this avoids creating modal dialogs without
201 if ( !parent
&& !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT
) )
203 parent
= wxTheApp
->GetTopWindow();
207 // don't use transient windows as parents, this is dangerous as it
208 // can lead to a crash if the parent is destroyed before the child
210 // also don't use the window which is currently hidden as then the
211 // dialog would be hidden as well
212 if ( (parent
->GetExtraStyle() & wxWS_EX_TRANSIENT
) ||
220 m_hWnd
= (WXHWND
)::CreateDialogIndirect
223 (DLGTEMPLATE
*)dlgTemplate
,
224 parent
? GetHwndOf(parent
) : NULL
,
230 wxFAIL_MSG(_("Failed to create dialog. Incorrect DLGTEMPLATE?"));
232 wxLogSysError(_("Can't create dialog using memory template"));
238 (void)MSWGetCreateWindowFlags(&exflags
);
242 ::SetWindowLong(GetHwnd(), GWL_EXSTYLE
, exflags
);
243 ::SetWindowPos(GetHwnd(), NULL
, 0, 0, 0, 0,
250 #if defined(__WIN95__)
251 // For some reason, the system menu is activated when we use the
252 // WS_EX_CONTEXTHELP style, so let's set a reasonable icon
253 if ( exflags
& WS_EX_CONTEXTHELP
)
255 wxFrame
*winTop
= wxDynamicCast(wxTheApp
->GetTopWindow(), wxFrame
);
258 wxIcon icon
= winTop
->GetIcon();
261 ::SendMessage(GetHwnd(), WM_SETICON
,
263 (LPARAM
)GetHiconOf(icon
));
269 // move the dialog to its initial position without forcing repainting
271 if ( !MSWGetCreateWindowCoords(pos
, size
, x
, y
, w
, h
) )
274 w
= (int)CW_USEDEFAULT
;
277 // we can't use CW_USEDEFAULT here as we're not calling CreateWindow()
278 // and passing CW_USEDEFAULT to MoveWindow() results in resizing the
279 // window to (0, 0) size which breaks quite a lot of things, e.g. the
280 // sizer calculation in wxSizer::Fit()
281 if ( w
== (int)CW_USEDEFAULT
)
283 // the exact number doesn't matter, the dialog will be resized
284 // again soon anyhow but it should be big enough to allow
285 // calculation relying on "totalSize - clientSize > 0" work, i.e.
286 // at least greater than the title bar height
291 if ( x
== (int)CW_USEDEFAULT
)
293 // centre it on the screen - what else can we do?
294 wxSize sizeDpy
= wxGetDisplaySize();
296 x
= (sizeDpy
.x
- w
) / 2;
297 y
= (sizeDpy
.y
- h
) / 2;
300 if ( !::MoveWindow(GetHwnd(), x
, y
, w
, h
, FALSE
) )
302 wxLogLastError(wxT("MoveWindow"));
305 if ( !title
.empty() )
307 ::SetWindowText(GetHwnd(), title
);
313 #endif // __WXMICROWIN__/!__WXMICROWIN__
316 bool wxTopLevelWindowMSW::CreateFrame(const wxString
& title
,
321 WXDWORD flags
= MSWGetCreateWindowFlags(&exflags
);
323 return MSWCreate(wxCanvasClassName
, title
, pos
, size
, flags
, exflags
);
326 bool wxTopLevelWindowMSW::Create(wxWindow
*parent
,
328 const wxString
& title
,
332 const wxString
& name
)
337 m_windowStyle
= style
;
341 m_windowId
= id
== -1 ? NewControlId() : id
;
343 wxTopLevelWindows
.Append(this);
346 parent
->AddChild(this);
348 if ( GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
)
350 // we have different dialog templates to allows creation of dialogs
351 // with & without captions under MSWindows, resizeable or not (but a
352 // resizeable dialog always has caption - otherwise it would look too
355 // we need 3 additional WORDs for dialog menu, class and title (as we
356 // don't use DS_SETFONT we don't need the fourth WORD for the font)
357 static const int dlgsize
= sizeof(DLGTEMPLATE
) + (sizeof(WORD
) * 3);
358 DLGTEMPLATE
*dlgTemplate
= (DLGTEMPLATE
*)malloc(dlgsize
);
359 memset(dlgTemplate
, 0, dlgsize
);
361 // these values are arbitrary, they won't be used normally anyhow
364 dlgTemplate
->cx
= 144;
365 dlgTemplate
->cy
= 75;
367 // reuse the code in MSWGetStyle() but correct the results slightly for
369 dlgTemplate
->style
= MSWGetStyle(style
, NULL
);
371 // all dialogs are popups
372 dlgTemplate
->style
|= WS_POPUP
;
374 // force 3D-look if necessary, it looks impossibly ugly otherwise
375 if ( style
& (wxRESIZE_BORDER
| wxCAPTION
) )
376 dlgTemplate
->style
|= DS_MODALFRAME
;
378 bool ret
= CreateDialog(dlgTemplate
, title
, pos
, size
);
385 return CreateFrame(title
, pos
, size
);
389 wxTopLevelWindowMSW::~wxTopLevelWindowMSW()
391 wxTopLevelWindows
.DeleteObject(this);
393 if ( wxModelessWindows
.Find(this) )
394 wxModelessWindows
.DeleteObject(this);
396 // If this is the last top-level window, exit.
397 if ( wxTheApp
&& (wxTopLevelWindows
.Number() == 0) )
399 wxTheApp
->SetTopWindow(NULL
);
401 if ( wxTheApp
->GetExitOnFrameDelete() )
403 ::PostQuitMessage(0);
408 // ----------------------------------------------------------------------------
409 // wxTopLevelWindowMSW showing
410 // ----------------------------------------------------------------------------
412 void wxTopLevelWindowMSW::DoShowWindow(int nShowCmd
)
414 ::ShowWindow(GetHwnd(), nShowCmd
);
416 m_iconized
= nShowCmd
== SW_MINIMIZE
;
419 bool wxTopLevelWindowMSW::Show(bool show
)
421 // don't use wxWindow version as we want to call DoShowWindow() ourselves
422 if ( !wxWindowBase::Show(show
) )
428 if ( m_maximizeOnShow
)
431 nShowCmd
= SW_MAXIMIZE
;
433 m_maximizeOnShow
= FALSE
;
445 DoShowWindow(nShowCmd
);
449 ::BringWindowToTop(GetHwnd());
451 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, m_windowId
);
452 event
.SetEventObject( this );
453 GetEventHandler()->ProcessEvent(event
);
457 // Try to highlight the correct window (the parent)
460 HWND hWndParent
= GetHwndOf(GetParent());
462 ::BringWindowToTop(hWndParent
);
469 // ----------------------------------------------------------------------------
470 // wxTopLevelWindowMSW maximize/minimize
471 // ----------------------------------------------------------------------------
473 void wxTopLevelWindowMSW::Maximize(bool maximize
)
477 // just maximize it directly
478 DoShowWindow(maximize
? SW_MAXIMIZE
: SW_RESTORE
);
482 // we can't maximize the hidden frame because it shows it as well, so
483 // just remember that we should do it later in this case
484 m_maximizeOnShow
= TRUE
;
488 bool wxTopLevelWindowMSW::IsMaximized() const
490 return ::IsZoomed(GetHwnd()) != 0;
493 void wxTopLevelWindowMSW::Iconize(bool iconize
)
495 DoShowWindow(iconize
? SW_MINIMIZE
: SW_RESTORE
);
498 bool wxTopLevelWindowMSW::IsIconized() const
500 // also update the current state
501 ((wxTopLevelWindowMSW
*)this)->m_iconized
= ::IsIconic(GetHwnd()) != 0;
506 void wxTopLevelWindowMSW::Restore()
508 DoShowWindow(SW_RESTORE
);
511 // ----------------------------------------------------------------------------
512 // wxTopLevelWindowMSW fullscreen
513 // ----------------------------------------------------------------------------
515 bool wxTopLevelWindowMSW::ShowFullScreen(bool show
, long style
)
522 m_fsIsShowing
= TRUE
;
525 // zap the frame borders
527 // save the 'normal' window style
528 m_fsOldWindowStyle
= GetWindowLong((HWND
)GetHWND(), GWL_STYLE
);
530 // save the old position, width & height, maximize state
531 m_fsOldSize
= GetRect();
532 m_fsIsMaximized
= IsMaximized();
534 // decide which window style flags to turn off
535 LONG newStyle
= m_fsOldWindowStyle
;
538 if (style
& wxFULLSCREEN_NOBORDER
)
539 offFlags
|= WS_BORDER
| WS_THICKFRAME
;
540 if (style
& wxFULLSCREEN_NOCAPTION
)
541 offFlags
|= (WS_CAPTION
| WS_SYSMENU
);
543 newStyle
&= (~offFlags
);
545 // change our window style to be compatible with full-screen mode
546 ::SetWindowLong((HWND
)GetHWND(), GWL_STYLE
, newStyle
);
548 // resize to the size of the desktop
551 RECT rect
= wxGetWindowRect(::GetDesktopWindow());
552 width
= rect
.right
- rect
.left
;
553 height
= rect
.bottom
- rect
.top
;
555 SetSize(width
, height
);
557 // now flush the window style cache and actually go full-screen
558 SetWindowPos((HWND
)GetHWND(), HWND_TOP
, 0, 0, width
, height
, SWP_FRAMECHANGED
);
560 wxSizeEvent
event(wxSize(width
, height
), GetId());
561 GetEventHandler()->ProcessEvent(event
);
570 m_fsIsShowing
= FALSE
;
572 Maximize(m_fsIsMaximized
);
573 SetWindowLong((HWND
)GetHWND(),GWL_STYLE
, m_fsOldWindowStyle
);
574 SetWindowPos((HWND
)GetHWND(),HWND_TOP
,m_fsOldSize
.x
, m_fsOldSize
.y
,
575 m_fsOldSize
.width
, m_fsOldSize
.height
, SWP_FRAMECHANGED
);
581 // ----------------------------------------------------------------------------
582 // wxTopLevelWindowMSW misc
583 // ----------------------------------------------------------------------------
585 void wxTopLevelWindowMSW::SetIcon(const wxIcon
& icon
)
588 wxTopLevelWindowBase::SetIcon(icon
);
590 #if defined(__WIN95__) && !defined(__WXMICROWIN__)
593 ::SendMessage(GetHwnd(), WM_SETICON
,
594 (WPARAM
)TRUE
, (LPARAM
)GetHiconOf(m_icon
));
599 bool wxTopLevelWindowMSW::EnableCloseButton(bool enable
)
601 #ifndef __WXMICROWIN__
602 // get system (a.k.a. window) menu
603 HMENU hmenu
= ::GetSystemMenu(GetHwnd(), FALSE
/* get it */);
606 wxLogLastError(_T("GetSystemMenu"));
611 // enabling/disabling the close item from it also automatically
612 // disables/enables the close title bar button
613 if ( ::EnableMenuItem(hmenu
, SC_CLOSE
,
615 (enable
? MF_ENABLED
: MF_GRAYED
)) == -1 )
617 wxLogLastError(_T("EnableMenuItem(SC_CLOSE)"));
622 // update appearance immediately
623 if ( !::DrawMenuBar(GetHwnd()) )
625 wxLogLastError(_T("DrawMenuBar"));
627 #endif // !__WXMICROWIN__