1 ///////////////////////////////////////////////////////////////////////////// 
   2 // Name:        src/msw/frame.cpp 
   4 // Author:      Julian Smart 
   8 // Copyright:   (c) Julian Smart 
   9 // Licence:     wxWindows licence 
  10 ///////////////////////////////////////////////////////////////////////////// 
  12 // ============================================================================ 
  14 // ============================================================================ 
  16 // ---------------------------------------------------------------------------- 
  18 // ---------------------------------------------------------------------------- 
  20 // For compilers that support precompilation, includes "wx.h". 
  21 #include "wx/wxprec.h" 
  30     #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly" 
  34     #include "wx/dialog.h" 
  35     #include "wx/settings.h" 
  36     #include "wx/dcclient.h" 
  40     #include "wx/toolbar.h" 
  41     #include "wx/statusbr.h" 
  42     #include "wx/menuitem.h" 
  45 #include "wx/msw/private.h" 
  47 #if defined(__POCKETPC__) || defined(__SMARTPHONE__) 
  50     #include "wx/msw/winundef.h" 
  53 #include "wx/generic/statusbr.h" 
  55 #ifdef __WXUNIVERSAL__ 
  56     #include "wx/univ/theme.h" 
  57     #include "wx/univ/colschem.h" 
  58 #endif // __WXUNIVERSAL__ 
  60 // ---------------------------------------------------------------------------- 
  62 // ---------------------------------------------------------------------------- 
  64 #if wxUSE_MENUS_NATIVE 
  65     extern wxMenu 
*wxCurrentPopupMenu
; 
  66 #endif // wxUSE_MENUS_NATIVE 
  68 // ---------------------------------------------------------------------------- 
  70 // ---------------------------------------------------------------------------- 
  72 BEGIN_EVENT_TABLE(wxFrame
, wxFrameBase
) 
  73     EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged
) 
  76 #if wxUSE_EXTENDED_RTTI 
  77 WX_DEFINE_FLAGS( wxFrameStyle 
) 
  79 wxBEGIN_FLAGS( wxFrameStyle 
) 
  80     // new style border flags, we put them first to 
  81     // use them for streaming out 
  82     wxFLAGS_MEMBER(wxBORDER_SIMPLE
) 
  83     wxFLAGS_MEMBER(wxBORDER_SUNKEN
) 
  84     wxFLAGS_MEMBER(wxBORDER_DOUBLE
) 
  85     wxFLAGS_MEMBER(wxBORDER_RAISED
) 
  86     wxFLAGS_MEMBER(wxBORDER_STATIC
) 
  87     wxFLAGS_MEMBER(wxBORDER_NONE
) 
  89     // old style border flags 
  90     wxFLAGS_MEMBER(wxSIMPLE_BORDER
) 
  91     wxFLAGS_MEMBER(wxSUNKEN_BORDER
) 
  92     wxFLAGS_MEMBER(wxDOUBLE_BORDER
) 
  93     wxFLAGS_MEMBER(wxRAISED_BORDER
) 
  94     wxFLAGS_MEMBER(wxSTATIC_BORDER
) 
  95     wxFLAGS_MEMBER(wxBORDER
) 
  97     // standard window styles 
  98     wxFLAGS_MEMBER(wxTAB_TRAVERSAL
) 
  99     wxFLAGS_MEMBER(wxCLIP_CHILDREN
) 
 100     wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
) 
 101     wxFLAGS_MEMBER(wxWANTS_CHARS
) 
 102     wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
) 
 103     wxFLAGS_MEMBER(wxALWAYS_SHOW_SB 
) 
 104     wxFLAGS_MEMBER(wxVSCROLL
) 
 105     wxFLAGS_MEMBER(wxHSCROLL
) 
 108     wxFLAGS_MEMBER(wxSTAY_ON_TOP
) 
 109     wxFLAGS_MEMBER(wxCAPTION
) 
 110 #if WXWIN_COMPATIBILITY_2_6 
 111     wxFLAGS_MEMBER(wxTHICK_FRAME
) 
 112 #endif // WXWIN_COMPATIBILITY_2_6 
 113     wxFLAGS_MEMBER(wxSYSTEM_MENU
) 
 114     wxFLAGS_MEMBER(wxRESIZE_BORDER
) 
 115 #if WXWIN_COMPATIBILITY_2_6 
 116     wxFLAGS_MEMBER(wxRESIZE_BOX
) 
 117 #endif // WXWIN_COMPATIBILITY_2_6 
 118     wxFLAGS_MEMBER(wxCLOSE_BOX
) 
 119     wxFLAGS_MEMBER(wxMAXIMIZE_BOX
) 
 120     wxFLAGS_MEMBER(wxMINIMIZE_BOX
) 
 122     wxFLAGS_MEMBER(wxFRAME_TOOL_WINDOW
) 
 123     wxFLAGS_MEMBER(wxFRAME_FLOAT_ON_PARENT
) 
 125     wxFLAGS_MEMBER(wxFRAME_SHAPED
) 
 127 wxEND_FLAGS( wxFrameStyle 
) 
 129 IMPLEMENT_DYNAMIC_CLASS_XTI(wxFrame
, wxTopLevelWindow
,"wx/frame.h") 
 131 wxBEGIN_PROPERTIES_TABLE(wxFrame
) 
 132     wxEVENT_PROPERTY( Menu 
, wxEVT_COMMAND_MENU_SELECTED 
, wxCommandEvent
) 
 134     wxPROPERTY( Title
,wxString
, SetTitle
, GetTitle
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) 
 135     wxPROPERTY_FLAGS( WindowStyle 
, wxFrameStyle 
, long , SetWindowStyleFlag 
, GetWindowStyleFlag 
, EMPTY_MACROVALUE 
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style 
 136     wxPROPERTY( MenuBar 
, wxMenuBar 
* , SetMenuBar 
, GetMenuBar 
, EMPTY_MACROVALUE 
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) 
 137 wxEND_PROPERTIES_TABLE() 
 139 wxBEGIN_HANDLERS_TABLE(wxFrame
) 
 140 wxEND_HANDLERS_TABLE() 
 142 wxCONSTRUCTOR_6( wxFrame 
, wxWindow
* , Parent 
, wxWindowID 
, Id 
, wxString 
, Title 
, wxPoint 
, Position 
, wxSize 
, Size 
, long , WindowStyle
) 
 145 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxTopLevelWindow
) 
 148 // ============================================================================ 
 150 // ============================================================================ 
 152 // ---------------------------------------------------------------------------- 
 153 // static class members 
 154 // ---------------------------------------------------------------------------- 
 157     #if wxUSE_NATIVE_STATUSBAR 
 158         bool wxFrame::m_useNativeStatusBar 
