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"
17 #include "wx/object.h"
18 #include "wx/dynarray.h"
21 #include "wx/string.h"
30 #include "wx/dialog.h"
31 #include "wx/settings.h"
32 #include "wx/dcclient.h"
36 #include "wx/os2/private.h"
39 #include "wx/statusbr.h"
40 #include "wx/generic/statusbr.h"
41 #endif // wxUSE_STATUSBAR
44 #include "wx/toolbar.h"
45 #endif // wxUSE_TOOLBAR
47 #include "wx/menuitem.h"
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 extern wxList WXDLLEXPORT wxPendingDelete
;
56 #if wxUSE_MENUS_NATIVE
57 extern wxMenu
*wxCurrentPopupMenu
;
60 extern void wxAssociateWinWithHandle( HWND hWnd
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 BEGIN_EVENT_TABLE(wxFrame
, wxFrameBase
)
69 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged
)
72 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxWindow
)
74 // ============================================================================
76 // ============================================================================
78 // ----------------------------------------------------------------------------
79 // static class members
80 // ----------------------------------------------------------------------------
83 #if wxUSE_NATIVE_STATUSBAR
84 bool wxFrame::m_bUseNativeStatusBar
= true;
86 bool wxFrame::m_bUseNativeStatusBar
= FALSE
;
89 #endif //wxUSE_STATUSBAR
91 // ----------------------------------------------------------------------------
92 // creation/destruction
93 // ----------------------------------------------------------------------------
97 m_nFsStatusBarFields
= 0;
98 m_nFsStatusBarHeight
= 0;
99 m_nFsToolBarHeight
= 0;
101 m_bWasMinimized
= FALSE
;
104 m_frameMenuBar
= NULL
;
105 m_frameToolBar
= NULL
;
106 m_frameStatusBar
= NULL
;
108 m_hTitleBar
= NULLHANDLE
;
109 m_hHScroll
= NULLHANDLE
;
110 m_hVScroll
= NULLHANDLE
;
115 memset(&m_vSwpTitleBar
, 0, sizeof(SWP
));
116 memset(&m_vSwpMenuBar
, 0, sizeof(SWP
));
117 memset(&m_vSwpHScroll
, 0, sizeof(SWP
));
118 memset(&m_vSwpVScroll
, 0, sizeof(SWP
));
119 memset(&m_vSwpStatusBar
, 0, sizeof(SWP
));
120 memset(&m_vSwpToolBar
, 0, sizeof(SWP
));
123 } // end of wxFrame::Init
125 bool wxFrame::Create( wxWindow
* pParent
,
127 const wxString
& rsTitle
,
131 const wxString
& rsName
)
133 if (!wxTopLevelWindow::Create( pParent
143 } // end of wxFrame::Create
147 m_isBeingDeleted
= true;
149 } // end of wxFrame::~wxFrame
152 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
154 void wxFrame::DoGetClientSize(
159 wxTopLevelWindow::DoGetClientSize( pX
163 // No need to use statusbar code as in WIN32 as the FORMATFRAME
164 // window procedure ensures PM knows about the new frame client
165 // size internally. A ::WinQueryWindowRect (that is called in
166 // wxWindow's GetClient size from above) is all that is needed!
168 } // end of wxFrame::DoGetClientSize
171 // Set the client size (i.e. leave the calculation of borders etc.
174 void wxFrame::DoSetClientSize(
180 // Statusbars are not part of the OS/2 Client but parent frame
181 // so no statusbar consideration
183 wxTopLevelWindow::DoSetClientSize( nWidth
186 } // end of wxFrame::DoSetClientSize
188 // ----------------------------------------------------------------------------
189 // wxFrame: various geometry-related functions
190 // ----------------------------------------------------------------------------
192 void wxFrame::Raise()
194 wxFrameBase::Raise();
195 ::WinSetWindowPos( (HWND
) GetParent()->GetHWND()
206 wxStatusBar
* wxFrame::OnCreateStatusBar(
210 , const wxString
& rName
213 wxStatusBar
* pStatusBar
= NULL
;
216 pStatusBar
= wxFrameBase::OnCreateStatusBar( nNumber
225 wxClientDC
vDC(pStatusBar
);
229 // Set the height according to the font and the border size
231 vDC
.SetFont(pStatusBar
->GetFont()); // Screws up the menues for some reason
232 vDC
.GetTextExtent( wxT("X")
237 int nHeight
= ((11 * nY
) / 10 + 2 * pStatusBar
->GetBorderY());
239 pStatusBar
->SetSize( -1
245 ::WinSetParent( pStatusBar
->GetHWND()
249 ::WinSetOwner( pStatusBar
->GetHWND()
255 if(::WinIsWindowShowing(m_hFrame
))
256 ::WinSendMsg(m_hFrame
, WM_UPDATEFRAME
, (MPARAM
)~0, 0);
259 } // end of wxFrame::OnCreateStatusBar
261 void wxFrame::PositionStatusBar()
268 // Native status bar positions itself
270 if (m_frameStatusBar
)
279 ::WinQueryWindowRect(m_hFrame
, &vRect
);
281 ::WinMapWindowPoints(m_hFrame
, HWND_DESKTOP
, (PPOINTL
)&vRect
, 2);
283 ::WinCalcFrameRect(m_hFrame
, &vRect
, TRUE
);
284 nWidth
= vRect
.xRight
- vRect
.xLeft
;
285 nY
= nY
- (vRect
.yBottom
- vFRect
.yBottom
);
287 m_frameStatusBar
->GetSize( &nStatbarWidth
291 nY
= nY
- nStatbarHeight
;
293 // Since we wish the status bar to be directly under the client area,
294 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
296 m_frameStatusBar
->SetSize( vRect
.xLeft
- vFRect
.xLeft
301 if (!::WinQueryWindowPos(m_frameStatusBar
->GetHWND(), &vSwp
))
303 vError
= ::WinGetLastError(vHabmain
);
304 sError
= wxPMErrorToStr(vError
);
305 wxLogError(_T("Error setting parent for StautsBar. Error: %s\n"), sError
.c_str());
309 } // end of wxFrame::PositionStatusBar
310 #endif // wxUSE_STATUSBAR
313 wxToolBar
* wxFrame::OnCreateToolBar(
316 , const wxString
& rsName
319 wxToolBar
* pToolBar
= wxFrameBase::OnCreateToolBar( lStyle
324 ::WinSetParent( pToolBar
->GetHWND()
328 ::WinSetOwner( pToolBar
->GetHWND()
332 } // end of WinGuiBase_CFrame::OnCreateToolBar
335 #if wxUSE_MENUS_NATIVE
336 void wxFrame::DetachMenuBar()
340 m_frameMenuBar
->Detach();
341 m_frameMenuBar
= NULL
;
343 } // end of wxFrame::DetachMenuBar
345 void wxFrame::SetMenuBar(
356 // Actually remove the menu from the frame
358 m_hMenu
= (WXHMENU
)0;
359 InternalSetMenuBar();
361 else // set new non NULL menu bar
363 m_frameMenuBar
= NULL
;
366 // Can set a menubar several times.
367 // TODO: how to prevent a memory leak if you have a currently-unattached
368 // menubar? wxWidgets assumes that the frame will delete the menu (otherwise
369 // there are problems for MDI).
371 if (pMenuBar
->GetHMenu())
373 m_hMenu
= pMenuBar
->GetHMenu();
378 m_hMenu
= pMenuBar
->Create();
382 InternalSetMenuBar();
383 m_frameMenuBar
= pMenuBar
;
384 pMenuBar
->Attach((wxFrame
*)this);
386 } // end of wxFrame::SetMenuBar
388 void wxFrame::AttachMenuBar(
392 wxFrameBase::AttachMenuBar(pMenubar
);
394 m_frameMenuBar
= pMenubar
;
399 // Actually remove the menu from the frame
401 m_hMenu
= (WXHMENU
)0;
402 InternalSetMenuBar();
404 else // Set new non NULL menu bar
407 // Can set a menubar several times.
409 if (pMenubar
->GetHMenu())
411 m_hMenu
= pMenubar
->GetHMenu();
415 if (pMenubar
->IsAttached())
418 m_hMenu
= pMenubar
->Create();
423 InternalSetMenuBar();
425 } // end of wxFrame::AttachMenuBar
427 void wxFrame::InternalSetMenuBar()
432 // Set the parent and owner of the menubar to be the frame
434 if (!::WinSetParent(m_hMenu
, m_hFrame
, FALSE
))
436 vError
= ::WinGetLastError(vHabmain
);
437 sError
= wxPMErrorToStr(vError
);
438 wxLogError(_T("Error setting parent for submenu. Error: %s\n"), sError
.c_str());
441 if (!::WinSetOwner(m_hMenu
, m_hFrame
))
443 vError
= ::WinGetLastError(vHabmain
);
444 sError
= wxPMErrorToStr(vError
);
445 wxLogError(_T("Error setting parent for submenu. Error: %s\n"), sError
.c_str());
447 ::WinSendMsg(m_hFrame
, WM_UPDATEFRAME
, (MPARAM
)FCF_MENU
, (MPARAM
)0);
448 } // end of wxFrame::InternalSetMenuBar
449 #endif // wxUSE_MENUS_NATIVE
452 // Responds to colour changes, and passes event on to children
454 void wxFrame::OnSysColourChanged(
455 wxSysColourChangedEvent
& rEvent
458 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
));
462 if (m_frameStatusBar
)
464 wxSysColourChangedEvent vEvent2
;
466 vEvent2
.SetEventObject(m_frameStatusBar
);
467 m_frameStatusBar
->GetEventHandler()->ProcessEvent(vEvent2
);
469 #endif //wxUSE_STATUSBAR
472 // Propagate the event to the non-top-level children
474 wxWindow::OnSysColourChanged(rEvent
);
475 } // end of wxFrame::OnSysColourChanged
477 // Pass true to show full screen, false to restore.
478 bool wxFrame::ShowFullScreen( bool bShow
, long lStyle
)
485 m_bFsIsShowing
= true;
489 wxToolBar
* pTheToolBar
= GetToolBar();
490 #endif //wxUSE_TOOLBAR
493 wxStatusBar
* pTheStatusBar
= GetStatusBar();
494 #endif //wxUSE_STATUSBAR
500 pTheToolBar
->GetSize(&nDummyWidth
, &m_nFsToolBarHeight
);
501 #endif //wxUSE_TOOLBAR
505 pTheStatusBar
->GetSize(&nDummyWidth
, &m_nFsStatusBarHeight
);
506 #endif //wxUSE_STATUSBAR
510 // Zap the toolbar, menubar, and statusbar
512 if ((lStyle
& wxFULLSCREEN_NOTOOLBAR
) && pTheToolBar
)
514 pTheToolBar
->SetSize(-1,0);
515 pTheToolBar
->Show(FALSE
);
517 #endif //wxUSE_TOOLBAR
519 if (lStyle
& wxFULLSCREEN_NOMENUBAR
)
521 ::WinSetParent(m_hMenu
, m_hFrame
, FALSE
);
522 ::WinSetOwner(m_hMenu
, m_hFrame
);
523 ::WinSendMsg((HWND
)m_hFrame
, WM_UPDATEFRAME
, (MPARAM
)FCF_MENU
, (MPARAM
)0);
528 // Save the number of fields in the statusbar
530 if ((lStyle
& wxFULLSCREEN_NOSTATUSBAR
) && pTheStatusBar
)
532 m_nFsStatusBarFields
= pTheStatusBar
->GetFieldsCount();
533 SetStatusBar((wxStatusBar
*) NULL
);
534 delete pTheStatusBar
;
537 m_nFsStatusBarFields
= 0;
538 #endif //wxUSE_STATUSBAR
541 // Zap the frame borders
545 // Save the 'normal' window style
547 m_lFsOldWindowStyle
= ::WinQueryWindowULong(m_hFrame
, QWL_STYLE
);
550 // Save the old position, width & height, maximize state
552 m_vFsOldSize
= GetRect();
553 m_bFsIsMaximized
= IsMaximized();
556 // Decide which window style flags to turn off
558 LONG lNewStyle
= m_lFsOldWindowStyle
;
561 if (lStyle
& wxFULLSCREEN_NOBORDER
)
562 lOffFlags
|= FCF_BORDER
;
563 if (lStyle
& wxFULLSCREEN_NOCAPTION
)
564 lOffFlags
|= (FCF_TASKLIST
| FCF_SYSMENU
);
566 lNewStyle
&= (~lOffFlags
);
569 // Change our window style to be compatible with full-screen mode
571 ::WinSetWindowULong((HWND
)m_hFrame
, QWL_STYLE
, (ULONG
)lNewStyle
);
574 // Resize to the size of the desktop
580 ::WinQueryWindowRect(HWND_DESKTOP
, &vRect
);
581 nWidth
= vRect
.xRight
- vRect
.xLeft
;
583 // Rmember OS/2 is backwards!
585 nHeight
= vRect
.yTop
- vRect
.yBottom
;
587 SetSize( nWidth
, nHeight
);
590 // Now flush the window style cache and actually go full-screen
592 ::WinSetWindowPos( (HWND
) GetParent()->GetHWND()
601 wxSize
sz( nWidth
, nHeight
);
602 wxSizeEvent
vEvent( sz
, GetId() );
604 GetEventHandler()->ProcessEvent(vEvent
);
612 m_bFsIsShowing
= false;
615 wxToolBar
* pTheToolBar
= GetToolBar();
618 // Restore the toolbar, menubar, and statusbar
620 if (pTheToolBar
&& (m_lFsStyle
& wxFULLSCREEN_NOTOOLBAR
))
622 pTheToolBar
->SetSize(-1, m_nFsToolBarHeight
);
623 pTheToolBar
->Show(true);
625 #endif //wxUSE_TOOLBAR
628 if ((m_lFsStyle
& wxFULLSCREEN_NOSTATUSBAR
) && (m_nFsStatusBarFields
> 0))
630 CreateStatusBar(m_nFsStatusBarFields
);
631 // PositionStatusBar();
633 #endif //wxUSE_STATUSBAR
635 if ((m_lFsStyle
& wxFULLSCREEN_NOMENUBAR
) && (m_hMenu
!= 0))
637 ::WinSetParent(m_hMenu
, m_hFrame
, FALSE
);
638 ::WinSetOwner(m_hMenu
, m_hFrame
);
639 ::WinSendMsg(m_hFrame
, WM_UPDATEFRAME
, (MPARAM
)FCF_MENU
, (MPARAM
)0);
641 Maximize(m_bFsIsMaximized
);
643 ::WinSetWindowULong( m_hFrame
645 ,(ULONG
)m_lFsOldWindowStyle
647 ::WinSetWindowPos( (HWND
) GetParent()->GetHWND()
656 return wxFrameBase::ShowFullScreen(bShow
, lStyle
);
657 } // end of wxFrame::ShowFullScreen
662 // ----------------------------------------------------------------------------
663 // wxFrame size management: we exclude the areas taken by menu/status/toolbars
664 // from the client area, so the client area is what's really available for the
666 // ----------------------------------------------------------------------------
668 // Checks if there is a toolbar, and returns the first free client position
669 wxPoint
wxFrame::GetClientAreaOrigin() const
671 wxPoint vPoint
= wxTopLevelWindow::GetClientAreaOrigin();
674 // In OS/2 the toolbar and statusbar are frame extensions so there is no
675 // adjustment. The client is supposedly resized for a toolbar in OS/2
676 // as it is for the status bar.
679 } // end of wxFrame::GetClientAreaOrigin
681 // ----------------------------------------------------------------------------
682 // tool/status bar stuff
683 // ----------------------------------------------------------------------------
687 wxToolBar
* wxFrame::CreateToolBar(
690 , const wxString
& rName
693 if (wxFrameBase::CreateToolBar( lStyle
700 return m_frameToolBar
;
701 } // end of wxFrame::CreateToolBar
703 void wxFrame::PositionToolBar()
705 wxToolBar
* pToolBar
= GetToolBar();
718 ::WinQueryWindowRect(m_hFrame
, &vRect
);
719 vPos
.y
= (wxCoord
)vRect
.yTop
;
720 ::WinMapWindowPoints(m_hFrame
, HWND_DESKTOP
, (PPOINTL
)&vRect
, 2);
722 ::WinCalcFrameRect(m_hFrame
, &vRect
, TRUE
);
724 vPos
.y
= (wxCoord
)(vFRect
.yTop
- vRect
.yTop
);
725 pToolBar
->GetSize( &vTWidth
729 if (pToolBar
->GetWindowStyleFlag() & wxTB_HORIZONTAL
)
731 vWidth
= (wxCoord
)(vRect
.xRight
- vRect
.xLeft
);
732 pToolBar
->SetSize( vRect
.xLeft
- vFRect
.xLeft
741 wxCoord vSheight
= 0;
743 if (m_frameStatusBar
)
744 m_frameStatusBar
->GetSize( &vSwidth
747 vHeight
= (wxCoord
)(vRect
.yTop
- vRect
.yBottom
);
748 pToolBar
->SetSize( vRect
.xLeft
- vFRect
.xLeft
754 if( ::WinIsWindowShowing(m_hFrame
) )
755 ::WinSendMsg(m_hFrame
, WM_UPDATEFRAME
, (MPARAM
)~0, 0);
756 } // end of wxFrame::PositionToolBar
757 #endif // wxUSE_TOOLBAR
759 // ----------------------------------------------------------------------------
760 // frame state (iconized/maximized/...)
761 // ----------------------------------------------------------------------------
764 // propagate our state change to all child frames: this allows us to emulate X
765 // Windows behaviour where child frames float independently of the parent one
766 // on the desktop, but are iconized/restored with it
768 void wxFrame::IconizeChildFrames( bool WXUNUSED(bIconize
) )
770 // FIXME: Generic MDI does not use Frames for the Childs, so this does _not_
771 // work. Possibly, the right thing is simply to eliminate this
772 // functions and all the calls to it from within this file.
774 for (wxWindowList::Node
* pNode
= GetChildren().GetFirst();
776 pNode
= pNode
->GetNext() )
778 wxWindow
* pWin
= pNode
->GetData();
779 wxFrame
* pFrame
= wxDynamicCast(pWin
, wxFrame
);
782 #if wxUSE_MDI_ARCHITECTURE
783 && !wxDynamicCast(pFrame
, wxMDIChildFrame
)
784 #endif // wxUSE_MDI_ARCHITECTURE
788 // We don't want to restore the child frames which had been
789 // iconized even before we were iconized, so save the child frame
790 // status when iconizing the parent frame and check it when
795 pFrame
->m_bWasMinimized
= pFrame
->IsIconized();
799 // This test works for both iconizing and restoring
801 if (!pFrame
->m_bWasMinimized
)
802 pFrame
->Iconize(bIconize
);
806 } // end of wxFrame::IconizeChildFrames
808 WXHICON
wxFrame::GetDefaultIcon() const
810 return (WXHICON
)(wxSTD_FRAME_ICON
? wxSTD_FRAME_ICON
811 : wxDEFAULT_FRAME_ICON
);
813 // ===========================================================================
814 // message processing
815 // ===========================================================================
817 // ---------------------------------------------------------------------------
819 // ---------------------------------------------------------------------------
820 bool wxFrame::OS2TranslateMessage(
825 // try the menu bar accels
827 wxMenuBar
* pMenuBar
= GetMenuBar();
832 #if wxUSE_ACCEL && wxUSE_MENUS_NATIVE
833 const wxAcceleratorTable
& rAcceleratorTable
= pMenuBar
->GetAccelTable();
834 return rAcceleratorTable
.Translate(GetHWND(), pMsg
);
838 } // end of wxFrame::OS2TranslateMessage
840 // ---------------------------------------------------------------------------
841 // our private (non virtual) message handlers
842 // ---------------------------------------------------------------------------
843 bool wxFrame::HandlePaint()
847 if (::WinQueryUpdateRect(GetHWND(), &vRect
))
852 // Icons in PM are the same as "pointers"
854 const wxIcon
& vIcon
= GetIcon();
858 hIcon
= (HPOINTER
)::WinSendMsg(m_hFrame
, WM_QUERYICON
, 0L, 0L);
860 hIcon
= (HPOINTER
)m_hDefaultIcon
;
863 // Hold a pointer to the dc so long as the OnPaint() message
864 // is being processed
867 HPS hPs
= ::WinBeginPaint(GetHwnd(), NULLHANDLE
, &vRect2
);
870 // Erase background before painting or we get white background
872 OS2DefWindowProc(WM_ERASEBACKGROUND
, (MPARAM
)hPs
, (MPARAM
)&vRect2
);
878 ::WinQueryWindowRect(GetHwnd(), &vRect3
);
881 // FIXME: incomplete headers ???
883 static const int nIconWidth
= 32;
884 static const int nIconHeight
= 32;
885 int nIconX
= (int)((vRect3
.xRight
- nIconWidth
)/2);
886 int nIconY
= (int)((vRect3
.yBottom
+ nIconHeight
)/2);
888 ::WinDrawPointer(hPs
, nIconX
, nIconY
, hIcon
, DP_NORMAL
);
895 if (!wxWindow::HandlePaint())
900 hPS
= ::WinBeginPaint( GetHwnd()
906 ::GpiCreateLogColorTable( hPS
910 ,(LONG
)wxTheColourDatabase
->m_nSize
911 ,(PLONG
)wxTheColourDatabase
->m_palTable
913 ::GpiCreateLogColorTable( hPS
923 ,GetBackgroundColour().GetPixel()
932 } // end of wxFrame::HandlePaint
934 bool wxFrame::HandleSize(
940 bool bProcessed
= FALSE
;
946 // Only do it it if we were iconized before, otherwise resizing the
947 // parent frame has a curious side effect of bringing it under it's
953 // restore all child frames too
955 IconizeChildFrames(FALSE
);
956 (void)SendIconizeEvent(FALSE
);
968 // Iconize all child frames too
970 IconizeChildFrames(TRUE
);
971 (void)SendIconizeEvent();
979 // forward WM_SIZE to status bar control
981 #if wxUSE_NATIVE_STATUSBAR
982 if (m_frameStatusBar
&& m_frameStatusBar
->IsKindOf(CLASSINFO(wxStatusBar95
)))
984 wxSizeEvent
vEvent( wxSize( nX
987 ,m_frameStatusBar
->GetId()
990 vEvent
.SetEventObject(m_frameStatusBar
);
991 m_frameStatusBar
->OnSize(vEvent
);
993 #endif // wxUSE_NATIVE_STATUSBAR
998 #endif // wxUSE_TOOLBAR
1000 bProcessed
= wxWindow::HandleSize( nX
1006 } // end of wxFrame::HandleSize
1008 bool wxFrame::HandleCommand( WXWORD nId
,
1015 // In case it's e.g. a toolbar.
1017 wxWindow
* pWin
= wxFindWinFromHandle(hControl
);
1020 return pWin
->OS2Command( nCmd
, nId
);
1024 // Handle here commands from menus and accelerators
1026 if (nCmd
== CMDSRC_MENU
|| nCmd
== CMDSRC_ACCELERATOR
)
1028 #if wxUSE_MENUS_NATIVE
1029 if (wxCurrentPopupMenu
)
1031 wxMenu
* pPopupMenu
= wxCurrentPopupMenu
;
1033 wxCurrentPopupMenu
= NULL
;
1035 return pPopupMenu
->OS2Command( nCmd
, nId
);
1039 if (ProcessCommand(nId
))
1045 } // end of wxFrame::HandleCommand
1047 bool wxFrame::HandleMenuSelect(
1058 rc
= ::WinSendMsg(hMenu
, MM_QUERYITEM
, MPFROM2SHORT(nItem
, TRUE
), (MPARAM
)&mItem
);
1060 if(rc
&& !(mItem
.afStyle
& (MIS_SUBMENU
| MIS_SEPARATOR
)))
1062 wxMenuEvent
vEvent(wxEVT_MENU_HIGHLIGHT
, nItem
);
1064 vEvent
.SetEventObject(this);
1065 GetEventHandler()->ProcessEvent(vEvent
); // return value would be ignored by PM
1069 DoGiveHelp(wxEmptyString
, FALSE
);
1074 } // end of wxFrame::HandleMenuSelect
1076 // ---------------------------------------------------------------------------
1077 // Main Frame window proc
1078 // ---------------------------------------------------------------------------
1079 MRESULT EXPENTRY
wxFrameMainWndProc(
1086 MRESULT rc
= (MRESULT
)0;
1087 bool bProcessed
= FALSE
;
1088 wxFrame
* pWnd
= NULL
;
1090 pWnd
= (wxFrame
*) wxFindWinFromHandle((WXHWND
) hWnd
);
1093 case WM_QUERYFRAMECTLCOUNT
:
1094 if(pWnd
&& pWnd
->m_fnOldWndProc
)
1096 USHORT uItemCount
= SHORT1FROMMR(pWnd
->m_fnOldWndProc(hWnd
, ulMsg
, wParam
, lParam
));
1098 rc
= MRFROMSHORT(uItemCount
);
1102 case WM_FORMATFRAME
:
1103 /////////////////////////////////////////////////////////////////////////////////
1104 // Applications that subclass frame controls may find that the frame is already
1105 // subclassed the number of frame controls is variable.
1106 // The WM_FORMATFRAME and WM_QUERYFRAMECTLCOUNT messages must always be
1107 // subclassed by calling the previous window procedure and modifying its result.
1108 ////////////////////////////////////////////////////////////////////////////////
1120 pSWP
= (PSWP
)PVOIDFROMMP(wParam
);
1121 nItemCount
= SHORT1FROMMR(pWnd
->m_fnOldWndProc(hWnd
, ulMsg
, wParam
, lParam
));
1122 if(pWnd
->m_frameStatusBar
)
1124 ::WinQueryWindowRect(pWnd
->m_frameStatusBar
->GetHWND(), &vRstb
);
1125 pWnd
->m_frameStatusBar
->GetSize(NULL
, &nHeight
);
1127 if(pWnd
->m_frameToolBar
)
1129 ::WinQueryWindowRect(pWnd
->m_frameToolBar
->GetHWND(), &vRtlb
);
1130 pWnd
->m_frameToolBar
->GetSize(&nWidth
, &nHeight2
);
1132 ::WinQueryWindowRect(pWnd
->m_hFrame
, &vRectl
);
1133 ::WinMapWindowPoints(pWnd
->m_hFrame
, HWND_DESKTOP
, (PPOINTL
)&vRectl
, 2);
1134 ::WinCalcFrameRect(pWnd
->m_hFrame
, &vRectl
, TRUE
);
1135 ::WinMapWindowPoints(HWND_DESKTOP
, pWnd
->m_hFrame
, (PPOINTL
)&vRectl
, 2);
1136 for(i
= 0; i
< nItemCount
; i
++)
1138 if(pWnd
->m_hWnd
&& pSWP
[i
].hwnd
== pWnd
->m_hWnd
)
1140 if (pWnd
->m_frameToolBar
&& pWnd
->m_frameToolBar
->GetWindowStyleFlag() & wxTB_HORIZONTAL
)
1142 pSWP
[i
].x
= vRectl
.xLeft
;
1143 pSWP
[i
].y
= vRectl
.yBottom
+ nHeight
;
1144 pSWP
[i
].cx
= vRectl
.xRight
- vRectl
.xLeft
;
1145 pSWP
[i
].cy
= vRectl
.yTop
- vRectl
.yBottom
- (nHeight
+ nHeight2
);
1149 pSWP
[i
].x
= vRectl
.xLeft
+ nWidth
;
1150 pSWP
[i
].y
= vRectl
.yBottom
+ nHeight
;
1151 pSWP
[i
].cx
= vRectl
.xRight
- (vRectl
.xLeft
+ nWidth
);
1152 pSWP
[i
].cy
= vRectl
.yTop
- vRectl
.yBottom
- nHeight
;
1154 pSWP
[i
].fl
= SWP_SIZE
| SWP_MOVE
| SWP_SHOW
;
1155 pSWP
[i
].hwndInsertBehind
= HWND_TOP
;
1159 rc
= MRFROMSHORT(nItemCount
);
1164 if(pWnd
&& pWnd
->m_fnOldWndProc
)
1165 rc
= pWnd
->m_fnOldWndProc(hWnd
, ulMsg
, wParam
, lParam
);
1167 rc
= ::WinDefWindowProc(hWnd
, ulMsg
, wParam
, lParam
);
1170 } // end of wxFrameMainWndProc
1172 MRESULT EXPENTRY
wxFrameWndProc(
1180 // Trace all ulMsgs - useful for the debugging
1183 wxFrame
* pWnd
= NULL
;
1185 parentHwnd
= WinQueryWindow(hWnd
,QW_PARENT
);
1186 pWnd
= (wxFrame
*) wxFindWinFromHandle((WXHWND
) hWnd
);
1189 // When we get the first message for the HWND we just created, we associate
1190 // it with wxWindow stored in wxWndHook
1193 MRESULT rc
= (MRESULT
)0;
1196 // Stop right here if we don't have a valid handle in our wxWindow object.
1198 if (pWnd
&& !pWnd
->GetHWND())
1200 pWnd
->SetHWND((WXHWND
) hWnd
);
1201 rc
= pWnd
->OS2DefWindowProc(ulMsg
, wParam
, lParam
);
1207 rc
= pWnd
->OS2WindowProc(ulMsg
, wParam
, lParam
);
1209 rc
= ::WinDefWindowProc(hWnd
, ulMsg
, wParam
, lParam
);
1212 } // end of wxFrameWndProc
1214 MRESULT
wxFrame::OS2WindowProc(
1221 bool bProcessed
= FALSE
;
1227 // If we can't close, tell the system that we processed the
1228 // message - otherwise it would close us
1230 bProcessed
= !Close();
1234 bProcessed
= HandlePaint();
1235 mRc
= (MRESULT
)FALSE
;
1238 case WM_ERASEBACKGROUND
:
1240 // Returning TRUE to requests PM to paint the window background
1241 // in SYSCLR_WINDOW. We capture this here because the PS returned
1242 // in Frames is the PS for the whole frame, which we can't really
1243 // use at all. If you want to paint a different background, do it
1244 // in an OnPaint using a wxPaintDC.
1246 mRc
= (MRESULT
)(TRUE
);
1255 UnpackCommand( (WXWPARAM
)wParam
1262 bProcessed
= HandleCommand( wId
1275 UnpackMenuSelect( wParam
1281 bProcessed
= HandleMenuSelect( wItem
1285 mRc
= (MRESULT
)TRUE
;
1291 SHORT nScxnew
= SHORT1FROMMP(lParam
); // New horizontal size.
1292 SHORT nScynew
= SHORT2FROMMP(lParam
); // New vertical size.
1294 lParam
= MRFROM2SHORT( nScxnew
- 20
1298 bProcessed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), (WXUINT
)wParam
);
1299 mRc
= (MRESULT
)FALSE
;
1302 case CM_QUERYDRAGIMAGE
:
1304 const wxIcon
& vIcon
= GetIcon();
1308 hIcon
= (HPOINTER
)::WinSendMsg(GetHWND(), WM_QUERYICON
, 0L, 0L);
1310 hIcon
= (HPOINTER
)m_hDefaultIcon
;
1311 mRc
= (MRESULT
)hIcon
;
1312 bProcessed
= mRc
!= 0;
1318 mRc
= wxWindow::OS2WindowProc( uMessage
1322 return (MRESULT
)mRc
;
1323 } // wxFrame::OS2WindowProc
1325 void wxFrame::SetClient(WXHWND
WXUNUSED(c_Hwnd
))
1327 // Duh...nothing to do under OS/2
1330 void wxFrame::SetClient(
1334 wxWindow
* pOldClient
= this->GetClient();
1335 bool bClientHasFocus
= pOldClient
&& (pOldClient
== wxWindow::FindFocus());
1337 if(pOldClient
== pWindow
) // nothing to do
1339 if(pWindow
== NULL
) // just need to remove old client
1341 if(pOldClient
== NULL
) // nothing to do
1344 if(bClientHasFocus
)
1347 pOldClient
->Enable( FALSE
);
1348 pOldClient
->Show( FALSE
);
1349 ::WinSetWindowUShort(pOldClient
->GetHWND(), QWS_ID
, (USHORT
)pOldClient
->GetId());
1350 // to avoid OS/2 bug need to update frame
1351 ::WinSendMsg((HWND
)this->GetFrame(), WM_UPDATEFRAME
, (MPARAM
)~0, 0);
1356 // Else need to change client
1361 ::WinEnableWindowUpdate((HWND
)GetHWND(), FALSE
);
1364 pOldClient
->Enable(FALSE
);
1365 pOldClient
->Show(FALSE
);
1366 ::WinSetWindowUShort(pOldClient
->GetHWND(), QWS_ID
, (USHORT
)pOldClient
->GetId());
1368 pWindow
->Reparent(this);
1369 ::WinSetWindowUShort(pWindow
->GetHWND(), QWS_ID
, FID_CLIENT
);
1370 ::WinEnableWindowUpdate((HWND
)GetHWND(), TRUE
);
1372 pWindow
->Show(); // ensure client is showing
1373 if( this->IsShown() )
1376 ::WinSendMsg(m_hFrame
, WM_UPDATEFRAME
, (MPARAM
)~0, 0);
1380 wxWindow
* wxFrame::GetClient()
1382 return wxFindWinFromHandle((WXHWND
)::WinWindowFromID(m_hFrame
, FID_CLIENT
));
1385 void wxFrame::SendSizeEvent()
1389 RECTL vRect
= wxGetWindowRect(GetHwnd());
1391 ::WinPostMsg( GetHwnd()
1393 ,MPFROM2SHORT( vRect
.xRight
- vRect
.xLeft
1394 ,vRect
.xRight
- vRect
.xLeft
1396 ,MPFROM2SHORT( vRect
.yTop
- vRect
.yBottom
1397 ,vRect
.yTop
- vRect
.yBottom