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"
38 #include "wx/control.h"
41 #include "wx/os2/private.h"
43 // ----------------------------------------------------------------------------
44 // stubs for missing functions under MicroWindows
45 // ----------------------------------------------------------------------------
48 // ----------------------------------------------------------------------------
50 // ----------------------------------------------------------------------------
52 // list of all frames and modeless dialogs
53 wxWindowList wxModelessWindows
;
55 // the name of the default wxWindows class
56 extern void wxAssociateWinWithHandle( HWND hWnd
60 // ============================================================================
61 // wxTopLevelWindowMSW implementation
62 // ============================================================================
65 MRESULT EXPENTRY
wxDlgProc( HWND
WXUNUSED(hWnd
)
67 ,MPARAM
WXUNUSED(wParam
)
68 ,MPARAM
WXUNUSED(lParam
)
71 if (uMessage
== WM_INITDLG
)
74 // For this message, returning TRUE tells system to set focus to the
75 // first control in the dialog box.
82 // For all the other ones, FALSE means that we didn't process the
85 return (MRESULT
)FALSE
;
89 // ----------------------------------------------------------------------------
90 // wxTopLevelWindowOS2 creation
91 // ----------------------------------------------------------------------------
93 void wxTopLevelWindowOS2::Init()
95 m_bIconized
= m_bMaximizeOnShow
= FALSE
;
98 // Unlike (almost?) all other windows, frames are created hidden
103 // Data to save/restore when calling ShowFullScreen
105 m_lFsOldWindowStyle
= 0;
106 m_bFsIsMaximized
= FALSE
;
107 m_bFsIsShowing
= FALSE
;
109 m_hFrame
= NULLHANDLE
;
110 memset(&m_vSwp
, 0, sizeof(SWP
));
111 memset(&m_vSwpClient
, 0, sizeof(SWP
));
112 } // end of wxTopLevelWindowIOS2::Init
114 long wxTopLevelWindowOS2::OS2GetCreateWindowFlags(
118 long lStyle
= GetWindowStyle();
121 if (lStyle
== wxDEFAULT_FRAME_STYLE
)
122 lMsflags
= FCF_SIZEBORDER
| FCF_TITLEBAR
| FCF_SYSMENU
|
123 FCF_MINMAX
| FCF_TASKLIST
;
126 if ((lStyle
& wxCAPTION
) == wxCAPTION
)
127 lMsflags
= FCF_TASKLIST
;
129 lMsflags
= FCF_NOMOVEWITHOWNER
;
131 if ((lStyle
& wxVSCROLL
) == wxVSCROLL
)
132 lMsflags
|= FCF_VERTSCROLL
;
133 if ((lStyle
& wxHSCROLL
) == wxHSCROLL
)
134 lMsflags
|= FCF_HORZSCROLL
;
135 if (lStyle
& wxMINIMIZE_BOX
)
136 lMsflags
|= FCF_MINBUTTON
;
137 if (lStyle
& wxMAXIMIZE_BOX
)
138 lMsflags
|= FCF_MAXBUTTON
;
139 if (lStyle
& wxTHICK_FRAME
)
140 lMsflags
|= FCF_DLGBORDER
;
141 if (lStyle
& wxSYSTEM_MENU
)
142 lMsflags
|= FCF_SYSMENU
;
143 if (lStyle
& wxCAPTION
)
144 lMsflags
|= FCF_TASKLIST
;
145 if (lStyle
& wxCLIP_CHILDREN
)
147 // Invalid for frame windows under PM
150 if (lStyle
& wxTINY_CAPTION_VERT
)
151 lMsflags
|= FCF_TASKLIST
;
152 if (lStyle
& wxTINY_CAPTION_HORIZ
)
153 lMsflags
|= FCF_TASKLIST
;
155 if ((lStyle
& wxTHICK_FRAME
) == 0)
156 lMsflags
|= FCF_BORDER
;
157 if (lStyle
& wxFRAME_TOOL_WINDOW
)
158 *plExflags
= kFrameToolWindow
;
160 if (lStyle
& wxSTAY_ON_TOP
)
161 lMsflags
|= FCF_SYSMODAL
;
164 } // end of wxTopLevelWindowOS2::OS2GetCreateWindowFlags
166 bool wxTopLevelWindowOS2::CreateDialog(
168 , const wxString
& rsTitle
169 , const wxPoint
& rPos
170 , const wxSize
& rSize
173 wxWindow
* pParent
= GetParent();
176 // For the dialogs without wxDIALOG_NO_PARENT style, use the top level
177 // app window as parent - this avoids creating modal dialogs without
180 if (!pParent
&& !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT
))
182 pParent
= wxTheApp
->GetTopWindow();
187 // Don't use transient windows as parents, this is dangerous as it
188 // can lead to a crash if the parent is destroyed before the child
190 // also don't use the window which is currently hidden as then the
191 // dialog would be hidden as well
192 if ((pParent
->GetExtraStyle() & wxWS_EX_TRANSIENT
) ||
204 hWndOwner
= GetHwndOf(pParent
);
206 hWndOwner
= HWND_DESKTOP
;
208 hWndDlg
= ::WinLoadDlg( HWND_DESKTOP
212 ,(ULONG
)ulDlgTemplate
216 m_hWnd
= (WXHWND
) hWndDlg
;
220 wxFAIL_MSG(_("Did you forget to include wx/os2/wx.rc in your resources?"));
222 wxLogSysError(_("Can't create dialog using template '%ul'"), ulDlgTemplate
);
228 // Move the dialog to its initial position without forcing repainting
235 if (!OS2GetCreateWindowCoords( rPos
243 nX
= nWidth
= (int)CW_USEDEFAULT
;
247 // We can't use CW_USEDEFAULT here as we're not calling CreateWindow()
248 // and passing CW_USEDEFAULT to MoveWindow() results in resizing the
249 // window to (0, 0) size which breaks quite a lot of things, e.g. the
250 // sizer calculation in wxSizer::Fit()
252 if (nWidth
== (int)CW_USEDEFAULT
)
255 // The exact number doesn't matter, the dialog will be resized
256 // again soon anyhow but it should be big enough to allow
257 // calculation relying on "totalSize - clientSize > 0" work, i.e.
258 // at least greater than the title bar height
260 nWidth
= nHeight
= 100;
262 if (nX
== (int)CW_USEDEFAULT
)
265 // Centre it on the screen - what else can we do?
267 wxSize vSizeDpy
= wxGetDisplaySize();
269 nX
= (vSizeDpy
.x
- nWidth
) / 2;
270 nY
= (vSizeDpy
.y
- nHeight
) / 2;
272 ::WinSetWindowPos( GetHwnd()
278 ,SWP_MOVE
| SWP_SIZE
| SWP_ZORDER
| SWP_SHOW
282 } // end of wxTopLevelWindowOS2::CreateDialog
284 bool wxTopLevelWindowOS2::CreateFrame(
285 const wxString
& rsTitle
286 , const wxPoint
& rPos
287 , const wxSize
& rSize
291 long lFlags
= OS2GetCreateWindowFlags(&lExflags
);
292 long lStyle
= GetWindowStyleFlag();
295 int nWidth
= rSize
.x
;
296 int nHeight
= rSize
.y
;
297 ULONG ulStyleFlags
= 0L;
300 wxWindow
* pParent
= GetParent();
306 hParent
= GetHwndOf(pParent
);
308 hParent
= HWND_DESKTOP
;
310 if ((lStyle
& wxMINIMIZE
) || (lStyle
& wxICONIZE
))
311 ulStyleFlags
|= WS_MINIMIZED
;
312 if (lStyle
& wxMAXIMIZE
)
313 ulStyleFlags
|= WS_MAXIMIZED
;
316 // Clear the visible flag, we always call show
318 ulStyleFlags
&= (unsigned long)~WS_VISIBLE
;
322 // Create the frame window: We break ranks with other ports now
323 // and instead of calling down into the base wxWindow class' OS2Create
324 // we do all our own stuff here. We will set the needed pieces
325 // of wxWindow manually, here.
328 hFrame
= ::WinCreateStdWindow( hParent
329 ,ulStyleFlags
// frame-window style
330 ,(PULONG
)&lFlags
// window style
331 ,(PSZ
)wxFrameClassName
// class name
332 ,(PSZ
)rsTitle
.c_str() // window title
333 ,0L // default client style
334 ,NULLHANDLE
// resource in executable file
336 ,&hClient
// receives client window handle
340 vError
= ::WinGetLastError(vHabmain
);
341 sError
= wxPMErrorToStr(vError
);
342 wxLogError("Error creating frame. Error: %s\n", sError
);
347 // wxWindow class' m_hWnd set here and needed associations
351 wxAssociateWinWithHandle(m_hWnd
, this);
352 wxAssociateWinWithHandle(m_hFrame
, this);
354 m_backgroundColour
.Set(wxString("MEDIUM GREY"));
356 LONG lColor
= (LONG
)m_backgroundColour
.GetPixel();
358 if (!::WinSetPresParam( m_hWnd
364 vError
= ::WinGetLastError(vHabmain
);
365 sError
= wxPMErrorToStr(vError
);
366 wxLogError("Error creating frame. Error: %s\n", sError
);
371 // Now need to subclass window. Instead of calling the SubClassWin in wxWindow
372 // we manually subclass here because we don't want to use the main wxWndProc
375 m_fnOldWndProc
= (WXFARPROC
) ::WinSubclassWindow(m_hFrame
, (PFNWP
)wxFrameMainWndProc
);
378 // Now size everything. If adding a menu the client will need to be resized.
383 nY
= pParent
->GetSize().y
- (nY
+ nHeight
);
389 ::WinQueryWindowRect(HWND_DESKTOP
, &vRect
);
390 nY
= vRect
.yTop
- (nY
+ nHeight
);
392 if (!::WinSetWindowPos( m_hFrame
398 ,SWP_SIZE
| SWP_MOVE
| SWP_ACTIVATE
| SWP_ZORDER
401 vError
= ::WinGetLastError(vHabmain
);
402 sError
= wxPMErrorToStr(vError
);
403 wxLogError("Error sizing frame. Error: %s\n", sError
);
406 lStyle
= ::WinQueryWindowULong( m_hWnd
409 lStyle
|= WS_CLIPCHILDREN
;
410 ::WinSetWindowULong( m_hWnd
415 } // end of wxTopLevelWindowOS2::CreateFrame
417 bool wxTopLevelWindowOS2::Create(
420 , const wxString
& rsTitle
421 , const wxPoint
& rPos
422 , const wxSize
& rSize
424 , const wxString
& rsName
431 m_windowStyle
= lStyle
;
433 m_windowId
= vId
== -1 ? NewControlId() : vId
;
434 wxTopLevelWindows
.Append(this);
436 pParent
->AddChild(this);
438 if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
)
441 // We have different dialog templates to allows creation of dialogs
442 // with & without captions under OS2indows, resizeable or not (but a
443 // resizeable dialog always has caption - otherwise it would look too
448 if (lStyle
& wxRESIZE_BORDER
)
449 ulDlgTemplate
= (ULONG
)kResizeableDialog
;
450 else if (lStyle
& wxCAPTION
)
451 ulDlgTemplate
= (ULONG
)kCaptionDialog
;
453 ulDlgTemplate
= (ULONG
)kNoCaptionDialog
;
454 return CreateDialog( ulDlgTemplate
462 return CreateFrame( rsTitle
467 } // end of wxTopLevelWindowOS2::Create
469 wxTopLevelWindowOS2::~wxTopLevelWindowOS2()
471 wxTopLevelWindows
.DeleteObject(this);
473 if (wxModelessWindows
.Find(this))
474 wxModelessWindows
.DeleteObject(this);
477 // If this is the last top-level window, exit.
479 if (wxTheApp
&& (wxTopLevelWindows
.Number() == 0))
481 wxTheApp
->SetTopWindow(NULL
);
482 if ( wxTheApp
->GetExitOnFrameDelete() )
484 ::WinPostMsg(NULL
, WM_QUIT
, 0, 0);
487 } // end of wxTopLevelWindowOS2::~wxTopLevelWindowOS2
490 // IF we have child controls in the Frame's client we need to alter
491 // the y position, because, OS/2 controls are positioned relative to
492 // wxWindows orgin (top left) not the OS/2 origin (bottom left)
494 void wxTopLevelWindowOS2::AlterChildPos()
497 // OS/2 is the only OS concerned about this
499 wxWindow
* pChild
= NULL
;
500 wxControl
* pCtrl
= NULL
;
504 ::WinQueryWindowRect(GetHwnd(), &vRect
);
505 for (wxWindowList::Node
* pNode
= GetChildren().GetFirst();
507 pNode
= pNode
->GetNext())
509 wxWindow
* pChild
= pNode
->GetData();
511 ::WinQueryWindowPos(pChild
->GetHWND(), &vSwp
);
512 vSwp
.y
+= (vRect
.yTop
- m_vSwpClient
.cy
);
513 if (pChild
->IsKindOf(CLASSINFO(wxControl
)))
515 pCtrl
= wxDynamicCast(pChild
, wxControl
);
517 // Must deal with controls that have margins like ENTRYFIELD. The SWP
518 // struct of such a control will have and origin offset from its intended
519 // position by the width of the margins.
521 vSwp
.y
-= pCtrl
->GetYComp();
522 vSwp
.x
-= pCtrl
->GetXComp();
524 ::WinSetWindowPos( pChild
->GetHWND()
532 ::WinQueryWindowPos(pChild
->GetHWND(), &vSwp
);
535 ::WinQueryWindowPos(GetHwnd(), &m_vSwpClient
);
536 } // end of wxTopLevelWindowOS2::AlterChildPos
538 void wxTopLevelWindowOS2::UpdateInternalSize(
543 pChild
->MoveChildren(m_vSwpClient
.cy
- nHeight
);
544 ::WinQueryWindowPos(GetHwnd(), &m_vSwpClient
);
545 } // end of wxTopLevelWindowOS2::UpdateInternalSize
547 // ----------------------------------------------------------------------------
548 // wxTopLevelWindowOS2 client size
549 // ----------------------------------------------------------------------------
551 void wxTopLevelWindowOS2::DoSetClientSize(
557 // Call GetClientAreaOrigin() to take the toolbar into account
559 wxPoint vPt
= GetClientAreaOrigin();
564 wxWindow::DoSetClientSize( nWidth
567 } // end of wxTopLevelWindowOS2::DoSetClientSize
569 void wxTopLevelWindowOS2::DoGetClientSize(
574 wxWindow::DoGetClientSize( pnX
578 wxPoint vPt
= GetClientAreaOrigin();
585 } // end of wxTopLevelWindowOS2::DoGetClientSize
587 // ----------------------------------------------------------------------------
588 // wxTopLevelWindowOS2 showing
589 // ----------------------------------------------------------------------------
591 void wxTopLevelWindowOS2::DoShowWindow(
595 ::WinShowWindow(m_hFrame
, (BOOL
)(nShowCmd
& SWP_SHOW
));
598 // Need to artificially send a size event as wxApps often expect to do some
599 // final child control sizing
601 m_bIconized
= nShowCmd
== SWP_MINIMIZE
;
602 } // end of wxTopLevelWindowOS2::DoShowWindow
604 bool wxTopLevelWindowOS2::Show(
614 if (m_bMaximizeOnShow
)
616 nShowCmd
= SWP_MAXIMIZE
;
617 m_bMaximizeOnShow
= FALSE
;
628 DoShowWindow(nShowCmd
);
632 wxActivateEvent
vEvent(wxEVT_ACTIVATE
, TRUE
, m_windowId
);
634 ::WinQueryWindowPos(m_hFrame
, &vSwp
);
635 m_bIconized
= vSwp
.fl
& SWP_MINIMIZE
;
636 ::WinQueryWindowPos(m_hWnd
, &m_vSwpClient
);
637 ::WinSendMsg(m_hFrame
, WM_UPDATEFRAME
, (MPARAM
)~0, 0);
638 ::WinEnableWindow(m_hFrame
, TRUE
);
639 vEvent
.SetEventObject(this);
640 GetEventHandler()->ProcessEvent(vEvent
);
645 // Try to highlight the correct window (the parent)
649 HWND hWndParent
= GetHwndOf(GetParent());
651 ::WinQueryWindowPos(hWndParent
, &vSwp
);
652 m_bIconized
= vSwp
.fl
& SWP_MINIMIZE
;
654 ::WinSetWindowPos( hWndParent
660 ,SWP_ZORDER
| SWP_ACTIVATE
| SWP_SHOW
| SWP_MOVE
662 ::WinEnableWindow(hWndParent
, TRUE
);
666 } // end of wxTopLevelWindowOS2::Show
668 // ----------------------------------------------------------------------------
669 // wxTopLevelWindowOS2 maximize/minimize
670 // ----------------------------------------------------------------------------
672 void wxTopLevelWindowOS2::Maximize(
679 // Just maximize it directly
681 DoShowWindow(bMaximize
? SWP_MAXIMIZE
: SWP_RESTORE
);
686 // We can't maximize the hidden frame because it shows it as well, so
687 // just remember that we should do it later in this case
689 m_bMaximizeOnShow
= TRUE
;
691 } // end of wxTopLevelWindowOS2::Maximize
693 bool wxTopLevelWindowOS2::IsMaximized() const
697 ::WinQueryWindowPos(m_hFrame
, (PSWP
)&m_vSwp
);
698 return (m_vSwp
.fl
& SWP_MAXIMIZE
);
699 } // end of wxTopLevelWindowOS2::IsMaximized
701 void wxTopLevelWindowOS2::Iconize(
705 DoShowWindow(bIconize
? SWP_MINIMIZE
: SWP_RESTORE
);
706 } // end of wxTopLevelWindowOS2::Iconize
708 bool wxTopLevelWindowOS2::IsIconized() const
710 // also update the current state
711 ::WinQueryWindowPos(m_hFrame
, (PSWP
)&m_vSwp
);
712 if (m_vSwp
.fl
& SWP_MINIMIZE
)
713 ((wxTopLevelWindow
*)this)->m_bIconized
= TRUE
;
715 ((wxTopLevelWindow
*)this)->m_bIconized
= FALSE
;
717 } // end of wxTopLevelWindowOS2::IsIconized
719 void wxTopLevelWindowOS2::Restore()
721 DoShowWindow(SWP_RESTORE
);
722 } // end of wxTopLevelWindowOS2::Restore
724 // generate an artificial resize event
725 void wxTopLevelWindowOS2::SendSizeEvent()
729 RECTL vRect
= wxGetWindowRect(GetHwnd());
731 (void)::WinPostMsg( m_hFrame
733 ,MPFROM2SHORT(vRect
.xRight
- vRect
.xLeft
, vRect
.yTop
- vRect
.yBottom
)
734 ,MPFROM2SHORT(vRect
.xRight
- vRect
.xLeft
, vRect
.yTop
- vRect
.yBottom
)
737 } // end of wxTopLevelWindowOS2::SendSizeEvent
739 // ----------------------------------------------------------------------------
740 // wxTopLevelWindowOS2 fullscreen
741 // ----------------------------------------------------------------------------
743 bool wxTopLevelWindowOS2::ShowFullScreen(
753 m_bFsIsShowing
= TRUE
;
757 // Zap the frame borders
761 // Save the 'normal' window lStyle
763 m_lFsOldWindowStyle
= ::WinQueryWindowULong( (HWND
)GetHWND()
768 // Save the old position, width & height, maximize state
770 m_vFsOldSize
= GetRect();
771 m_bFsIsMaximized
= IsMaximized();
774 // Decide which window lStyle flags to turn off
776 LONG lNewStyle
= m_lFsOldWindowStyle
;
779 if (lStyle
& wxFULLSCREEN_NOBORDER
)
780 lOffFlags
|= FCF_BORDER
;
781 if (lStyle
& wxFULLSCREEN_NOCAPTION
)
782 lOffFlags
|= (FCF_TASKLIST
| FCF_SYSMENU
);
784 lNewStyle
&= (~lOffFlags
);
787 // Change our window style to be compatible with full-screen mode
789 ::WinSetWindowULong( (HWND
)GetHWND()
795 // Resize to the size of the desktop
799 RECTL vRect
= wxGetWindowRect(HWND_DESKTOP
);
801 nWidth
= vRect
.xRight
- vRect
.xLeft
;
802 nHeight
= vRect
.yTop
- vRect
.yBottom
;
809 // Now flush the window style cache and actually go full-screen
811 ::WinSetWindowPos( m_hFrame
820 wxSizeEvent
vEvent( wxSize( nWidth
826 GetEventHandler()->ProcessEvent(vEvent
);
834 m_bFsIsShowing
= FALSE
;
835 Maximize(m_bFsIsMaximized
);
836 ::WinSetWindowULong( (HWND
)GetHWND()
840 ::WinSetWindowPos( m_hFrame
850 } // end of wxTopLevelWindowOS2::ShowFullScreen
852 // ----------------------------------------------------------------------------
853 // wxTopLevelWindowOS2 misc
854 // ----------------------------------------------------------------------------
856 void wxTopLevelWindowOS2::SetIcon(
863 wxTopLevelWindowBase::SetIcon(rIcon
);
867 ::WinSendMsg( m_hFrame
869 ,(MPARAM
)((HPOINTER
)m_icon
.GetHICON())
872 ::WinSendMsg( m_hFrame
878 } // end of wxTopLevelWindowOS2::SetIcon
880 bool wxTopLevelWindowOS2::EnableCloseButton(
885 // Get system (a.k.a. window) menu
887 HMENU hMenu
= ::WinWindowFromID(m_hFrame
, FID_SYSMENU
);
891 wxLogLastError(_T("GetSystemMenu"));
896 // Enabling/disabling the close item from it also automatically
897 // disables/enables the close title bar button
900 (void)::WinSendMsg( hMenu
902 ,MPFROM2SHORT(SC_CLOSE
, FALSE
)
903 ,MPFROM2SHORT(MIA_DISABLED
, FALSE
)
906 (void)::WinSendMsg( hMenu
908 ,MPFROM2SHORT(SC_CLOSE
, FALSE
)
909 ,MPFROM2SHORT(MIA_DISABLED
, MIA_DISABLED
)
913 // Update appearance immediately
915 ::WinSendMsg( m_hFrame
921 } // end of wxTopLevelWindowOS2::EnableCloseButton