= true; 
 160         bool wxFrame::m_useNativeStatusBar 
= false; 
 162 #endif // wxUSE_NATIVE_STATUSBAR 
 164 // ---------------------------------------------------------------------------- 
 165 // creation/destruction 
 166 // ---------------------------------------------------------------------------- 
 172 #endif // wxUSE_MENUS 
 178     m_wasMinimized 
= false; 
 181 bool wxFrame::Create(wxWindow 
*parent
, 
 183                      const wxString
& title
, 
 187                      const wxString
& name
) 
 189     if ( !wxTopLevelWindow::Create(parent
, id
, title
, pos
, size
, style
, name
) ) 
 192     SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
)); 
 194 #if defined(__SMARTPHONE__) 
 195     SetLeftMenu(wxID_EXIT
, _("Done")); 
 198 #if wxUSE_ACCEL && defined(__POCKETPC__) 
 199     // The guidelines state that Ctrl+Q should quit the app. 
 200     // Let's define an accelerator table to send wxID_EXIT. 
 201     wxAcceleratorEntry entries
[1]; 
 202     entries
[0].Set(wxACCEL_CTRL
,   'Q',         wxID_EXIT
); 
 203     wxAcceleratorTable 
accel(1, entries
); 
 204     SetAcceleratorTable(accel
); 
 205 #endif // wxUSE_ACCEL && __POCKETPC__ 
 217 // ---------------------------------------------------------------------------- 
 218 // wxFrame client size calculations 
 219 // ---------------------------------------------------------------------------- 
 221 void wxFrame::DoSetClientSize(int width
, int height
) 
 223     // leave enough space for the status bar if we have (and show) it 
 225     wxStatusBar 
*statbar 
= GetStatusBar(); 
 226     if ( statbar 
&& statbar
->IsShown() ) 
 228         height 
