1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "frame.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
36 #include "wx/dialog.h"
37 #include "wx/settings.h"
38 #include "wx/dcclient.h"
43 #include "wx/msw/private.h"
50 #include "wx/statusbr.h"
51 #include "wx/generic/statusbr.h"
52 #endif // wxUSE_STATUSBAR
55 #include "wx/toolbar.h"
56 #endif // wxUSE_TOOLBAR
58 #include "wx/menuitem.h"
61 #ifdef __WXUNIVERSAL__
62 #include "wx/univ/theme.h"
63 #include "wx/univ/colschem.h"
64 #endif // __WXUNIVERSAL__
66 // ----------------------------------------------------------------------------
68 // ----------------------------------------------------------------------------
70 #if wxUSE_MENUS_NATIVE
71 extern wxMenu
*wxCurrentPopupMenu
;
72 #endif // wxUSE_MENUS_NATIVE
74 // ----------------------------------------------------------------------------
76 // ----------------------------------------------------------------------------
78 BEGIN_EVENT_TABLE(wxFrame
, wxFrameBase
)
79 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged
)
82 #if wxUSE_EXTENDED_RTTI
83 WX_DEFINE_FLAGS( wxFrameStyle
)
85 wxBEGIN_FLAGS( wxFrameStyle
)
86 // new style border flags, we put them first to
87 // use them for streaming out
88 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
89 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
90 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
91 wxFLAGS_MEMBER(wxBORDER_RAISED
)
92 wxFLAGS_MEMBER(wxBORDER_STATIC
)
93 wxFLAGS_MEMBER(wxBORDER_NONE
)
95 // old style border flags
96 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
97 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
98 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
99 wxFLAGS_MEMBER(wxRAISED_BORDER
)
100 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
101 wxFLAGS_MEMBER(wxBORDER
)
103 // standard window styles
104 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
105 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
106 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
107 wxFLAGS_MEMBER(wxWANTS_CHARS
)
108 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
109 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
110 wxFLAGS_MEMBER(wxVSCROLL
)
111 wxFLAGS_MEMBER(wxHSCROLL
)
114 wxFLAGS_MEMBER(wxSTAY_ON_TOP
)
115 wxFLAGS_MEMBER(wxCAPTION
)
116 wxFLAGS_MEMBER(wxTHICK_FRAME
)
117 wxFLAGS_MEMBER(wxSYSTEM_MENU
)
118 wxFLAGS_MEMBER(wxRESIZE_BORDER
)
119 wxFLAGS_MEMBER(wxRESIZE_BOX
)
120 wxFLAGS_MEMBER(wxCLOSE_BOX
)
121 wxFLAGS_MEMBER(wxMAXIMIZE_BOX
)
122 wxFLAGS_MEMBER(wxMINIMIZE_BOX
)
124 wxFLAGS_MEMBER(wxFRAME_TOOL_WINDOW
)
125 wxFLAGS_MEMBER(wxFRAME_FLOAT_ON_PARENT
)
127 wxFLAGS_MEMBER(wxFRAME_SHAPED
)
129 wxEND_FLAGS( wxFrameStyle
)
131 IMPLEMENT_DYNAMIC_CLASS_XTI(wxFrame
, wxTopLevelWindow
,"wx/frame.h")
133 wxBEGIN_PROPERTIES_TABLE(wxFrame
)
134 wxEVENT_PROPERTY( Menu
, wxEVT_COMMAND_MENU_SELECTED
, wxCommandEvent
)
136 wxPROPERTY( Title
,wxString
, SetTitle
, GetTitle
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
137 wxPROPERTY_FLAGS( WindowStyle
, wxFrameStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
138 wxPROPERTY( MenuBar
, wxMenuBar
* , SetMenuBar
, GetMenuBar
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
139 wxEND_PROPERTIES_TABLE()
141 wxBEGIN_HANDLERS_TABLE(wxFrame
)
142 wxEND_HANDLERS_TABLE()
144 wxCONSTRUCTOR_6( wxFrame
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Title
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
147 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxTopLevelWindow
)
150 // ============================================================================
152 // ============================================================================
154 // ----------------------------------------------------------------------------
155 // static class members
156 // ----------------------------------------------------------------------------
159 #if wxUSE_NATIVE_STATUSBAR
160 bool wxFrame::m_useNativeStatusBar
= TRUE
;
162 bool wxFrame::m_useNativeStatusBar
= FALSE
;
164 #endif // wxUSE_NATIVE_STATUSBAR
166 // ----------------------------------------------------------------------------
167 // creation/destruction
168 // ----------------------------------------------------------------------------
176 // Data to save/restore when calling ShowFullScreen
177 m_fsStatusBarFields
= 0;
178 m_fsStatusBarHeight
= 0;
179 m_fsToolBarHeight
= 0;
181 m_wasMinimized
= FALSE
;
184 bool wxFrame::Create(wxWindow
*parent
,
186 const wxString
& title
,
190 const wxString
& name
)
192 if ( !wxTopLevelWindow::Create(parent
, id
, title
, pos
, size
, style
, name
) )
195 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
));
202 m_isBeingDeleted
= TRUE
;
206 // ----------------------------------------------------------------------------
207 // wxFrame client size calculations
208 // ----------------------------------------------------------------------------
210 void wxFrame::DoSetClientSize(int width
, int height
)
212 // leave enough space for the status bar if we have (and show) it
214 wxStatusBar
*statbar
= GetStatusBar();
215 if ( statbar
&& statbar
->IsShown() )
217 height
+= statbar
->GetSize().y
;
219 #endif // wxUSE_STATUSBAR
221 // call GetClientAreaOrigin() to take the toolbar into account
222 wxPoint pt
= GetClientAreaOrigin();
226 wxTopLevelWindow::DoSetClientSize(width
, height
);
229 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
230 void wxFrame::DoGetClientSize(int *x
, int *y
) const
232 wxTopLevelWindow::DoGetClientSize(x
, y
);
234 // account for the possible toolbar
235 wxPoint pt
= GetClientAreaOrigin();
243 // adjust client area height to take the status bar into account
246 wxStatusBar
*statbar
= GetStatusBar();
247 if ( statbar
&& statbar
->IsShown() )
249 *y
-= statbar
->GetClientSize().y
;
252 #endif // wxUSE_STATUSBAR
255 // ----------------------------------------------------------------------------
256 // wxFrame: various geometry-related functions
257 // ----------------------------------------------------------------------------
259 void wxFrame::Raise()
261 ::SetForegroundWindow(GetHwnd());
264 // generate an artificial resize event
265 void wxFrame::SendSizeEvent()
269 RECT r
= wxGetWindowRect(GetHwnd());
271 (void)::PostMessage(GetHwnd(), WM_SIZE
,
272 IsMaximized() ? SIZE_MAXIMIZED
: SIZE_RESTORED
,
273 MAKELPARAM(r
.right
- r
.left
, r
.bottom
- r
.top
));
278 wxStatusBar
*wxFrame::OnCreateStatusBar(int number
,
281 const wxString
& name
)
283 wxStatusBar
*statusBar
= NULL
;
285 #if wxUSE_NATIVE_STATUSBAR
286 if ( !UsesNativeStatusBar() )
288 statusBar
= (wxStatusBar
*)new wxStatusBarGeneric(this, id
, style
);
293 statusBar
= new wxStatusBar(this, id
, style
, name
);
296 statusBar
->SetFieldsCount(number
);
301 void wxFrame::PositionStatusBar()
303 if ( !m_frameStatusBar
|| !m_frameStatusBar
->IsShown() )
307 GetClientSize(&w
, &h
);
309 m_frameStatusBar
->GetSize(&sw
, &sh
);
311 // Since we wish the status bar to be directly under the client area,
312 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
313 m_frameStatusBar
->SetSize(0, h
, w
, sh
);
315 #endif // wxUSE_STATUSBAR
317 #if wxUSE_MENUS_NATIVE
319 void wxFrame::AttachMenuBar(wxMenuBar
*menubar
)
321 #if defined(__SMARTPHONE__)
322 wxMenu
*autoMenu
= new wxMenu
;
324 for( size_t n
= 0; n
< menubar
->GetMenuCount(); n
++ )
326 wxMenu
*item
= menubar
->GetMenu(n
);
327 wxString label
= menubar
->GetLabelTop(n
);
328 wxMenu
*new_item
= wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(item
);
329 autoMenu
->Append(wxID_ANY
, label
, new_item
);
332 SetRightMenu(wxID_ANY
, _("Menu"), autoMenu
);
333 #elif defined(WINCE_WITHOUT_COMMANDBAR)
336 wxToolBar
* toolBar
= new wxToolBar(this, -1,
337 wxDefaultPosition
, wxDefaultSize
,
338 wxBORDER_NONE
| wxTB_HORIZONTAL
,
339 wxToolBarNameStr
, menubar
);
341 menubar
->SetToolBar(toolBar
);
343 // Now adjust size for menu bar
346 //When the main window is created using CW_USEDEFAULT the height of the
347 // is created is not taken into account). So we resize the window after
348 // if a menubar is present
351 ::GetWindowRect((HWND
) GetHWND(), &rc
);
352 // adjust for menu / titlebar height
353 rc
.bottom
-= (2*menuHeight
-1);
355 MoveWindow((HWND
) GetHWND(), rc
.left
, rc
.top
, rc
.right
, rc
.bottom
, FALSE
);
359 wxFrameBase::AttachMenuBar(menubar
);
363 // actually remove the menu from the frame
364 m_hMenu
= (WXHMENU
)0;
365 InternalSetMenuBar();
367 else // set new non NULL menu bar
369 #if !defined(__WXWINCE__) || defined(WINCE_WITH_COMMANDBAR)
370 // Can set a menubar several times.
371 if ( menubar
->GetHMenu() )
373 m_hMenu
= menubar
->GetHMenu();
377 m_hMenu
= menubar
->Create();
381 wxFAIL_MSG( _T("failed to create menu bar") );
386 InternalSetMenuBar();
390 void wxFrame::InternalSetMenuBar()
392 #if defined(__WXMICROWIN__) || defined(__WXWINCE__)
395 if ( !::SetMenu(GetHwnd(), (HMENU
)m_hMenu
) )
397 wxLogLastError(wxT("SetMenu"));
402 #endif // wxUSE_MENUS_NATIVE
404 // Responds to colour changes, and passes event on to children.
405 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
407 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
));
411 if ( m_frameStatusBar
)
413 wxSysColourChangedEvent event2
;
414 event2
.SetEventObject( m_frameStatusBar
);
415 m_frameStatusBar
->GetEventHandler()->ProcessEvent(event2
);
417 #endif // wxUSE_STATUSBAR
419 // Propagate the event to the non-top-level children
420 wxWindow::OnSysColourChanged(event
);
423 // Pass TRUE to show full screen, FALSE to restore.
424 bool wxFrame::ShowFullScreen(bool show
, long style
)
426 if ( IsFullScreen() == show
)
433 #if defined(WINCE_WITH_COMMANDBAR)
434 // TODO: hide commandbar
436 wxToolBar
*theToolBar
= GetToolBar();
438 theToolBar
->GetSize(NULL
, &m_fsToolBarHeight
);
440 // zap the toolbar, menubar, and statusbar
442 if ((style
& wxFULLSCREEN_NOTOOLBAR
) && theToolBar
)
444 theToolBar
->SetSize(-1,0);
445 theToolBar
->Show(FALSE
);
447 #endif // __WXWINCE__
448 #endif // wxUSE_TOOLBAR
450 #if defined(__WXMICROWIN__)
451 #elif defined(__WXWINCE__)
452 // TODO: make it work for WinCE
454 if (style
& wxFULLSCREEN_NOMENUBAR
)
455 SetMenu((HWND
)GetHWND(), (HMENU
) NULL
);
459 wxStatusBar
*theStatusBar
= GetStatusBar();
461 theStatusBar
->GetSize(NULL
, &m_fsStatusBarHeight
);
463 // Save the number of fields in the statusbar
464 if ((style
& wxFULLSCREEN_NOSTATUSBAR
) && theStatusBar
)
466 //m_fsStatusBarFields = theStatusBar->GetFieldsCount();
467 //SetStatusBar((wxStatusBar*) NULL);
468 //delete theStatusBar;
469 theStatusBar
->Show(FALSE
);
472 m_fsStatusBarFields
= 0;
473 #endif // wxUSE_STATUSBAR
478 #if defined(WINCE_WITHOUT_COMMANDBAR)
479 // TODO: show commandbar
481 wxToolBar
*theToolBar
= GetToolBar();
483 // restore the toolbar, menubar, and statusbar
484 if (theToolBar
&& (m_fsStyle
& wxFULLSCREEN_NOTOOLBAR
))
486 theToolBar
->SetSize(-1, m_fsToolBarHeight
);
487 theToolBar
->Show(TRUE
);
489 #endif // __WXWINCE__
490 #endif // wxUSE_TOOLBAR
493 if ( m_fsStyle
& wxFULLSCREEN_NOSTATUSBAR
)
495 //CreateStatusBar(m_fsStatusBarFields);
498 GetStatusBar()->Show(TRUE
);
502 #endif // wxUSE_STATUSBAR
504 #if defined(__WXMICROWIN__)
505 #elif defined(__WXWINCE__)
506 // TODO: make it work for WinCE
508 if ((m_fsStyle
& wxFULLSCREEN_NOMENUBAR
) && (m_hMenu
!= 0))
509 SetMenu((HWND
)GetHWND(), (HMENU
)m_hMenu
);
513 return wxFrameBase::ShowFullScreen(show
, style
);
516 // ----------------------------------------------------------------------------
517 // tool/status bar stuff
518 // ----------------------------------------------------------------------------
522 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
524 #if defined(WINCE_WITHOUT_COMMANDBAR)
525 // We may already have a toolbar from calling SetMenuBar.
529 if ( wxFrameBase::CreateToolBar(style
, id
, name
) )
534 return m_frameToolBar
;
537 void wxFrame::PositionToolBar()
539 wxToolBar
*toolbar
= GetToolBar();
540 if ( toolbar
&& toolbar
->IsShown() )
542 #if defined(WINCE_WITHOUT_COMMANDBAR)
543 // We want to do something different in WinCE, because
544 // the toolbar should be associated with the commandbar,
545 // and not an independent window.
548 // don't call our (or even wxTopLevelWindow) version because we want
549 // the real (full) client area size, not excluding the tool/status bar
551 wxWindow::DoGetClientSize(&width
, &height
);
554 wxStatusBar
*statbar
= GetStatusBar();
555 if ( statbar
&& statbar
->IsShown() )
557 height
-= statbar
->GetClientSize().y
;
559 #endif // wxUSE_STATUSBAR
563 #if defined(WINCE_WITH_COMMANDBAR)
564 // We're using a commandbar - so we have to allow for it.
565 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
568 ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
);
569 y
= rect
.bottom
- rect
.top
;
575 toolbar
->GetPosition(&tx
, &ty
);
576 toolbar
->GetSize(&tw
, &th
);
579 if (ty
< 0 && (-ty
== th
))
581 if (tx
< 0 && (-tx
== tw
))
587 if ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
)
594 // if ( toolbar->GetWindowStyleFlag() & wxTB_FLAT )
598 // use the 'real' MSW position here, don't offset relativly to the
599 // client area origin
601 // Optimise such that we don't have to always resize the toolbar
602 // when the frame changes, otherwise we'll get a lot of flicker.
603 bool heightChanging
= TRUE
;
604 bool widthChanging
= TRUE
;
606 if ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
)
608 // It's OK if the current height is greater than what can be shown.
609 heightChanging
= (desiredH
> th
) ;
610 widthChanging
= (desiredW
!= tw
) ;
612 // The next time around, we may not have to set the size
614 desiredH
= desiredH
+ 200;
618 // It's OK if the current width is greater than what can be shown.
619 widthChanging
= (desiredW
> tw
) ;
620 heightChanging
= (desiredH
!= th
) ;
622 // The next time around, we may not have to set the size
624 desiredW
= desiredW
+ 200;
627 if (tx
!= 0 || ty
!= 0 || widthChanging
|| heightChanging
)
628 toolbar
->SetSize(x
, y
, desiredW
, desiredH
, wxSIZE_NO_ADJUSTMENTS
);
630 #endif // __WXWINCE__
634 #endif // wxUSE_TOOLBAR
636 // ----------------------------------------------------------------------------
637 // frame state (iconized/maximized/...)
638 // ----------------------------------------------------------------------------
640 // propagate our state change to all child frames: this allows us to emulate X
641 // Windows behaviour where child frames float independently of the parent one
642 // on the desktop, but are iconized/restored with it
643 void wxFrame::IconizeChildFrames(bool bIconize
)
645 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
647 node
= node
->GetNext() )
649 wxWindow
*win
= node
->GetData();
651 // iconizing the frames with this style under Win95 shell puts them at
652 // the bottom of the screen (as the MDI children) instead of making
653 // them appear in the taskbar because they are, by virtue of this
654 // style, not managed by the taskbar - instead leave Windows take care
657 if ( win
->GetWindowStyle() & wxFRAME_TOOL_WINDOW
)
661 // the child MDI frames are a special case and should not be touched by
662 // the parent frame - instead, they are managed by the user
663 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
665 #if wxUSE_MDI_ARCHITECTURE
666 && !wxDynamicCast(frame
, wxMDIChildFrame
)
667 #endif // wxUSE_MDI_ARCHITECTURE
670 // we don't want to restore the child frames which had been
671 // iconized even before we were iconized, so save the child frame
672 // status when iconizing the parent frame and check it when
676 frame
->m_wasMinimized
= frame
->IsIconized();
679 // note that we shouldn't touch the hidden frames neither because
680 // iconizing/restoring them would show them as a side effect
681 if ( !frame
->m_wasMinimized
&& frame
->IsShown() )
682 frame
->Iconize(bIconize
);
687 WXHICON
wxFrame::GetDefaultIcon() const
689 // we don't have any standard icons (any more)
693 // ===========================================================================
694 // message processing
695 // ===========================================================================
697 // ---------------------------------------------------------------------------
699 // ---------------------------------------------------------------------------
701 bool wxFrame::MSWTranslateMessage(WXMSG
* pMsg
)
703 if ( wxWindow::MSWTranslateMessage(pMsg
) )
706 #if wxUSE_MENUS && wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
707 // try the menu bar accels
708 wxMenuBar
*menuBar
= GetMenuBar();
712 const wxAcceleratorTable
& acceleratorTable
= menuBar
->GetAccelTable();
713 return acceleratorTable
.Translate(this, pMsg
);
716 #endif // wxUSE_MENUS && wxUSE_ACCEL
719 // ---------------------------------------------------------------------------
720 // our private (non virtual) message handlers
721 // ---------------------------------------------------------------------------
723 bool wxFrame::HandlePaint()
726 if ( GetUpdateRect(GetHwnd(), &rect
, FALSE
) )
728 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
731 const wxIcon
& icon
= GetIcon();
732 HICON hIcon
= icon
.Ok() ? GetHiconOf(icon
)
733 : (HICON
)GetDefaultIcon();
735 // Hold a pointer to the dc so long as the OnPaint() message
736 // is being processed
738 HDC hdc
= ::BeginPaint(GetHwnd(), &ps
);
740 // Erase background before painting or we get white background
741 MSWDefWindowProc(WM_ICONERASEBKGND
, (WORD
)(LONG
)ps
.hdc
, 0L);
746 ::GetClientRect(GetHwnd(), &rect
);
748 // FIXME: why hardcoded?
749 static const int icon_width
= 32;
750 static const int icon_height
= 32;
752 int icon_x
= (int)((rect
.right
- icon_width
)/2);
753 int icon_y
= (int)((rect
.bottom
- icon_height
)/2);
755 ::DrawIcon(hdc
, icon_x
, icon_y
, hIcon
);
758 ::EndPaint(GetHwnd(), &ps
);
765 return wxWindow::HandlePaint();
770 // nothing to paint - processed
775 bool wxFrame::HandleSize(int x
, int y
, WXUINT id
)
777 bool processed
= FALSE
;
778 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
783 // only do it it if we were iconized before, otherwise resizing the
784 // parent frame has a curious side effect of bringing it under it's
789 // restore all child frames too
790 IconizeChildFrames(FALSE
);
792 (void)SendIconizeEvent(FALSE
);
801 // iconize all child frames too
802 IconizeChildFrames(TRUE
);
804 (void)SendIconizeEvent();
815 #endif // wxUSE_STATUSBAR
819 #endif // wxUSE_TOOLBAR
821 #if defined(WINCE_WITH_COMMANDBAR)
822 // Position the menu command bar
823 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
826 ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
);
827 wxSize clientSz
= GetClientSize();
829 if ( !::MoveWindow((HWND
) GetMenuBar()->GetCommandBar(), 0, 0, clientSz
.x
, rect
.bottom
- rect
.top
, true ) )
831 wxLogLastError(wxT("MoveWindow"));
838 processed
= wxWindow::HandleSize(x
, y
, id
);
844 bool wxFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
848 // In case it's e.g. a toolbar.
849 wxWindow
*win
= wxFindWinFromHandle(control
);
851 return win
->MSWCommand(cmd
, id
);
854 // handle here commands from menus and accelerators
855 if ( cmd
== 0 || cmd
== 1 )
857 #if wxUSE_MENUS_NATIVE
858 if ( wxCurrentPopupMenu
)
860 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
861 wxCurrentPopupMenu
= NULL
;
863 return popupMenu
->MSWCommand(cmd
, id
);
865 #endif // wxUSE_MENUS_NATIVE
867 #ifdef __SMARTPHONE__
868 // handle here commands from Smartphone menu bar
869 if ( wxTopLevelWindow::HandleCommand(id
, cmd
, control
) )
873 #endif // __SMARTPHONE__
875 if ( ProcessCommand(id
) )
884 bool wxFrame::HandleMenuSelect(WXWORD nItem
, WXWORD flags
, WXHMENU hMenu
)
887 if ( flags
== 0xFFFF && hMenu
== 0 )
889 // menu was removed from screen
892 #ifndef __WXMICROWIN__
893 else if ( !(flags
& MF_POPUP
) && !(flags
& MF_SEPARATOR
) )
900 // don't give hints for separators (doesn't make sense) nor for the
901 // items opening popup menus (they don't have them anyhow) but do clear
902 // the status line - otherwise, we would be left with the help message
903 // for the previous item which doesn't apply any more
904 DoGiveHelp(wxEmptyString
, FALSE
);
909 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, item
);
910 event
.SetEventObject(this);
912 return GetEventHandler()->ProcessEvent(event
);
915 bool wxFrame::HandleMenuLoop(const wxEventType
& evtType
, WXWORD isPopup
)
917 // we don't have the menu id here, so we use the id to specify if the event
918 // was from a popup menu or a normal one
919 wxMenuEvent
event(evtType
, isPopup
? -1 : 0);
920 event
.SetEventObject(this);
922 return GetEventHandler()->ProcessEvent(event
);
925 // ---------------------------------------------------------------------------
926 // the window proc for wxFrame
927 // ---------------------------------------------------------------------------
929 WXLRESULT
wxFrame::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
932 bool processed
= FALSE
;
937 // if we can't close, tell the system that we processed the
938 // message - otherwise it would close us
939 processed
= !Close();
943 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
950 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
953 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
958 processed
= HandlePaint();
961 case WM_INITMENUPOPUP
:
962 processed
= HandleInitMenuPopup((WXHMENU
) wParam
);
965 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
970 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
972 processed
= HandleMenuSelect(item
, flags
, hmenu
);
976 case WM_EXITMENULOOP
:
977 processed
= HandleMenuLoop(wxEVT_MENU_CLOSE
, wParam
);
980 case WM_QUERYDRAGICON
:
982 const wxIcon
& icon
= GetIcon();
983 HICON hIcon
= icon
.Ok() ? GetHiconOf(icon
)
984 : (HICON
)GetDefaultIcon();
989 #endif // !__WXMICROWIN__
993 rc
= wxFrameBase::MSWWindowProc(message
, wParam
, lParam
);
998 // handle WM_INITMENUPOPUP message
999 bool wxFrame::HandleInitMenuPopup(WXHMENU hMenu
)
1001 wxMenu
* menu
= NULL
;
1004 int nCount
= GetMenuBar()->GetMenuCount();
1005 for (int n
= 0; n
< nCount
; n
++)
1007 if (GetMenuBar()->GetMenu(n
)->GetHMenu() == hMenu
)
1009 menu
= GetMenuBar()->GetMenu(n
);
1015 wxMenuEvent
event(wxEVT_MENU_OPEN
, 0, menu
);
1016 event
.SetEventObject(this);
1018 return GetEventHandler()->ProcessEvent(event
);
1021 // ----------------------------------------------------------------------------
1022 // wxFrame size management: we exclude the areas taken by menu/status/toolbars
1023 // from the client area, so the client area is what's really available for the
1025 // ----------------------------------------------------------------------------
1027 // get the origin of the client area in the client coordinates
1028 wxPoint
wxFrame::GetClientAreaOrigin() const
1030 wxPoint pt
= wxTopLevelWindow::GetClientAreaOrigin();
1032 #if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) && \
1033 (!defined(__WXWINCE__) || (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__)))
1034 wxToolBar
*toolbar
= GetToolBar();
1035 if ( toolbar
&& toolbar
->IsShown() )
1038 toolbar
->GetSize(&w
, &h
);
1040 if ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
)
1049 #endif // wxUSE_TOOLBAR
1051 #if defined(WINCE_WITH_COMMANDBAR)
1052 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
1055 ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
);
1056 pt
.y
+= (rect
.bottom
- rect
.top
);