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__
212 m_isBeingDeleted
= true;
216 // ----------------------------------------------------------------------------
217 // wxFrame client size calculations
218 // ----------------------------------------------------------------------------
220 void wxFrame::DoSetClientSize(int width
, int height
)
222 // leave enough space for the status bar if we have (and show) it
224 wxStatusBar
*statbar
= GetStatusBar();
225 if ( statbar
&& statbar
->IsShown() )
227 height
+= statbar
->GetSize().y
;
229 #endif // wxUSE_STATUSBAR
231 // call GetClientAreaOrigin() to take the toolbar into account
232 wxPoint pt
= GetClientAreaOrigin();
236 wxTopLevelWindow::DoSetClientSize(width
, height
);
239 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
240 void wxFrame::DoGetClientSize(int *x
, int *y
) const
242 wxTopLevelWindow::DoGetClientSize(x
, y
);
244 // account for the possible toolbar
245 wxPoint pt
= GetClientAreaOrigin();
253 // adjust client area height to take the status bar into account
256 wxStatusBar
*statbar
= GetStatusBar();
257 if ( statbar
&& statbar
->IsShown() )
259 *y
-= statbar
->GetClientSize().y
;
262 #endif // wxUSE_STATUSBAR
265 // ----------------------------------------------------------------------------
266 // wxFrame: various geometry-related functions
267 // ----------------------------------------------------------------------------
269 void wxFrame::Raise()
271 ::SetForegroundWindow(GetHwnd());
274 // generate an artificial resize event
275 void wxFrame::SendSizeEvent()
279 RECT r
= wxGetWindowRect(GetHwnd());
281 (void)::PostMessage(GetHwnd(), WM_SIZE
,
282 IsMaximized() ? SIZE_MAXIMIZED
: SIZE_RESTORED
,
283 MAKELPARAM(r
.right
- r
.left
, r
.bottom
- r
.top
));
288 wxStatusBar
*wxFrame::OnCreateStatusBar(int number
,
291 const wxString
& name
)
293 wxStatusBar
*statusBar
wxDUMMY_INITIALIZE(NULL
);
295 #if wxUSE_NATIVE_STATUSBAR
296 if ( !UsesNativeStatusBar() )
298 statusBar
= (wxStatusBar
*)new wxStatusBarGeneric(this, id
, style
);
303 statusBar
= new wxStatusBar(this, id
, style
, name
);
306 statusBar
->SetFieldsCount(number
);
311 void wxFrame::PositionStatusBar()
313 if ( !m_frameStatusBar
|| !m_frameStatusBar
->IsShown() )
317 GetClientSize(&w
, &h
);
319 m_frameStatusBar
->GetSize(&sw
, &sh
);
321 // Since we wish the status bar to be directly under the client area,
322 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
323 m_frameStatusBar
->SetSize(0, h
, w
, sh
);
325 #endif // wxUSE_STATUSBAR
327 #if wxUSE_MENUS_NATIVE
329 void wxFrame::AttachMenuBar(wxMenuBar
*menubar
)
331 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
333 wxMenu
*autoMenu
= NULL
;
335 if( menubar
->GetMenuCount() == 1 )
337 autoMenu
= wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(menubar
->GetMenu(0));
338 SetRightMenu(wxID_ANY
, menubar
->GetLabelTop(0), autoMenu
);
342 autoMenu
= new wxMenu
;
344 for( size_t n
= 0; n
< menubar
->GetMenuCount(); n
++ )
346 wxMenu
*item
= menubar
->GetMenu(n
);
347 wxString label
= menubar
->GetLabelTop(n
);
348 wxMenu
*new_item
= wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(item
);
349 autoMenu
->Append(wxID_ANY
, label
, new_item
);
352 SetRightMenu(wxID_ANY
, _("Menu"), autoMenu
);
355 #elif defined(WINCE_WITHOUT_COMMANDBAR)
358 wxToolMenuBar
* toolBar
= new wxToolMenuBar(this, wxID_ANY
,
359 wxDefaultPosition
, wxDefaultSize
,
360 wxBORDER_NONE
| wxTB_HORIZONTAL
,
361 wxToolBarNameStr
, menubar
);
363 menubar
->SetToolBar(toolBar
);
365 // Now adjust size for menu bar
368 //When the main window is created using CW_USEDEFAULT the height of the
369 // is created is not taken into account). So we resize the window after
370 // if a menubar is present
373 ::GetWindowRect((HWND
) GetHWND(), &rc
);
374 // adjust for menu / titlebar height
375 rc
.bottom
-= (2*menuHeight
-1);
377 ::MoveWindow((HWND
) GetHWND(), rc
.left
, rc
.top
, rc
.right
, rc
.bottom
, FALSE
);
381 wxFrameBase::AttachMenuBar(menubar
);
385 // actually remove the menu from the frame
386 m_hMenu
= (WXHMENU
)0;
387 InternalSetMenuBar();
389 else // set new non NULL menu bar
391 #if !defined(__WXWINCE__) || defined(WINCE_WITH_COMMANDBAR)
392 // Can set a menubar several times.
393 if ( menubar
->GetHMenu() )
395 m_hMenu
= menubar
->GetHMenu();
399 m_hMenu
= menubar
->Create();
403 wxFAIL_MSG( _T("failed to create menu bar") );
408 InternalSetMenuBar();
412 void wxFrame::InternalSetMenuBar()
414 #if defined(__WXMICROWIN__) || defined(__WXWINCE__)
417 if ( !::SetMenu(GetHwnd(), (HMENU
)m_hMenu
) )
419 wxLogLastError(wxT("SetMenu"));
424 #endif // wxUSE_MENUS_NATIVE
426 // Responds to colour changes, and passes event on to children.
427 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
429 SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
));
433 if ( m_frameStatusBar
)
435 wxSysColourChangedEvent event2
;
436 event2
.SetEventObject( m_frameStatusBar
);
437 m_frameStatusBar
->GetEventHandler()->ProcessEvent(event2
);
439 #endif // wxUSE_STATUSBAR
441 // Propagate the event to the non-top-level children
442 wxWindow::OnSysColourChanged(event
);
445 // Pass true to show full screen, false to restore.
446 bool wxFrame::ShowFullScreen(bool show
, long style
)
448 // TODO-CE: add support for CE
449 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
450 if ( IsFullScreen() == show
)
455 // zap the toolbar, menubar, and statusbar if needed
457 // TODO: hide commandbar for WINCE_WITH_COMMANDBAR
459 wxToolBar
*theToolBar
= GetToolBar();
461 if ((style
& wxFULLSCREEN_NOTOOLBAR
) && theToolBar
)
463 if ( theToolBar
->IsShown() )
465 theToolBar
->SetSize(wxDefaultCoord
,0);
466 theToolBar
->Show(false);
468 else // prevent it from being restored later
470 style
&= ~wxFULLSCREEN_NOTOOLBAR
;
473 #endif // wxUSE_TOOLBAR
475 if (style
& wxFULLSCREEN_NOMENUBAR
)
476 SetMenu((HWND
)GetHWND(), (HMENU
) NULL
);
479 wxStatusBar
*theStatusBar
= GetStatusBar();
481 // Save the number of fields in the statusbar
482 if ((style
& wxFULLSCREEN_NOSTATUSBAR
) && theStatusBar
)
484 if ( theStatusBar
->IsShown() )
485 theStatusBar
->Show(false);
487 style
&= ~wxFULLSCREEN_NOSTATUSBAR
;
489 #endif // wxUSE_STATUSBAR
491 else // restore to normal
493 // restore the toolbar, menubar, and statusbar if we had hid them
495 wxToolBar
*theToolBar
= GetToolBar();
497 if ((m_fsStyle
& wxFULLSCREEN_NOTOOLBAR
) && theToolBar
)
499 theToolBar
->Show(true);
501 #endif // wxUSE_TOOLBAR
503 if (m_fsStyle
& wxFULLSCREEN_NOMENUBAR
)
505 WXHMENU menu
= m_hMenu
;
507 #if wxUSE_MDI_ARCHITECTURE
508 wxMDIParentFrame
*frame
= wxDynamicCast(this, wxMDIParentFrame
);
511 wxMDIChildFrame
*child
= frame
->GetActiveChild();
514 menu
= child
->GetWinMenu();
517 #endif // wxUSE_MDI_ARCHITECTURE
521 ::SetMenu(GetHwnd(), (HMENU
)menu
);
526 wxStatusBar
*theStatusBar
= GetStatusBar();
528 if ((m_fsStyle
& wxFULLSCREEN_NOSTATUSBAR
) && theStatusBar
)
530 theStatusBar
->Show(true);
533 #endif // wxUSE_STATUSBAR
535 #endif // !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
537 return wxFrameBase::ShowFullScreen(show
, style
);
540 // ----------------------------------------------------------------------------
541 // tool/status bar stuff
542 // ----------------------------------------------------------------------------
546 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
548 #if defined(WINCE_WITHOUT_COMMANDBAR)
549 // We may already have a toolbar from calling SetMenuBar.
553 if ( wxFrameBase::CreateToolBar(style
, id
, name
) )
558 return m_frameToolBar
;
561 void wxFrame::PositionToolBar()
563 wxToolBar
*toolbar
= GetToolBar();
564 if ( toolbar
&& toolbar
->IsShown() )
566 #if defined(WINCE_WITHOUT_COMMANDBAR)
567 // We want to do something different in WinCE, because
568 // the toolbar should be associated with the commandbar,
569 // and not an independent window.
572 // don't call our (or even wxTopLevelWindow) version because we want
573 // the real (full) client area size, not excluding the tool/status bar
575 wxWindow::DoGetClientSize(&width
, &height
);
578 wxStatusBar
*statbar
= GetStatusBar();
579 if ( statbar
&& statbar
->IsShown() )
581 height
-= statbar
->GetClientSize().y
;
583 #endif // wxUSE_STATUSBAR
587 #if defined(WINCE_WITH_COMMANDBAR)
588 // We're using a commandbar - so we have to allow for it.
589 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
592 ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
);
593 y
= rect
.bottom
- rect
.top
;
599 toolbar
->GetPosition(&tx
, &ty
);
600 toolbar
->GetSize(&tw
, &th
);
603 if (ty
< 0 && (-ty
== th
))
605 if (tx
< 0 && (-tx
== tw
))
611 if ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
)
618 // if ( toolbar->GetWindowStyleFlag() & wxTB_FLAT )
622 // use the 'real' MSW position here, don't offset relativly to the
623 // client area origin
625 // Optimise such that we don't have to always resize the toolbar
626 // when the frame changes, otherwise we'll get a lot of flicker.
627 bool heightChanging
wxDUMMY_INITIALIZE(true);
628 bool widthChanging
wxDUMMY_INITIALIZE(true);
630 if ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
)
632 // It's OK if the current height is greater than what can be shown.
633 heightChanging
= (desiredH
> th
) ;
634 widthChanging
= (desiredW
!= tw
) ;
636 // The next time around, we may not have to set the size
638 desiredH
= desiredH
+ 200;
642 // It's OK if the current width is greater than what can be shown.
643 widthChanging
= (desiredW
> tw
) ;
644 heightChanging
= (desiredH
!= th
) ;
646 // The next time around, we may not have to set the size
648 desiredW
= desiredW
+ 200;
651 if (tx
!= 0 || ty
!= 0 || widthChanging
|| heightChanging
)
652 toolbar
->SetSize(x
, y
, desiredW
, desiredH
, wxSIZE_NO_ADJUSTMENTS
);
654 #endif // __WXWINCE__
658 #endif // wxUSE_TOOLBAR
660 // ----------------------------------------------------------------------------
661 // frame state (iconized/maximized/...)
662 // ----------------------------------------------------------------------------
664 // propagate our state change to all child frames: this allows us to emulate X
665 // Windows behaviour where child frames float independently of the parent one
666 // on the desktop, but are iconized/restored with it
667 void wxFrame::IconizeChildFrames(bool bIconize
)
669 m_iconized
= bIconize
;
671 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
673 node
= node
->GetNext() )
675 wxWindow
*win
= node
->GetData();
677 // iconizing the frames with this style under Win95 shell puts them at
678 // the bottom of the screen (as the MDI children) instead of making
679 // them appear in the taskbar because they are, by virtue of this
680 // style, not managed by the taskbar - instead leave Windows take care
682 if ( win
->GetWindowStyle() & wxFRAME_TOOL_WINDOW
)
685 // the child MDI frames are a special case and should not be touched by
686 // the parent frame - instead, they are managed by the user
687 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
689 #if wxUSE_MDI_ARCHITECTURE
690 && !frame
->IsMDIChild()
691 #endif // wxUSE_MDI_ARCHITECTURE
694 // we don't want to restore the child frames which had been
695 // iconized even before we were iconized, so save the child frame
696 // status when iconizing the parent frame and check it when
700 frame
->m_wasMinimized
= frame
->IsIconized();
703 // note that we shouldn't touch the hidden frames neither because
704 // iconizing/restoring them would show them as a side effect
705 if ( !frame
->m_wasMinimized
&& frame
->IsShown() )
706 frame
->Iconize(bIconize
);
711 WXHICON
wxFrame::GetDefaultIcon() const
713 // we don't have any standard icons (any more)
717 // ===========================================================================
718 // message processing
719 // ===========================================================================
721 // ---------------------------------------------------------------------------
723 // ---------------------------------------------------------------------------
725 bool wxFrame::MSWDoTranslateMessage(wxFrame
*frame
, WXMSG
*pMsg
)
727 if ( wxWindow::MSWTranslateMessage(pMsg
) )
730 #if wxUSE_MENUS && wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
731 // try the menu bar accels
732 wxMenuBar
*menuBar
= GetMenuBar();
735 const wxAcceleratorTable
& acceleratorTable
= menuBar
->GetAccelTable();
736 return acceleratorTable
.Translate(frame
, pMsg
);
738 #endif // wxUSE_MENUS && wxUSE_ACCEL
743 // ---------------------------------------------------------------------------
744 // our private (non virtual) message handlers
745 // ---------------------------------------------------------------------------
747 bool wxFrame::HandlePaint()
750 if ( ::GetUpdateRect(GetHwnd(), &rect
, FALSE
) )
752 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
755 const wxIcon
& icon
= GetIcon();
756 HICON hIcon
= icon
.Ok() ? GetHiconOf(icon
)
757 : (HICON
)GetDefaultIcon();
759 // Hold a pointer to the dc so long as the OnPaint() message
760 // is being processed
762 HDC hdc
= ::BeginPaint(GetHwnd(), &ps
);
764 // Erase background before painting or we get white background
765 MSWDefWindowProc(WM_ICONERASEBKGND
, (WORD
)(LONG
)ps
.hdc
, 0L);
770 ::GetClientRect(GetHwnd(), &rect
);
772 // FIXME: why hardcoded?
773 static const int icon_width
= 32;
774 static const int icon_height
= 32;
776 int icon_x
= (int)((rect
.right
- icon_width
)/2);
777 int icon_y
= (int)((rect
.bottom
- icon_height
)/2);
779 ::DrawIcon(hdc
, icon_x
, icon_y
, hIcon
);
782 ::EndPaint(GetHwnd(), &ps
);
789 return wxWindow::HandlePaint();
794 // nothing to paint - processed
799 bool wxFrame::HandleSize(int WXUNUSED(x
), int WXUNUSED(y
), WXUINT id
)
801 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
806 // only do it it if we were iconized before, otherwise resizing the
807 // parent frame has a curious side effect of bringing it under it's
812 // restore all child frames too
813 IconizeChildFrames(false);
815 (void)SendIconizeEvent(false);
819 // iconize all child frames too
820 IconizeChildFrames(true);
825 #endif // !__WXWINCE__
831 #endif // wxUSE_STATUSBAR
835 #endif // wxUSE_TOOLBAR
837 #if defined(WINCE_WITH_COMMANDBAR)
838 // Position the menu command bar
839 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
842 ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
);
843 wxSize clientSz
= GetClientSize();
845 if ( !::MoveWindow((HWND
) GetMenuBar()->GetCommandBar(), 0, 0, clientSz
.x
, rect
.bottom
- rect
.top
, true ) )
847 wxLogLastError(wxT("MoveWindow"));
851 #endif // WINCE_WITH_COMMANDBAR
854 // call the base class version to generate the appropriate events
858 bool wxFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
862 // In case it's e.g. a toolbar.
863 wxWindow
*win
= wxFindWinFromHandle(control
);
865 return win
->MSWCommand(cmd
, id
);
868 // handle here commands from menus and accelerators
869 if ( cmd
== 0 || cmd
== 1 )
871 #if wxUSE_MENUS_NATIVE
872 if ( wxCurrentPopupMenu
)
874 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
875 wxCurrentPopupMenu
= NULL
;
877 return popupMenu
->MSWCommand(cmd
, id
);
879 #endif // wxUSE_MENUS_NATIVE
881 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
882 // handle here commands from Smartphone menu bar
883 if ( wxTopLevelWindow::HandleCommand(id
, cmd
, control
) )
887 #endif // __SMARTPHONE__ && __WXWINCE__
889 if ( ProcessCommand(id
) )
898 bool wxFrame::HandleMenuSelect(WXWORD nItem
, WXWORD flags
, WXHMENU hMenu
)
901 if ( flags
== 0xFFFF && hMenu
== 0 )
903 // menu was removed from screen
906 #ifndef __WXMICROWIN__
907 else if ( !(flags
& MF_POPUP
) && !(flags
& MF_SEPARATOR
) )
914 // don't give hints for separators (doesn't make sense) nor for the
915 // items opening popup menus (they don't have them anyhow) but do clear
916 // the status line - otherwise, we would be left with the help message
917 // for the previous item which doesn't apply any more
918 DoGiveHelp(wxEmptyString
, false);
923 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, item
);
924 event
.SetEventObject(this);
926 return GetEventHandler()->ProcessEvent(event
);
929 bool wxFrame::HandleMenuLoop(const wxEventType
& evtType
, WXWORD isPopup
)
931 // we don't have the menu id here, so we use the id to specify if the event
932 // was from a popup menu or a normal one
933 wxMenuEvent
event(evtType
, isPopup
? -1 : 0);
934 event
.SetEventObject(this);
936 return GetEventHandler()->ProcessEvent(event
);
939 // ---------------------------------------------------------------------------
940 // the window proc for wxFrame
941 // ---------------------------------------------------------------------------
943 WXLRESULT
wxFrame::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
946 bool processed
= false;
951 // if we can't close, tell the system that we processed the
952 // message - otherwise it would close us
953 processed
= !Close();
957 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
964 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
967 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
972 processed
= HandlePaint();
975 case WM_INITMENUPOPUP
:
976 processed
= HandleInitMenuPopup((WXHMENU
) wParam
);
979 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
984 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
986 processed
= HandleMenuSelect(item
, flags
, hmenu
);
990 case WM_EXITMENULOOP
:
991 processed
= HandleMenuLoop(wxEVT_MENU_CLOSE
, (WXWORD
)wParam
);
994 case WM_QUERYDRAGICON
:
996 const wxIcon
& icon
= GetIcon();
997 HICON hIcon
= icon
.Ok() ? GetHiconOf(icon
)
998 : (HICON
)GetDefaultIcon();
1000 processed
= rc
!= 0;
1003 #endif // !__WXMICROWIN__
1007 rc
= wxFrameBase::MSWWindowProc(message
, wParam
, lParam
);
1012 // handle WM_INITMENUPOPUP message
1013 bool wxFrame::HandleInitMenuPopup(WXHMENU hMenu
)
1015 wxMenu
* menu
= NULL
;
1018 int nCount
= GetMenuBar()->GetMenuCount();
1019 for (int n
= 0; n
< nCount
; n
++)
1021 if (GetMenuBar()->GetMenu(n
)->GetHMenu() == hMenu
)
1023 menu
= GetMenuBar()->GetMenu(n
);
1029 wxMenuEvent
event(wxEVT_MENU_OPEN
, 0, menu
);
1030 event
.SetEventObject(this);
1032 return GetEventHandler()->ProcessEvent(event
);
1035 // ----------------------------------------------------------------------------
1036 // wxFrame size management: we exclude the areas taken by menu/status/toolbars
1037 // from the client area, so the client area is what's really available for the
1039 // ----------------------------------------------------------------------------
1041 // get the origin of the client area in the client coordinates
1042 wxPoint
wxFrame::GetClientAreaOrigin() const
1044 wxPoint pt
= wxTopLevelWindow::GetClientAreaOrigin();
1046 #if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) && \
1047 (!defined(__WXWINCE__) || (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__)))
1048 wxToolBar
*toolbar
= GetToolBar();
1049 if ( toolbar
&& toolbar
->IsShown() )
1052 toolbar
->GetSize(&w
, &h
);
1054 if ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
)
1063 #endif // wxUSE_TOOLBAR
1065 #if defined(WINCE_WITH_COMMANDBAR)
1066 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
1069 ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
);
1070 pt
.y
+= (rect
.bottom
- rect
.top
);