+= statbar
->GetSize().y
; 
 230 #endif // wxUSE_STATUSBAR 
 232     // call GetClientAreaOrigin() to take the toolbar into account 
 233     wxPoint pt 
= GetClientAreaOrigin(); 
 238     wxToolBar 
* const toolbar 
= GetToolBar(); 
 241         if ( toolbar
->HasFlag(wxTB_RIGHT 
| wxTB_BOTTOM
) ) 
 243             const wxSize sizeTB 
= toolbar
->GetSize(); 
 244             if ( toolbar
->HasFlag(wxTB_RIGHT
) ) 
 249         //else: toolbar already taken into account by GetClientAreaOrigin() 
 251 #endif // wxUSE_TOOLBAR 
 253     wxTopLevelWindow::DoSetClientSize(width
, height
); 
 256 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc. 
 257 void wxFrame::DoGetClientSize(int *x
, int *y
) const 
 259     wxTopLevelWindow::DoGetClientSize(x
, y
); 
 261     // account for the possible toolbar 
 262     wxPoint pt 
= GetClientAreaOrigin(); 
 270     wxToolBar 
* const toolbar 
= GetToolBar(); 
 273         if ( toolbar
->HasFlag(wxTB_RIGHT 
| wxTB_BOTTOM
) ) 
 275             const wxSize sizeTB 
= toolbar
->GetSize(); 
 276             if ( toolbar
->HasFlag(wxTB_RIGHT
) ) 
 287         //else: toolbar already taken into account by GetClientAreaOrigin() 
 289 #endif // wxUSE_TOOLBAR 
 292     // adjust client area height to take the status bar into account 
 295         wxStatusBar 
*statbar 
= GetStatusBar(); 
 296         if ( statbar 
&& statbar
->IsShown() ) 
 298             *y 
-= statbar
->GetClientSize().y
; 
 301 #endif // wxUSE_STATUSBAR 
 304 // ---------------------------------------------------------------------------- 
 305 // wxFrame: various geometry-related functions 
 306 // ---------------------------------------------------------------------------- 
 308 void wxFrame::Raise() 
 310     ::SetForegroundWindow(GetHwnd()); 
 313 // generate an artificial resize event 
 314 void wxFrame::SendSizeEvent(int flags
) 
 318         RECT r 
= wxGetWindowRect(GetHwnd()); 
 320         if ( flags 
& wxSEND_EVENT_POST 
) 
 322             ::PostMessage(GetHwnd(), WM_SIZE
, 
 323                           IsMaximized() ? SIZE_MAXIMIZED 
: SIZE_RESTORED
, 
 324                           MAKELPARAM(r
.right 
- r
.left
, r
.bottom 
- r
.top
)); 
 328             ::SendMessage(GetHwnd(), WM_SIZE
, 
 329                           IsMaximized() ? SIZE_MAXIMIZED 
: SIZE_RESTORED
, 
 330                           MAKELPARAM(r
.right 
- r
.left
, r
.bottom 
- r
.top
)); 
 336 wxStatusBar 
*wxFrame::OnCreateStatusBar(int number
, 
 339                                         const wxString
& name
) 
 341     wxStatusBar 
*statusBar 
wxDUMMY_INITIALIZE(NULL
); 
 343 #if wxUSE_NATIVE_STATUSBAR 
 344     if ( !UsesNativeStatusBar() ) 
 346         statusBar 
= (wxStatusBar 
*)new wxStatusBarGeneric(this, id
, style
); 
 351         statusBar 
= new wxStatusBar(this, id
, style
, name
); 
 354     statusBar
->SetFieldsCount(number
); 
 359 void wxFrame::PositionStatusBar() 
 361     if ( !m_frameStatusBar 
|| !m_frameStatusBar
->IsShown() ) 
 365     GetClientSize(&w
, &h
); 
 368     m_frameStatusBar
->GetSize(&sw
, &sh
); 
 372     wxToolBar 
* const toolbar 
= GetToolBar(); 
 373     if ( toolbar 
&& !toolbar
->HasFlag(wxTB_TOP
) ) 
 375         const wxSize sizeTB 
