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(wxGetInstance(),
221 (DLGTEMPLATE
*)dlgTemplate
,
222 parent
? GetHwndOf(parent
) : NULL
,
227 wxFAIL_MSG(_("Failed to create dialog. Incorrect DLGTEMPLATE?"));
229 wxLogSysError(_("Can't create dialog using memory template"));
235 (void)MSWGetCreateWindowFlags(&exflags
);
239 ::SetWindowLong(GetHwnd(), GWL_EXSTYLE
, exflags
);
240 ::SetWindowPos(GetHwnd(), NULL
, 0, 0, 0, 0,
247 #if defined(__WIN95__)
248 // For some reason, the system menu is activated when we use the
249 // WS_EX_CONTEXTHELP style, so let's set a reasonable icon
250 if ( exflags
& WS_EX_CONTEXTHELP
)
252 wxFrame
*winTop
= wxDynamicCast(wxTheApp
->GetTopWindow(), wxFrame
);
255 wxIcon icon
= winTop
->GetIcon();
258 ::SendMessage(GetHwnd(), WM_SETICON
,
260 (LPARAM
)GetHiconOf(icon
));
266 // move the dialog to its initial position without forcing repainting
268 if ( !MSWGetCreateWindowCoords(pos
, size
, x
, y
, w
, h
) )
271 w
= (int)CW_USEDEFAULT
;
274 // we can't use CW_USEDEFAULT here as we're not calling CreateWindow()
275 // and passing CW_USEDEFAULT to MoveWindow() results in resizing the
276 // window to (0, 0) size which breaks quite a lot of things, e.g. the
277 // sizer calculation in wxSizer::Fit()
278 if ( w
== (int)CW_USEDEFAULT
)
280 // the exact number doesn't matter, the dialog will be resized
281 // again soon anyhow but it should be big enough to allow
282 // calculation relying on "totalSize - clientSize > 0" work, i.e.
283 // at least greater than the title bar height
288 if ( x
== (int)CW_USEDEFAULT
)
290 // centre it on the screen - what else can we do?
291 wxSize sizeDpy
= wxGetDisplaySize();
293 x
= (sizeDpy
.x
- w
) / 2;
294 y
= (sizeDpy
.y
- h
) / 2;
297 if ( !::MoveWindow(GetHwnd(), x
, y
, w
, h
, FALSE
) )
299 wxLogLastError(wxT("MoveWindow"));
302 if ( !title
.empty() )
304 ::SetWindowText(GetHwnd(), title
);
310 #endif // __WXMICROWIN__/!__WXMICROWIN__
313 bool wxTopLevelWindowMSW::CreateFrame(const wxString
& title
,
318 WXDWORD flags
= MSWGetCreateWindowFlags(&exflags
);
320 return MSWCreate(wxCanvasClassName
, title
, pos
, size
, flags
, exflags
);
323 bool wxTopLevelWindowMSW::Create(wxWindow
*parent
,
325 const wxString
& title
,
329 const wxString
& name
)
334 m_windowStyle
= style
;
338 m_windowId
= id
== -1 ? NewControlId() : id
;
340 wxTopLevelWindows
.Append(this);
343 parent
->AddChild(this);
345 if ( GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
)
347 // TODO: it would be better to construct the dialog template in memory
348 // during run-time than to rely on the limited number of
349 // templates in wx.rc because:
350 // a) you wouldn't have to include wx.rc in all wxWin programs
351 // (and the number of complaints about it would dtop)
352 // b) we'd be able to provide more templates simply, i.e.
353 // we could generate the templates for all style
356 // we have different dialog templates to allows creation of dialogs
357 // with & without captions under MSWindows, resizeable or not (but a
358 // resizeable dialog always has caption - otherwise it would look too
360 int dlgsize
= sizeof(DLGTEMPLATE
) + (sizeof(WORD
) * 3);
361 DLGTEMPLATE
* dlgTemplate
= (DLGTEMPLATE
*)malloc( dlgsize
);
362 memset (dlgTemplate
, 0, dlgsize
);
365 dlgTemplate
->cx
= 144;
366 dlgTemplate
->cy
= 75;
368 if ( style
& wxRESIZE_BORDER
)
369 dlgTemplate
->style
= DS_MODALFRAME
| WS_CAPTION
| WS_POPUP
| WS_SYSMENU
| WS_THICKFRAME
;
370 else if ( style
& wxCAPTION
)
371 dlgTemplate
->style
= DS_MODALFRAME
| WS_CAPTION
| WS_POPUP
| WS_SYSMENU
;
373 dlgTemplate
->style
= WS_POPUP
;
375 bool ret
= CreateDialog(dlgTemplate
, title
, pos
, size
);
381 return CreateFrame(title
, pos
, size
);
385 wxTopLevelWindowMSW::~wxTopLevelWindowMSW()
387 wxTopLevelWindows
.DeleteObject(this);
389 if ( wxModelessWindows
.Find(this) )
390 wxModelessWindows
.DeleteObject(this);
392 // If this is the last top-level window, exit.
393 if ( wxTheApp
&& (wxTopLevelWindows
.Number() == 0) )
395 wxTheApp
->SetTopWindow(NULL
);
397 if ( wxTheApp
->GetExitOnFrameDelete() )
399 ::PostQuitMessage(0);
404 // ----------------------------------------------------------------------------
405 // wxTopLevelWindowMSW showing
406 // ----------------------------------------------------------------------------
408 void wxTopLevelWindowMSW::DoShowWindow(int nShowCmd
)
410 ::ShowWindow(GetHwnd(), nShowCmd
);
412 m_iconized
= nShowCmd
== SW_MINIMIZE
;
415 bool wxTopLevelWindowMSW::Show(bool show
)
417 // don't use wxWindow version as we want to call DoShowWindow() ourselves
418 if ( !wxWindowBase::Show(show
) )
424 if ( m_maximizeOnShow
)
427 nShowCmd
= SW_MAXIMIZE
;
429 m_maximizeOnShow
= FALSE
;
441 DoShowWindow(nShowCmd
);
445 ::BringWindowToTop(GetHwnd());
447 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, m_windowId
);
448 event
.SetEventObject( this );
449 GetEventHandler()->ProcessEvent(event
);
453 // Try to highlight the correct window (the parent)
456 HWND hWndParent
= GetHwndOf(GetParent());
458 ::BringWindowToTop(hWndParent
);
465 // ----------------------------------------------------------------------------
466 // wxTopLevelWindowMSW maximize/minimize
467 // ----------------------------------------------------------------------------
469 void wxTopLevelWindowMSW::Maximize(bool maximize
)
473 // just maximize it directly
474 DoShowWindow(maximize
? SW_MAXIMIZE
: SW_RESTORE
);
478 // we can't maximize the hidden frame because it shows it as well, so
479 // just remember that we should do it later in this case
480 m_maximizeOnShow
= TRUE
;
484 bool wxTopLevelWindowMSW::IsMaximized() const
486 return ::IsZoomed(GetHwnd()) != 0;
489 void wxTopLevelWindowMSW::Iconize(bool iconize
)
491 DoShowWindow(iconize
? SW_MINIMIZE
: SW_RESTORE
);
494 bool wxTopLevelWindowMSW::IsIconized() const
496 // also update the current state
497 ((wxTopLevelWindowMSW
*)this)->m_iconized
= ::IsIconic(GetHwnd()) != 0;
502 void wxTopLevelWindowMSW::Restore()
504 DoShowWindow(SW_RESTORE
);
507 // ----------------------------------------------------------------------------
508 // wxTopLevelWindowMSW fullscreen
509 // ----------------------------------------------------------------------------
511 bool wxTopLevelWindowMSW::ShowFullScreen(bool show
, long style
)
518 m_fsIsShowing
= TRUE
;
521 // zap the frame borders
523 // save the 'normal' window style
524 m_fsOldWindowStyle
= GetWindowLong((HWND
)GetHWND(), GWL_STYLE
);
526 // save the old position, width & height, maximize state
527 m_fsOldSize
= GetRect();
528 m_fsIsMaximized
= IsMaximized();
530 // decide which window style flags to turn off
531 LONG newStyle
= m_fsOldWindowStyle
;
534 if (style
& wxFULLSCREEN_NOBORDER
)
535 offFlags
|= WS_BORDER
| WS_THICKFRAME
;
536 if (style
& wxFULLSCREEN_NOCAPTION
)
537 offFlags
|= (WS_CAPTION
| WS_SYSMENU
);
539 newStyle
&= (~offFlags
);
541 // change our window style to be compatible with full-screen mode
542 ::SetWindowLong((HWND
)GetHWND(), GWL_STYLE
, newStyle
);
544 // resize to the size of the desktop
547 RECT rect
= wxGetWindowRect(::GetDesktopWindow());
548 width
= rect
.right
- rect
.left
;
549 height
= rect
.bottom
- rect
.top
;
551 SetSize(width
, height
);
553 // now flush the window style cache and actually go full-screen
554 SetWindowPos((HWND
)GetHWND(), HWND_TOP
, 0, 0, width
, height
, SWP_FRAMECHANGED
);
556 wxSizeEvent
event(wxSize(width
, height
), GetId());
557 GetEventHandler()->ProcessEvent(event
);
566 m_fsIsShowing
= FALSE
;
568 Maximize(m_fsIsMaximized
);
569 SetWindowLong((HWND
)GetHWND(),GWL_STYLE
, m_fsOldWindowStyle
);
570 SetWindowPos((HWND
)GetHWND(),HWND_TOP
,m_fsOldSize
.x
, m_fsOldSize
.y
,
571 m_fsOldSize
.width
, m_fsOldSize
.height
, SWP_FRAMECHANGED
);
577 // ----------------------------------------------------------------------------
578 // wxTopLevelWindowMSW misc
579 // ----------------------------------------------------------------------------
581 void wxTopLevelWindowMSW::SetIcon(const wxIcon
& icon
)
584 wxTopLevelWindowBase::SetIcon(icon
);
586 #if defined(__WIN95__) && !defined(__WXMICROWIN__)
589 ::SendMessage(GetHwnd(), WM_SETICON
,
590 (WPARAM
)TRUE
, (LPARAM
)GetHiconOf(m_icon
));
595 bool wxTopLevelWindowMSW::EnableCloseButton(bool enable
)
597 #ifndef __WXMICROWIN__
598 // get system (a.k.a. window) menu
599 HMENU hmenu
= ::GetSystemMenu(GetHwnd(), FALSE
/* get it */);
602 wxLogLastError(_T("GetSystemMenu"));
607 // enabling/disabling the close item from it also automatically
608 // disables/enables the close title bar button
609 if ( ::EnableMenuItem(hmenu
, SC_CLOSE
,
611 (enable
? MF_ENABLED
: MF_GRAYED
)) == -1 )
613 wxLogLastError(_T("EnableMenuItem(SC_CLOSE)"));
618 // update appearance immediately
619 if ( !::DrawMenuBar(GetHwnd()) )
621 wxLogLastError(_T("DrawMenuBar"));
623 #endif // !__WXMICROWIN__