1 /////////////////////////////////////////////////////////////////////////////
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/dialog.h"
22 #include "wx/settings.h"
23 #include "wx/dcclient.h"
26 #include "wx/os2/private.h"
29 #include "wx/statusbr.h"
30 #include "wx/generic/statusbr.h"
31 #endif // wxUSE_STATUSBAR
34 #include "wx/toolbar.h"
35 #endif // wxUSE_TOOLBAR
37 #include "wx/menuitem.h"
40 // ----------------------------------------------------------------------------
42 // ----------------------------------------------------------------------------
44 extern wxWindowList wxModelessWindows
;
45 extern wxList WXDLLEXPORT wxPendingDelete
;
46 extern wxChar wxFrameClassName
[];
47 extern wxMenu
*wxCurrentPopupMenu
;
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
53 BEGIN_EVENT_TABLE(wxFrame
, wxFrameBase
)
54 EVT_ACTIVATE(wxFrame::OnActivate
)
55 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged
)
58 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxWindow
)
60 // ============================================================================
62 // ============================================================================
64 // ----------------------------------------------------------------------------
65 // static class members
66 // ----------------------------------------------------------------------------
68 #if wxUSE_NATIVE_STATUSBAR
69 bool wxFrame::m_bUseNativeStatusBar
= TRUE
;
71 bool wxFrame::m_bUseNativeStatusBar
= FALSE
;
74 // ----------------------------------------------------------------------------
75 // creation/destruction
76 // ----------------------------------------------------------------------------
85 // Data to save/restore when calling ShowFullScreen
87 m_lFsOldWindowStyle
= 0L;
88 m_nFsStatusBarFields
= 0;
89 m_nFsStatusBarHeight
= 0;
90 m_nFsToolBarHeight
= 0;
91 m_bFsIsMaximized
= FALSE
;
92 m_bFsIsShowing
= FALSE
;
93 } // end of wxFrame::Init
98 , const wxString
& rsTitle
100 , const wxSize
& rSize
102 , const wxString
& rsName
107 int nWidth
= rSize
.x
;
108 int nHeight
= rSize
.y
;
111 m_windowStyle
= lulStyle
;
112 m_frameMenuBar
= NULL
;
113 m_frameToolBar
= NULL
;
114 m_frameStatusBar
= NULL
;
116 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
121 m_windowId
= (int)NewControlId();
124 pParent
->AddChild(this);
129 // We pass NULL as parent to MSWCreate because frames with parents behave
130 // very strangely under Win95 shell.
131 // Alteration by JACS: keep normal Windows behaviour (float on top of parent)
132 // with this ulStyle.
134 if ((m_windowStyle
& wxFRAME_FLOAT_ON_PARENT
) == 0)
138 wxTopLevelWindows
.Append(this);
140 OS2Create( m_windowId
152 wxModelessWindows
.Append(this);
154 } // end of wxFrame::Create
158 m_isBeingDeleted
= TRUE
;
159 wxTopLevelWindows
.DeleteObject(this);
163 if (wxTheApp
&& (wxTopLevelWindows
.Number() == 0))
165 wxTheApp
->SetTopWindow(NULL
);
167 if (wxTheApp
->GetExitOnFrameDelete())
169 ::WinPostMsg(GetHwnd(), WM_QUIT
, 0, 0);
172 wxModelessWindows
.DeleteObject(this);
175 // For some reason, wxWindows can activate another task altogether
176 // when a frame is destroyed after a modal dialog has been invoked.
177 // Try to bring the parent to the top.
179 // MT:Only do this if this frame is currently the active window, else weird
180 // things start to happen.
182 if (wxGetActiveWindow() == this)
184 if (GetParent() && GetParent()->GetHWND())
186 ::WinSetWindowPos( (HWND
) GetParent()->GetHWND()
196 } // end of wxFrame::~wxFrame
199 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
201 void wxFrame::DoGetClientSize(
207 // OS/2 PM's coordinates go from bottom-left not
208 // top-left thus the += instead of the -=
214 // PM has no GetClientRect that inherantly knows about the client window
215 // We have to explicitly go fetch it!
217 hWndClient
= ::WinWindowFromID(GetHwnd(), FID_CLIENT
);
218 ::WinQueryWindowRect(hWndClient
, &vRect
);
221 if ( GetStatusBar() )
226 GetStatusBar()->GetClientSize( &nStatusX
229 vRect
.yBottom
+= nStatusY
;
231 #endif // wxUSE_STATUSBAR
233 wxPoint
vPoint(GetClientAreaOrigin());
235 vRect
.yBottom
+= vPoint
.y
;
236 vRect
.xRight
-= vPoint
.x
;
242 } // end of wxFrame::DoGetClientSize
245 // Set the client size (i.e. leave the calculation of borders etc.
248 void wxFrame::DoSetClientSize(
253 HWND hWnd
= GetHwnd();
258 hWndClient
= ::WinWindowFromID(GetHwnd(), FID_CLIENT
);
259 ::WinQueryWindowRect(hWndClient
, &vRect
);
261 ::WinQueryWindowRect(hWnd
, &vRect2
);
264 // Find the difference between the entire window (title bar and all)
265 // and the client area; add this to the new client size to move the
266 // window. Remember OS/2's backwards y coord system!
268 int nActualWidth
= vRect2
.xRight
- vRect2
.xLeft
- vRect
.xRight
+ nWidth
;
269 int nActualHeight
= vRect2
.yTop
+ vRect2
.yTop
- vRect
.yTop
+ nHeight
;
272 if ( GetStatusBar() )
277 GetStatusBar()->GetClientSize( &nStatusX
280 nActualHeight
+= nStatusY
;
282 #endif // wxUSE_STATUSBAR
284 wxPoint
vPoint(GetClientAreaOrigin());
285 nActualWidth
+= vPoint
.y
;
286 nActualHeight
+= vPoint
.x
;
290 vPointl
.x
= vRect2
.xLeft
;
291 vPoint
.y
= vRect2
.yTop
;
293 ::WinSetWindowPos( hWnd
299 ,SWP_MOVE
| SWP_SIZE
| SWP_SHOW
302 wxSizeEvent
vEvent( wxSize( nWidth
307 vEvent
.SetEventObject(this);
308 GetEventHandler()->ProcessEvent(vEvent
);
309 } // end of wxFrame::DoSetClientSize
311 void wxFrame::DoGetSize(
318 ::WinQueryWindowRect(GetHwnd(), &vRect
);
319 *pWidth
= vRect
.xRight
- vRect
.xLeft
;
320 *pHeight
= vRect
.yTop
- vRect
.yBottom
;
321 } // end of wxFrame::DoGetSize
323 void wxFrame::DoGetPosition(
331 ::WinQueryWindowRect(GetHwnd(), &vRect
);
332 vPoint
.x
= vRect
.xLeft
;
335 // OS/2 is backwards [WIN32 it is vRect.yTop]
337 vPoint
.y
= vRect
.yBottom
;
341 } // end of wxFrame::DoGetPosition
343 // ----------------------------------------------------------------------------
344 // variations around ::ShowWindow()
345 // ----------------------------------------------------------------------------
347 void wxFrame::DoShowWindow(
351 ::WinShowWindow(GetHwnd(), nShowCmd
);
352 m_bIconized
= nShowCmd
== SWP_MINIMIZE
;
353 } // end of wxFrame::DoShowWindow
359 DoShowWindow(bShow
? SWP_SHOW
: SWP_HIDE
);
363 wxActivateEvent
vEvent(wxEVT_ACTIVATE
, TRUE
, m_windowId
);
365 ::WinSetWindowPos( (HWND
) GetHWND()
373 vEvent
.SetEventObject(this);
374 GetEventHandler()->ProcessEvent(vEvent
);
379 // Try to highlight the correct window (the parent)
383 HWND hWndParent
= GetHwndOf(GetParent());
386 ::WinSetWindowPos( hWndParent
397 } // end of wxFrame::Show
399 void wxFrame::Iconize(
403 DoShowWindow(bIconize
? SWP_MINIMIZE
: SWP_RESTORE
);
404 } // end of wxFrame::Iconize
406 void wxFrame::Maximize(
409 DoShowWindow(bMaximize
? SWP_MAXIMIZE
: SWP_RESTORE
);
410 } // end of wxFrame::Maximize
412 void wxFrame::Restore()
414 DoShowWindow(SWP_RESTORE
);
415 } // end of wxFrame::Restore
417 bool wxFrame::IsIconized() const
422 ::WinQueryWindowPos(GetHwnd(), &vSwp
);
424 if (vSwp
.fl
& SWP_MINIMIZE
)
425 ((wxFrame
*)this)->m_bIconized
= TRUE
;
427 ((wxFrame
*)this)->m_bIconized
= FALSE
;
429 } // end of wxFrame::IsIconized
432 bool wxFrame::IsMaximized() const
437 ::WinQueryWindowPos(GetHwnd(), &vSwp
);
438 return (vSwp
.fl
& SWP_MAXIMIZE
);
439 } // end of wxFrame::IsMaximized
441 void wxFrame::SetIcon(
445 wxFrameBase::SetIcon(rIcon
);
449 WinSendMsg( GetHwnd()
451 ,(MPARAM
)((HICON
)m_icon
.GetHICON())
455 } // end of wxFrame::SetIcon
458 wxStatusBar
* wxFrame::OnCreateStatusBar(
462 , const wxString
& rName
465 wxStatusBar
* pStatusBar
= NULL
;
467 pStatusBar
= wxFrameBase::OnCreateStatusBar( nNumber
473 } // end of wxFrame::OnCreateStatusBar
475 void wxFrame::PositionStatusBar()
478 // Native status bar positions itself
480 if (m_frameStatusBar
)
489 hWndClient
= ::WinWindowFromID(GetHwnd(), FID_CLIENT
);
490 ::WinQueryWindowRect(hWndClient
, &vRect
);
491 nWidth
= vRect
.xRight
- vRect
.xLeft
;
492 nHeight
= vRect
.yTop
- vRect
.yBottom
;
494 m_frameStatusBar
->GetSize( &nStatbarWidth
499 // Since we wish the status bar to be directly under the client area,
500 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
502 m_frameStatusBar
->SetSize( 0
508 } // end of wxFrame::PositionStatusBar
509 #endif // wxUSE_STATUSBAR
511 void wxFrame::DetachMenuBar()
515 m_frameMenuBar
->Detach();
516 m_frameMenuBar
= NULL
;
518 } // end of wxFrame::DetachMenuBar
520 void wxFrame::SetMenuBar(
530 wxCHECK_RET(!pMenuBar
->GetFrame(), wxT("this menubar is already attached"));
533 delete m_frameMenuBar
;
535 m_hMenu
= pMenuBar
->Create();
536 m_ulMenubarId
= pMenuBar
->GetMenubarId();
537 if (m_ulMenubarId
!= FID_MENU
)
539 ::WinSetWindowUShort( m_hMenu
541 ,(unsigned short)m_ulMenubarId
548 InternalSetMenuBar();
550 m_frameMenuBar
= pMenuBar
;
551 pMenuBar
->Attach(this);
552 } // end of wxFrame::SetMenuBar
554 void wxFrame::InternalSetMenuBar()
557 ::WinPostMsg( GetHwnd()
562 } // end of wxFrame::InternalSetMenuBar
565 // Responds to colour changes, and passes event on to children
567 void wxFrame::OnSysColourChanged(
568 wxSysColourChangedEvent
& rEvent
571 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
574 if (m_frameStatusBar
)
576 wxSysColourChangedEvent vEvent2
;
578 vEvent2
.SetEventObject(m_frameStatusBar
);
579 m_frameStatusBar
->GetEventHandler()->ProcessEvent(vEvent2
);
583 // Propagate the event to the non-top-level children
585 wxWindow::OnSysColourChanged(rEvent
);
586 } // end of wxFrame::OnSysColourChanged
588 // Pass TRUE to show full screen, FALSE to restore.
589 bool wxFrame::ShowFullScreen(
601 m_fsIsShowing = TRUE;
604 wxToolBar *theToolBar = GetToolBar();
605 wxStatusBar *theStatusBar = GetStatusBar();
610 theToolBar->GetSize(&dummyWidth, &m_fsToolBarHeight);
612 theStatusBar->GetSize(&dummyWidth, &m_fsStatusBarHeight);
614 // zap the toolbar, menubar, and statusbar
616 if ((style & wxFULLSCREEN_NOTOOLBAR) && theToolBar)
618 theToolBar->SetSize(-1,0);
619 theToolBar->Show(FALSE);
622 if (style & wxFULLSCREEN_NOMENUBAR)
623 SetMenu((HWND)GetHWND(), (HMENU) NULL);
625 // Save the number of fields in the statusbar
626 if ((style & wxFULLSCREEN_NOSTATUSBAR) && theStatusBar)
628 m_fsStatusBarFields = theStatusBar->GetFieldsCount();
629 SetStatusBar((wxStatusBar*) NULL);
633 m_fsStatusBarFields = 0;
635 // zap the frame borders
637 // save the 'normal' window style
638 m_fsOldWindowStyle = GetWindowLong((HWND)GetHWND(), GWL_STYLE);
640 // save the old position, width & height, maximize state
641 m_fsOldSize = GetRect();
642 m_fsIsMaximized = IsMaximized();
644 // decide which window style flags to turn off
645 LONG newStyle = m_fsOldWindowStyle;
648 if (style & wxFULLSCREEN_NOBORDER)
649 offFlags |= WS_BORDER;
650 if (style & wxFULLSCREEN_NOCAPTION)
651 offFlags |= (WS_CAPTION | WS_SYSMENU);
653 newStyle &= (~offFlags);
655 // change our window style to be compatible with full-screen mode
656 SetWindowLong((HWND)GetHWND(), GWL_STYLE, newStyle);
658 // resize to the size of the desktop
662 ::GetWindowRect(GetDesktopWindow(), &rect);
663 width = rect.right - rect.left;
664 height = rect.bottom - rect.top;
666 SetSize(width, height);
668 // now flush the window style cache and actually go full-screen
669 SetWindowPos((HWND)GetHWND(), HWND_TOP, 0, 0, width, height, SWP_FRAMECHANGED);
671 wxSizeEvent event(wxSize(width, height), GetId());
672 GetEventHandler()->ProcessEvent(event);
681 m_fsIsShowing = FALSE;
683 wxToolBar *theToolBar = GetToolBar();
685 // restore the toolbar, menubar, and statusbar
686 if (theToolBar && (m_fsStyle & wxFULLSCREEN_NOTOOLBAR))
688 theToolBar->SetSize(-1, m_fsToolBarHeight);
689 theToolBar->Show(TRUE);
692 if ((m_fsStyle & wxFULLSCREEN_NOSTATUSBAR) && (m_fsStatusBarFields > 0))
694 CreateStatusBar(m_fsStatusBarFields);
698 if ((m_fsStyle & wxFULLSCREEN_NOMENUBAR) && (m_hMenu != 0))
699 SetMenu((HWND)GetHWND(), (HMENU)m_hMenu);
701 Maximize(m_fsIsMaximized);
702 SetWindowLong((HWND)GetHWND(),GWL_STYLE, m_fsOldWindowStyle);
703 SetWindowPos((HWND)GetHWND(),HWND_TOP,m_fsOldSize.x, m_fsOldSize.y,
704 m_fsOldSize.width, m_fsOldSize.height, SWP_FRAMECHANGED);
710 } // end of wxFrame::ShowFullScreen
715 bool wxFrame::OS2Create(
718 , const wxChar
* zWclass
720 , const wxChar
* zTitle
729 ULONG ulExtraFlags
= 0;
730 ULONG ulTempFlags
= FCF_TITLEBAR
|
741 m_hDefaultIcon
= (WXHICON
) (wxSTD_FRAME_ICON
? wxSTD_FRAME_ICON
: wxDEFAULT_FRAME_ICON
);
743 if ((ulStyle
& wxCAPTION
) == wxCAPTION
)
744 ulPmFlags
= FCF_TASKLIST
;
746 ulPmFlags
= FCF_NOMOVEWITHOWNER
;
748 if (ulStyle
& wxMINIMIZE_BOX
)
749 ulPmFlags
|= FCF_MINBUTTON
;
750 if (ulStyle
& wxMAXIMIZE_BOX
)
751 ulPmFlags
|= FCF_MAXBUTTON
;
752 if (ulStyle
& wxTHICK_FRAME
)
753 ulPmFlags
|= FCF_DLGBORDER
;
754 if (ulStyle
& wxSYSTEM_MENU
)
755 ulPmFlags
|= FCF_SYSMENU
;
756 if ((ulStyle
& wxMINIMIZE
) || (ulStyle
& wxICONIZE
))
757 ulPmFlags
|= WS_MINIMIZED
;
758 if (ulStyle
& wxMAXIMIZE
)
759 ulPmFlags
|= WS_MAXIMIZED
;
760 if (ulStyle
& wxCAPTION
)
761 ulPmFlags
|= FCF_TASKLIST
;
762 if (ulStyle
& wxCLIP_CHILDREN
)
764 // Invalid for frame windows under PM
768 // Keep this in wxFrame because it saves recoding this function
772 if (ulStyle
& wxTINY_CAPTION_VERT
)
773 ulExtraFlags
|= kVertCaption
;
774 if (ulStyle
& wxTINY_CAPTION_HORIZ
)
775 ulExtraFlags
|= kHorzCaption
;
777 if (ulStyle
& wxTINY_CAPTION_VERT
)
778 ulPmFlags
|= FCF_TASKLIST
;
779 if (ulStyle
& wxTINY_CAPTION_HORIZ
)
780 ulPmFlags
|= FCF_TASKLIST
;
782 if ((ulStyle
& wxTHICK_FRAME
) == 0)
783 ulPmFlags
|= FCF_BORDER
;
784 if (ulStyle
& wxFRAME_TOOL_WINDOW
)
785 ulExtraFlags
= kFrameToolWindow
;
787 if (ulStyle
& wxSTAY_ON_TOP
)
788 ulPmFlags
|= FCF_SYSMODAL
;
790 if (ulPmFlags
& ulTempFlags
)
791 ulPmFlags
= FCF_STANDARD
;
793 // Clear the visible flag, we always call show
795 ulPmFlags
&= (unsigned long)~WS_VISIBLE
;
797 if ( !wxWindow::OS2Create( nId
813 } // end of wxFrame::OS2Create
816 // Default activation behaviour - set the focus for the first child
819 void wxFrame::OnActivate(
820 wxActivateEvent
& rEvent
823 for (wxWindowList::Node
* pNode
= GetChildren().GetFirst();
825 pNode
= pNode
->GetNext())
827 // FIXME all this is totally bogus - we need to do the same as wxPanel,
828 // but how to do it without duplicating the code?
831 wxWindow
* pChild
= pNode
->GetData();
833 if (!pChild
->IsTopLevel()
835 && !wxDynamicCast(pChild
, wxToolBar
)
836 #endif // wxUSE_TOOLBAR
838 && !wxDynamicCast(pChild
, wxStatusBar
)
839 #endif // wxUSE_STATUSBAR
846 } // end of wxFrame::OnActivate
848 // ----------------------------------------------------------------------------
849 // wxFrame size management: we exclude the areas taken by menu/status/toolbars
850 // from the client area, so the client area is what's really available for the
852 // ----------------------------------------------------------------------------
854 // Checks if there is a toolbar, and returns the first free client position
855 wxPoint
wxFrame::GetClientAreaOrigin() const
857 wxPoint
vPoint(0, 0);
864 GetToolBar()->GetSize( &nWidth
868 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
874 // PM is backwards from windows
879 } // end of wxFrame::GetClientAreaOrigin
881 // ----------------------------------------------------------------------------
882 // tool/status bar stuff
883 // ----------------------------------------------------------------------------
887 wxToolBar
* wxFrame::CreateToolBar(
890 , const wxString
& rName
893 if (wxFrameBase::CreateToolBar( lStyle
900 return m_frameToolBar
;
901 } // end of wxFrame::CreateToolBar
903 void wxFrame::PositionToolBar()
908 hWndClient
= ::WinWindowFromID(GetHwnd(), FID_CLIENT
);
909 ::WinQueryWindowRect(hWndClient
, &vRect
);
917 GetStatusBar()->GetClientSize( &nStatusX
920 // PM is backwards from windows
921 vRect
.yBottom
+= nStatusY
;
923 #endif // wxUSE_STATUSBAR
930 GetToolBar()->GetSize( &nToolbarWidth
934 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
936 nToolbarHeight
= vRect
.yBottom
;
940 nToolbarWidth
= vRect
.xRight
;
944 // Use the 'real' PM position here
946 GetToolBar()->SetSize( 0
950 ,wxSIZE_NO_ADJUSTMENTS
953 } // end of wxFrame::PositionToolBar
954 #endif // wxUSE_TOOLBAR
956 // ----------------------------------------------------------------------------
957 // frame state (iconized/maximized/...)
958 // ----------------------------------------------------------------------------
961 // propagate our state change to all child frames: this allows us to emulate X
962 // Windows behaviour where child frames float independently of the parent one
963 // on the desktop, but are iconized/restored with it
965 void wxFrame::IconizeChildFrames(
969 for (wxWindowList::Node
* pNode
= GetChildren().GetFirst();
971 pNode
= pNode
->GetNext() )
973 wxWindow
* pWin
= pNode
->GetData();
975 if (pWin
->IsKindOf(CLASSINFO(wxFrame
)) )
977 ((wxFrame
*)pWin
)->Iconize(bIconize
);
980 } // end of wxFrame::IconizeChildFrames
982 // ===========================================================================
983 // message processing
984 // ===========================================================================
986 // ---------------------------------------------------------------------------
988 // ---------------------------------------------------------------------------
989 bool wxFrame::OS2TranslateMessage(
993 if (wxWindow::OS2TranslateMessage(pMsg
))
996 // try the menu bar accels
998 wxMenuBar
* pMenuBar
= GetMenuBar();
1003 const wxAcceleratorTable
& rAcceleratorTable
= pMenuBar
->GetAccelTable();
1004 return rAcceleratorTable
.Translate(this, pMsg
);
1005 } // end of wxFrame::OS2TranslateMessage
1007 // ---------------------------------------------------------------------------
1008 // our private (non virtual) message handlers
1009 // ---------------------------------------------------------------------------
1010 bool wxFrame::HandlePaint()
1014 if (::WinQueryUpdateRect(GetHwnd(), &vRect
))
1019 // Icons in PM are the same as "pointers"
1024 hIcon
= (HPOINTER
)::WinSendMsg(GetHwnd(), WM_QUERYICON
, 0L, 0L);
1026 hIcon
= (HPOINTER
)m_hDefaultIcon
;
1029 // Hold a pointer to the dc so long as the OnPaint() message
1030 // is being processed
1033 HPS hPs
= ::WinBeginPaint(GetHwnd(), NULLHANDLE
, &vRect2
);
1036 // Erase background before painting or we get white background
1038 OS2DefWindowProc(WM_ERASEBACKGROUND
, (MPARAM
)hPs
, (MPARAM
)&vRect2
);
1045 hWndClient
= ::WinWindowFromID(GetHwnd(), FID_CLIENT
);
1046 ::WinQueryWindowRect(hWndClient
, &vRect3
);
1048 static const int nIconWidth
= 32;
1049 static const int nIconHeight
= 32;
1050 int nIconX
= (int)((vRect3
.xRight
- nIconWidth
)/2);
1051 int nIconY
= (int)((vRect3
.yBottom
+ nIconHeight
)/2);
1053 ::WinDrawPointer(hPs
, nIconX
, nIconY
, hIcon
, DP_NORMAL
);
1060 return wxWindow::HandlePaint();
1065 // nothing to paint - processed
1069 } // end of wxFrame::HandlePaint
1071 bool wxFrame::HandleSize(
1077 bool bProcessed
= FALSE
;
1083 // Only do it it if we were iconized before, otherwise resizing the
1084 // parent frame has a curious side effect of bringing it under it's
1090 // restore all child frames too
1092 IconizeChildFrames(FALSE
);
1099 m_bIconized
= FALSE
;
1104 // Iconize all child frames too
1106 IconizeChildFrames(TRUE
);
1114 // forward WM_SIZE to status bar control
1116 #if wxUSE_NATIVE_STATUSBAR
1117 if (m_frameStatusBar
&& m_frameStatusBar
->IsKindOf(CLASSINFO(wxStatusBar95
)))
1119 wxSizeEvent
vEvent( wxSize( nX
1122 ,m_frameStatusBar
->GetId()
1125 vEvent
.SetEventObject(m_frameStatusBar
);
1126 m_frameStatusBar
->OnSize(vEvent
);
1128 #endif // wxUSE_NATIVE_STATUSBAR
1130 PositionStatusBar();
1132 wxSizeEvent
vEvent( wxSize( nX
1138 vEvent
.SetEventObject(this);
1139 bProcessed
= GetEventHandler()->ProcessEvent(vEvent
);
1142 } // end of wxFrame::HandleSize
1144 bool wxFrame::HandleCommand(
1153 // In case it's e.g. a toolbar.
1155 wxWindow
* pWin
= wxFindWinFromHandle(hControl
);
1158 return pWin
->OS2Command( nCmd
1164 // Handle here commands from menus and accelerators
1166 if (nCmd
== 0 || nCmd
== 1)
1168 if (wxCurrentPopupMenu
)
1170 wxMenu
* pPopupMenu
= wxCurrentPopupMenu
;
1172 wxCurrentPopupMenu
= NULL
;
1174 return pPopupMenu
->OS2Command( nCmd
1179 if (ProcessCommand(nId
))
1185 } // end of wxFrame::HandleCommand
1187 bool wxFrame::HandleMenuSelect(
1195 if (nFlags
== 0xFFFF && hMenu
== 0)
1198 // Menu was removed from screen
1202 else if (!(nFlags
& MIS_SUBMENU
) && !(nFlags
& MIS_SEPARATOR
))
1209 // Don't give hints for separators (doesn't make sense) nor for the
1210 // items opening popup menus (they don't have them anyhow)
1214 wxMenuEvent
vEvent(wxEVT_MENU_HIGHLIGHT
, nMenuItem
);
1216 vEvent
.SetEventObject(this);
1217 return GetEventHandler()->ProcessEvent(vEvent
);
1218 } // end of wxFrame::HandleMenuSelect
1220 // ---------------------------------------------------------------------------
1221 // the window proc for wxFrame
1222 // ---------------------------------------------------------------------------
1224 MRESULT
wxFrame::OS2WindowProc(
1231 bool bProcessed
= FALSE
;
1237 // If we can't close, tell the system that we processed the
1238 // message - otherwise it would close us
1240 bProcessed
= !Close();
1249 UnpackCommand( (WXWPARAM
)wParam
1255 bProcessed
= HandleCommand( wId
1268 UnpackMenuSelect( wParam
1274 bProcessed
= HandleMenuSelect( wItem
1282 bProcessed
= HandlePaint();
1285 case CM_QUERYDRAGIMAGE
:
1290 hIcon
= (HPOINTER
)::WinSendMsg(GetHwnd(), WM_QUERYICON
, 0L, 0L);
1292 hIcon
= (HPOINTER
)m_hDefaultIcon
;
1293 mRc
= (MRESULT
)hIcon
;
1294 bProcessed
= mRc
!= 0;
1299 bProcessed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), (WXUINT
)wParam
);
1304 mRc
= wxWindow::OS2WindowProc( uMessage
1309 } // wxFrame::OS2WindowProc