= toolbar
->GetSize(); 
 377         if ( toolbar
->HasFlag(wxTB_LEFT 
| wxTB_RIGHT
) ) 
 379             if ( toolbar
->HasFlag(wxTB_LEFT
) ) 
 386             // we need to position the status bar below the toolbar 
 390     //else: no adjustments necessary for the toolbar on top 
 391 #endif // wxUSE_TOOLBAR 
 393     // Since we wish the status bar to be directly under the client area, 
 394     // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS. 
 395     m_frameStatusBar
->SetSize(x
, h
, w
, sh
); 
 398 #endif // wxUSE_STATUSBAR 
 400 #if wxUSE_MENUS_NATIVE 
 402 void wxFrame::AttachMenuBar(wxMenuBar 
*menubar
) 
 404 #if defined(__SMARTPHONE__) && defined(__WXWINCE__) 
 406     wxMenu 
*autoMenu 
= NULL
; 
 408     if( menubar
->GetMenuCount() == 1 ) 
 410         autoMenu 
= wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(menubar
->GetMenu(0)); 
 411         SetRightMenu(wxID_ANY
, menubar
->GetMenuLabel(0), autoMenu
); 
 415         autoMenu 
= new wxMenu
; 
 417         for( size_t n 
= 0; n 
< menubar
->GetMenuCount(); n
++ ) 
 419             wxMenu 
*item 
= menubar
->GetMenu(n
); 
 420             wxString label 
= menubar
->GetMenuLabel(n
); 
 421             wxMenu 
*new_item 
= wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(item
); 
 422             autoMenu
->Append(wxID_ANY
, label
, new_item
); 
 425         SetRightMenu(wxID_ANY
, _("Menu"), autoMenu
); 
 428 #elif defined(WINCE_WITHOUT_COMMANDBAR) 
 431         wxToolMenuBar
* toolBar 
= new wxToolMenuBar(this, wxID_ANY
, 
 432                          wxDefaultPosition
, wxDefaultSize
, 
 433                          wxBORDER_NONE 
| wxTB_HORIZONTAL
, 
 434                          wxToolBarNameStr
, menubar
); 
 436         menubar
->SetToolBar(toolBar
); 
 439     // When the main window is created using CW_USEDEFAULT the height of the 
 440     // menubar is not taken into account, so we resize it afterwards if a 
 441     // menubar is present 
 442     HWND hwndMenuBar 
= SHFindMenuBar(GetHwnd()); 
 446         ::GetWindowRect(hwndMenuBar
, &mbRect
); 
 447         const int menuHeight 
= mbRect
.bottom 
- mbRect
.top
; 
 450         ::GetWindowRect(GetHwnd(), &rc
); 
 451         // adjust for menu / titlebar height 
 452         rc
.bottom 
-= (2*menuHeight
-1); 
 454         ::MoveWindow(Gethwnd(), rc
.left
, rc
.top
, rc
.right
, rc
.bottom
, FALSE
); 
 458     wxFrameBase::AttachMenuBar(menubar
); 
 462         // actually remove the menu from the frame 
 463         m_hMenu 
= (WXHMENU
)0; 
 464         InternalSetMenuBar(); 
 466     else // set new non NULL menu bar 
 468 #if !defined(__WXWINCE__) || defined(WINCE_WITH_COMMANDBAR) 
 469         // Can set a menubar several times. 
 470         if ( menubar
->GetHMenu() ) 
 472             m_hMenu 
= menubar
->GetHMenu(); 
 476             m_hMenu 
= menubar
->Create(); 
 480                 wxFAIL_MSG( _T("failed to create menu bar") ); 
 485         InternalSetMenuBar(); 
 489 void wxFrame::InternalSetMenuBar() 
 491 #if defined(__WXMICROWIN__) || defined(__WXWINCE__) 
 494     if ( !::SetMenu(GetHwnd(), (HMENU
)m_hMenu
) ) 
 496         wxLogLastError(wxT("SetMenu")); 
 501 #endif // wxUSE_MENUS_NATIVE 
 503 // Responds to colour changes, and passes event on to children. 
 504 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
) 
 506     SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
)); 
 510     if ( m_frameStatusBar 
) 
 512         wxSysColourChangedEvent event2
; 
 513         event2
.SetEventObject( m_frameStatusBar 
); 
 514         m_frameStatusBar
->HandleWindowEvent(event2
); 
 516 #endif // wxUSE_STATUSBAR 
 518     // Propagate the event to the non-top-level children 
 519     wxWindow::OnSysColourChanged(event
); 
 522 // Pass true to show full screen, false to restore. 
 523 bool wxFrame::ShowFullScreen(bool show
, long style
) 
 525     // TODO-CE: add support for CE 
 526 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) 
 527     if ( IsFullScreen() == show 
) 
 532         // zap the toolbar, menubar, and statusbar if needed 
 534         // TODO: hide commandbar for WINCE_WITH_COMMANDBAR 
 536         wxToolBar 
*theToolBar 
= GetToolBar(); 
 538         if ((style 
& wxFULLSCREEN_NOTOOLBAR
) && theToolBar
) 
 540             if ( theToolBar
->IsShown() ) 
 542                 theToolBar
->SetSize(wxDefaultCoord
,0); 
 543                 theToolBar
->Show(false); 
 545             else // prevent it from being restored later 
 547                 style 
&= ~wxFULLSCREEN_NOTOOLBAR
; 
 550 #endif // wxUSE_TOOLBAR 
 552         if (style 
& wxFULLSCREEN_NOMENUBAR
) 
 553             SetMenu((HWND
)GetHWND(), (HMENU
) NULL
); 
 556         wxStatusBar 
*theStatusBar 
= GetStatusBar(); 
 558         // Save the number of fields in the statusbar 
 559         if ((style 
& wxFULLSCREEN_NOSTATUSBAR
) && theStatusBar
) 
 561             if ( theStatusBar
->IsShown() ) 
 562                 theStatusBar
->Show(false); 
 564                 style 
&= ~wxFULLSCREEN_NOSTATUSBAR
; 
 566 #endif // wxUSE_STATUSBAR 
 568     else // restore to normal 
 570         // restore the toolbar, menubar, and statusbar if we had hid them 
 572         wxToolBar 
*theToolBar 
= GetToolBar(); 
 574         if ((m_fsStyle 
& wxFULLSCREEN_NOTOOLBAR
) && theToolBar
) 
 576             theToolBar
->Show(true); 
 578 #endif // wxUSE_TOOLBAR 
 581         if (m_fsStyle 
& wxFULLSCREEN_NOMENUBAR
) 
 583             const WXHMENU hmenu 
= MSWGetActiveMenu(); 
 585                 ::SetMenu(GetHwnd(), (HMENU
)hmenu
); 
 587 #endif // wxUSE_MENUS 
 590         wxStatusBar 
*theStatusBar 
= GetStatusBar(); 
 592         if ((m_fsStyle 
& wxFULLSCREEN_NOSTATUSBAR
) && theStatusBar
) 
 594             theStatusBar
->Show(true); 
 597 #endif // wxUSE_STATUSBAR 
 599 #endif // !defined(__WXMICROWIN__) && !defined(__WXWINCE__) 
 601     return wxFrameBase::ShowFullScreen(show
, style
); 
 604 // ---------------------------------------------------------------------------- 
 605 // tool/status bar stuff 
 606 // ---------------------------------------------------------------------------- 
 610 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
) 
 612 #if defined(WINCE_WITHOUT_COMMANDBAR) 
 613     // We may already have a toolbar from calling SetMenuBar. 
 617     if ( wxFrameBase::CreateToolBar(style
, id
, name
) ) 
 622     return m_frameToolBar
; 
 625 void wxFrame::PositionToolBar() 
 627     // TODO: we want to do something different in WinCE, because the toolbar 
 628     //       should be associated with the commandbar, instead of being 
 629     //       independent window. 
 630 #if !defined(WINCE_WITHOUT_COMMANDBAR) 
 631     wxToolBar 
*toolbar 
= GetToolBar(); 
 632     if ( toolbar 
&& toolbar
->IsShown() ) 
 634         // don't call our (or even wxTopLevelWindow) version because we want 
 635         // the real (full) client area size, not excluding the tool/status bar 
 637         wxWindow::DoGetClientSize(&width
, &height
); 
 640         wxStatusBar 
*statbar 
= GetStatusBar(); 
 641         if ( statbar 
&& statbar
->IsShown() ) 
 643             height 
-= statbar
->GetClientSize().y
; 
 645 #endif // wxUSE_STATUSBAR 
 648         toolbar
->GetPosition( &tx
, &ty 
); 
 649         toolbar
->GetSize( &tw
, &th 
); 
 652         if ( toolbar
->HasFlag(wxTB_BOTTOM
) ) 
 657         else if ( toolbar
->HasFlag(wxTB_RIGHT
) ) 
 668 #if defined(WINCE_WITH_COMMANDBAR) 
 669         // We're using a commandbar - so we have to allow for it. 
 670         if (GetMenuBar() && GetMenuBar()->GetCommandBar()) 
 673             ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
); 
 674             y 
= rect
.bottom 
- rect
.top
; 
 676 #endif // WINCE_WITH_COMMANDBAR 
 678         if ( toolbar
->HasFlag(wxTB_BOTTOM
) ) 
 680             if ( ty 
< 0 && ( -ty 
== th 
) ) 
 682             if ( tx 
< 0 && (-tx 
== tw 
) ) 
 685         else if ( toolbar
->HasFlag(wxTB_RIGHT
) ) 
 687             if( ty 
< 0 && ( -ty 
== th 
) ) 
 689             if( tx 
< 0 && ( -tx 
== tw 
) ) 
 694             if (ty 
< 0 && (-ty 
== th
)) 
 696             if (tx 
< 0 && (-tx 
== tw
)) 
 703         if ( toolbar
->IsVertical() ) 
 712         // use the 'real' MSW position here, don't offset relativly to the 
 713         // client area origin 
 715         // Optimise such that we don't have to always resize the toolbar 
 716         // when the frame changes, otherwise we'll get a lot of flicker. 
 717         bool heightChanging 
wxDUMMY_INITIALIZE(true); 
 718         bool widthChanging 
wxDUMMY_INITIALIZE(true); 
 720         if ( toolbar
->IsVertical() ) 
 722             // It's OK if the current height is greater than what can be shown. 
 723             heightChanging 
= (desiredH 
> th
) ; 
 724             widthChanging 
= (desiredW 
!= tw
) ; 
 726             // The next time around, we may not have to set the size 
 728                 desiredH 
= desiredH 
+ 200; 
 732             // It's OK if the current width is greater than what can be shown. 
 733             widthChanging 
= (desiredW 
> tw
) ; 
 734             heightChanging 
= (desiredH 
!= th
) ; 
 736             // The next time around, we may not have to set the size 
 738                 desiredW 
= desiredW 
+ 200; 
 741         if (tx 
!= 0 || ty 
!= 0 || widthChanging 
|| heightChanging
) 
 742             toolbar
->SetSize(x
, y
, desiredW
, desiredH
, wxSIZE_NO_ADJUSTMENTS
); 
 745 #endif // !WINCE_WITH_COMMANDBAR 
 748 #endif // wxUSE_TOOLBAR 
 750 // ---------------------------------------------------------------------------- 
 751 // frame state (iconized/maximized/...) 
 752 // ---------------------------------------------------------------------------- 
 754 // propagate our state change to all child frames: this allows us to emulate X 
 755 // Windows behaviour where child frames float independently of the parent one 
 756 // on the desktop, but are iconized/restored with it 
 757 void wxFrame::IconizeChildFrames(bool bIconize
) 
 759     m_iconized 
= bIconize
; 
 761     for ( wxWindowList::compatibility_iterator node 
= GetChildren().GetFirst(); 
 763           node 
= node
->GetNext() ) 
 765         wxWindow 
*win 
= node
->GetData(); 
 767         // iconizing the frames with this style under Win95 shell puts them at 
 768         // the bottom of the screen (as the MDI children) instead of making 
 769         // them appear in the taskbar because they are, by virtue of this 
 770         // style, not managed by the taskbar - instead leave Windows take care 
 772         if ( win
->GetWindowStyle() & wxFRAME_TOOL_WINDOW 
) 
 775         // the child MDI frames are a special case and should not be touched by 
 776         // the parent frame - instead, they are managed by the user 
 777         wxFrame 
*frame 
= wxDynamicCast(win
, wxFrame
); 
 779 #if wxUSE_MDI_ARCHITECTURE 
 780                 && !frame
->IsMDIChild() 
 781 #endif // wxUSE_MDI_ARCHITECTURE 
 784             // we don't want to restore the child frames which had been 
 785             // iconized even before we were iconized, so save the child frame 
 786             // status when iconizing the parent frame and check it when 
 790                 frame
->m_wasMinimized 
= frame
->IsIconized(); 
 793             // note that we shouldn't touch the hidden frames neither because 
 794             // iconizing/restoring them would show them as a side effect 
 795             if ( !frame
->m_wasMinimized 
&& frame
->IsShown() ) 
 796                 frame
->Iconize(bIconize
); 
 801 WXHICON 
wxFrame::GetDefaultIcon() const 
 803     // we don't have any standard icons (any more) 
 807 // =========================================================================== 
 808 // message processing 
 809 // =========================================================================== 
 811 // --------------------------------------------------------------------------- 
 813 // --------------------------------------------------------------------------- 
 815 bool wxFrame::MSWDoTranslateMessage(wxFrame 
*frame
, WXMSG 
*pMsg
) 
 817     if ( wxWindow::MSWTranslateMessage(pMsg
) ) 
 820 #if wxUSE_MENUS && wxUSE_ACCEL && !defined(__WXUNIVERSAL__) 
 821     // try the menu bar accelerators 
 822     wxMenuBar 
*menuBar 
= GetMenuBar(); 
 823     if ( menuBar 
&& menuBar
->GetAcceleratorTable()->Translate(frame
, pMsg
) ) 
 825 #endif // wxUSE_MENUS && wxUSE_ACCEL 
 830 // --------------------------------------------------------------------------- 
 831 // our private (non virtual) message handlers 
 832 // --------------------------------------------------------------------------- 
 834 bool wxFrame::HandleSize(int WXUNUSED(x
), int WXUNUSED(y
), WXUINT id
) 
 836 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) 
 841             // only do it it if we were iconized before, otherwise resizing the 
 842             // parent frame has a curious side effect of bringing it under it's 
 847             // restore all child frames too 
 848             IconizeChildFrames(false); 
 850             (void)SendIconizeEvent(false); 
 854             // iconize all child frames too 
 855             IconizeChildFrames(true); 
 860 #endif // !__WXWINCE__ 
 866 #endif // wxUSE_STATUSBAR 
 870 #endif // wxUSE_TOOLBAR 
 872 #if defined(WINCE_WITH_COMMANDBAR) 
 873         // Position the menu command bar 
 874         if (GetMenuBar() && GetMenuBar()->GetCommandBar()) 
 877             ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
); 
 878             wxSize clientSz 
= GetClientSize(); 
 880             if ( !::MoveWindow((HWND
) GetMenuBar()->GetCommandBar(), 0, 0, clientSz
.x
, rect
.bottom 
- rect
.top
, true ) ) 
 882                 wxLogLastError(wxT("MoveWindow")); 
 886 #endif // WINCE_WITH_COMMANDBAR 
 889     // call the base class version to generate the appropriate events 
 893 bool wxFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
) 
 896     // we only need to handle the menu and accelerator commands from the items 
 897     // of our menu bar, base wxWindow class already handles the rest 
 898     if ( !control 
&& (cmd 
== 0 /* menu */ || cmd 
== 1 /* accel */) ) 
 900 #if wxUSE_MENUS_NATIVE 
 901         if ( !wxCurrentPopupMenu 
) 
 902 #endif // wxUSE_MENUS_NATIVE 
 904             wxMenuItem 
* const mitem 
= FindItemInMenuBar((signed short)id
); 
 906                 return ProcessCommand(mitem
); 
 909 #endif // wxUSE_MENUS 
 911     return wxFrameBase::HandleCommand(id
, cmd
, control
);; 
 917 wxFrame::HandleMenuSelect(WXWORD nItem
, WXWORD flags
, WXHMENU 
WXUNUSED(hMenu
)) 
 919     // WM_MENUSELECT is generated for both normal items and menus, including 
 920     // the top level menus of the menu bar, which can't be represented using 
 921     // any valid identifier in wxMenuEvent so use -1 for them 
 922     // the menu highlight events for n 
 923     const int item 
= flags 
& (MF_POPUP 
| MF_SEPARATOR
) ? -1 : nItem
; 
 925     wxMenuEvent 
event(wxEVT_MENU_HIGHLIGHT
, item
); 
 926     event
.SetEventObject(this); 
 928     if ( HandleWindowEvent(event
) ) 
 931     // by default, i.e. if the event wasn't handled above, clear the status bar 
 932     // text when an item which can't have any associated help string in wx API 
 935         DoGiveHelp(wxEmptyString
, true); 
 940 bool wxFrame::HandleMenuLoop(const wxEventType
& evtType
, WXWORD isPopup
) 
 942     // we don't have the menu id here, so we use the id to specify if the event 
 943     // was from a popup menu or a normal one 
 944     wxMenuEvent 
event(evtType
, isPopup 
? -1 : 0); 
 945     event
.SetEventObject(this); 
 947     return HandleWindowEvent(event
); 
 950 bool wxFrame::HandleInitMenuPopup(WXHMENU hMenu
) 
 955         int nCount 
= GetMenuBar()->GetMenuCount(); 
 956         for (int n 
= 0; n 
< nCount
; n
++) 
 958             if (GetMenuBar()->GetMenu(n
)->GetHMenu() == hMenu
) 
 960                 menu 
= GetMenuBar()->GetMenu(n
); 
 966     wxMenuEvent 
event(wxEVT_MENU_OPEN
, 0, menu
); 
 967     event
.SetEventObject(this); 
 969     return HandleWindowEvent(event
); 
 972 #endif // wxUSE_MENUS 
 974 // --------------------------------------------------------------------------- 
 975 // the window proc for wxFrame 
 976 // --------------------------------------------------------------------------- 
 978 WXLRESULT 
wxFrame::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
) 
 981     bool processed 
= false; 
 986             // if we can't close, tell the system that we processed the 
 987             // message - otherwise it would close us 
 988             processed 
= !Close(); 
 992             processed 
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
); 
 999                 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
, 
1002                 HandleCommand(id
, cmd
, (WXHWND
)hwnd
); 
1004                 // don't pass WM_COMMAND to the base class whether we processed 
1005                 // it or not because we did generate an event for it (our 
1006                 // HandleCommand() calls the base class version) and we must 
1007                 // not do it again or the handlers which skip the event would 
1013 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) 
1015         case WM_INITMENUPOPUP
: 
1016             processed 
= HandleInitMenuPopup((WXHMENU
) wParam
); 
1023                 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
); 
1025                 processed 
= HandleMenuSelect(item
, flags
, hmenu
); 
1029         case WM_EXITMENULOOP
: 
1030             processed 
= HandleMenuLoop(wxEVT_MENU_CLOSE
, (WXWORD
)wParam
); 
1032 #endif // wxUSE_MENUS 
1034         case WM_QUERYDRAGICON
: 
1036                 const wxIcon
& icon 
= GetIcon(); 
1037                 HICON hIcon 
= icon
.Ok() ? GetHiconOf(icon
) 
1038                                         : (HICON
)GetDefaultIcon(); 
1039                 rc 
= (WXLRESULT
)hIcon
; 
1040                 processed 
= rc 
!= 0; 
1043 #endif // !__WXMICROWIN__ 
1047         rc 
= wxFrameBase::MSWWindowProc(message
, wParam
, lParam
); 
1052 // ---------------------------------------------------------------------------- 
1053 // wxFrame size management: we exclude the areas taken by menu/status/toolbars 
1054 // from the client area, so the client area is what's really available for the 
1056 // ---------------------------------------------------------------------------- 
1058 // get the origin of the client area in the client coordinates 
1059 wxPoint 
wxFrame::GetClientAreaOrigin() const 
1061     wxPoint pt 
= wxTopLevelWindow::GetClientAreaOrigin(); 
1063 #if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) && \ 
1064   (!defined(__WXWINCE__) || (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__))) 
1065     wxToolBar 
* const toolbar 
= GetToolBar(); 
1066     if ( toolbar 
&& toolbar
->IsShown() ) 
1068         const wxSize sizeTB 
= toolbar
->GetSize(); 
1070         if ( toolbar
->HasFlag(wxTB_TOP
) ) 
1074         else if ( toolbar
->HasFlag(wxTB_LEFT
) ) 
1079 #endif // wxUSE_TOOLBAR 
1081 #if defined(WINCE_WITH_COMMANDBAR) 
1082     if (GetMenuBar() && GetMenuBar()->GetCommandBar()) 
1085         ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
); 
1086         pt
.y 
+= (rect
.bottom 
- rect
.top
);