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();
254 wxToolBar
*toolbar
= GetToolBar();
255 if( toolbar
&& toolbar
->HasFlag( wxTB_BOTTOM
) )
257 *y
-= toolbar
->GetClientSize().y
;
262 // adjust client area height to take the status bar into account
265 wxStatusBar
*statbar
= GetStatusBar();
266 if ( statbar
&& statbar
->IsShown() )
268 *y
-= statbar
->GetClientSize().y
;
271 #endif // wxUSE_STATUSBAR
274 // ----------------------------------------------------------------------------
275 // wxFrame: various geometry-related functions
276 // ----------------------------------------------------------------------------
278 void wxFrame::Raise()
280 ::SetForegroundWindow(GetHwnd());
283 // generate an artificial resize event
284 void wxFrame::SendSizeEvent()
288 RECT r
= wxGetWindowRect(GetHwnd());
290 (void)::PostMessage(GetHwnd(), WM_SIZE
,
291 IsMaximized() ? SIZE_MAXIMIZED
: SIZE_RESTORED
,
292 MAKELPARAM(r
.right
- r
.left
, r
.bottom
- r
.top
));
297 wxStatusBar
*wxFrame::OnCreateStatusBar(int number
,
300 const wxString
& name
)
302 wxStatusBar
*statusBar
wxDUMMY_INITIALIZE(NULL
);
304 #if wxUSE_NATIVE_STATUSBAR
305 if ( !UsesNativeStatusBar() )
307 statusBar
= (wxStatusBar
*)new wxStatusBarGeneric(this, id
, style
);
312 statusBar
= new wxStatusBar(this, id
, style
, name
);
315 statusBar
->SetFieldsCount(number
);
320 void wxFrame::PositionStatusBar()
322 if ( !m_frameStatusBar
|| !m_frameStatusBar
->IsShown() )
326 GetClientSize(&w
, &h
);
328 wxToolBar
*toolbar
= GetToolBar();
329 if( toolbar
&& toolbar
->HasFlag( wxTB_BOTTOM
) )
330 h
+= toolbar
->GetClientRect().height
;
333 m_frameStatusBar
->GetSize(&sw
, &sh
);
335 // Since we wish the status bar to be directly under the client area,
336 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
337 m_frameStatusBar
->SetSize(0, h
, w
, sh
);
339 #endif // wxUSE_STATUSBAR
341 #if wxUSE_MENUS_NATIVE
343 void wxFrame::AttachMenuBar(wxMenuBar
*menubar
)
345 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
347 wxMenu
*autoMenu
= NULL
;
349 if( menubar
->GetMenuCount() == 1 )
351 autoMenu
= wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(menubar
->GetMenu(0));
352 SetRightMenu(wxID_ANY
, menubar
->GetLabelTop(0), autoMenu
);
356 autoMenu
= new wxMenu
;
358 for( size_t n
= 0; n
< menubar
->GetMenuCount(); n
++ )
360 wxMenu
*item
= menubar
->GetMenu(n
);
361 wxString label
= menubar
->GetLabelTop(n
);
362 wxMenu
*new_item
= wxTopLevelWindowMSW::ButtonMenu::DuplicateMenu(item
);
363 autoMenu
->Append(wxID_ANY
, label
, new_item
);
366 SetRightMenu(wxID_ANY
, _("Menu"), autoMenu
);
369 #elif defined(WINCE_WITHOUT_COMMANDBAR)
372 wxToolMenuBar
* toolBar
= new wxToolMenuBar(this, wxID_ANY
,
373 wxDefaultPosition
, wxDefaultSize
,
374 wxBORDER_NONE
| wxTB_HORIZONTAL
,
375 wxToolBarNameStr
, menubar
);
377 menubar
->SetToolBar(toolBar
);
379 // Now adjust size for menu bar
382 //When the main window is created using CW_USEDEFAULT the height of the
383 // is created is not taken into account). So we resize the window after
384 // if a menubar is present
387 ::GetWindowRect((HWND
) GetHWND(), &rc
);
388 // adjust for menu / titlebar height
389 rc
.bottom
-= (2*menuHeight
-1);
391 ::MoveWindow((HWND
) GetHWND(), rc
.left
, rc
.top
, rc
.right
, rc
.bottom
, FALSE
);
395 wxFrameBase::AttachMenuBar(menubar
);
399 // actually remove the menu from the frame
400 m_hMenu
= (WXHMENU
)0;
401 InternalSetMenuBar();
403 else // set new non NULL menu bar
405 #if !defined(__WXWINCE__) || defined(WINCE_WITH_COMMANDBAR)
406 // Can set a menubar several times.
407 if ( menubar
->GetHMenu() )
409 m_hMenu
= menubar
->GetHMenu();
413 m_hMenu
= menubar
->Create();
417 wxFAIL_MSG( _T("failed to create menu bar") );
422 InternalSetMenuBar();
426 void wxFrame::InternalSetMenuBar()
428 #if defined(__WXMICROWIN__) || defined(__WXWINCE__)
431 if ( !::SetMenu(GetHwnd(), (HMENU
)m_hMenu
) )
433 wxLogLastError(wxT("SetMenu"));
438 #endif // wxUSE_MENUS_NATIVE
440 // Responds to colour changes, and passes event on to children.
441 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
443 SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
));
447 if ( m_frameStatusBar
)
449 wxSysColourChangedEvent event2
;
450 event2
.SetEventObject( m_frameStatusBar
);
451 m_frameStatusBar
->GetEventHandler()->ProcessEvent(event2
);
453 #endif // wxUSE_STATUSBAR
455 // Propagate the event to the non-top-level children
456 wxWindow::OnSysColourChanged(event
);
459 // Pass true to show full screen, false to restore.
460 bool wxFrame::ShowFullScreen(bool show
, long style
)
462 // TODO-CE: add support for CE
463 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
464 if ( IsFullScreen() == show
)
469 // zap the toolbar, menubar, and statusbar if needed
471 // TODO: hide commandbar for WINCE_WITH_COMMANDBAR
473 wxToolBar
*theToolBar
= GetToolBar();
475 if ((style
& wxFULLSCREEN_NOTOOLBAR
) && theToolBar
)
477 if ( theToolBar
->IsShown() )
479 theToolBar
->SetSize(wxDefaultCoord
,0);
480 theToolBar
->Show(false);
482 else // prevent it from being restored later
484 style
&= ~wxFULLSCREEN_NOTOOLBAR
;
487 #endif // wxUSE_TOOLBAR
489 if (style
& wxFULLSCREEN_NOMENUBAR
)
490 SetMenu((HWND
)GetHWND(), (HMENU
) NULL
);
493 wxStatusBar
*theStatusBar
= GetStatusBar();
495 // Save the number of fields in the statusbar
496 if ((style
& wxFULLSCREEN_NOSTATUSBAR
) && theStatusBar
)
498 if ( theStatusBar
->IsShown() )
499 theStatusBar
->Show(false);
501 style
&= ~wxFULLSCREEN_NOSTATUSBAR
;
503 #endif // wxUSE_STATUSBAR
505 else // restore to normal
507 // restore the toolbar, menubar, and statusbar if we had hid them
509 wxToolBar
*theToolBar
= GetToolBar();
511 if ((m_fsStyle
& wxFULLSCREEN_NOTOOLBAR
) && theToolBar
)
513 theToolBar
->Show(true);
515 #endif // wxUSE_TOOLBAR
517 if (m_fsStyle
& wxFULLSCREEN_NOMENUBAR
)
519 WXHMENU menu
= m_hMenu
;
521 #if wxUSE_MDI_ARCHITECTURE
522 wxMDIParentFrame
*frame
= wxDynamicCast(this, wxMDIParentFrame
);
525 wxMDIChildFrame
*child
= frame
->GetActiveChild();
528 menu
= child
->GetWinMenu();
531 #endif // wxUSE_MDI_ARCHITECTURE
535 ::SetMenu(GetHwnd(), (HMENU
)menu
);
540 wxStatusBar
*theStatusBar
= GetStatusBar();
542 if ((m_fsStyle
& wxFULLSCREEN_NOSTATUSBAR
) && theStatusBar
)
544 theStatusBar
->Show(true);
547 #endif // wxUSE_STATUSBAR
549 #endif // !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
551 return wxFrameBase::ShowFullScreen(show
, style
);
554 // ----------------------------------------------------------------------------
555 // tool/status bar stuff
556 // ----------------------------------------------------------------------------
560 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
562 #if defined(WINCE_WITHOUT_COMMANDBAR)
563 // We may already have a toolbar from calling SetMenuBar.
567 if ( wxFrameBase::CreateToolBar(style
, id
, name
) )
572 return m_frameToolBar
;
575 void wxFrame::PositionToolBar()
578 wxToolBar
*toolbar
= GetToolBar();
579 if ( toolbar
&& toolbar
->IsShown() )
581 #if defined(WINCE_WITHOUT_COMMANDBAR)
582 // We want to do something different in WinCE, because
583 // the toolbar should be associated with the commandbar,
584 // and not an independent window.
587 // don't call our (or even wxTopLevelWindow) version because we want
588 // the real (full) client area size, not excluding the tool/status bar
590 wxWindow::DoGetClientSize(&width
, &height
);
593 wxStatusBar
*statbar
= GetStatusBar();
594 if ( statbar
&& statbar
->IsShown() )
596 height
-= statbar
->GetClientSize().y
;
598 #endif // wxUSE_STATUSBAR
600 toolbar
->GetPosition( &tx
, &ty
);
601 toolbar
->GetSize( &tw
, &th
);
602 if( ( toolbar
->GetWindowStyleFlag() & wxTB_HORIZONTAL
) || ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
) )
607 else if( toolbar
->GetWindowStyleFlag() & wxTB_BOTTOM
)
612 #if defined(WINCE_WITH_COMMANDBAR)
613 // We're using a commandbar - so we have to allow for it.
614 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
617 ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
);
618 y
= rect
.bottom
- rect
.top
;
621 if( ( toolbar
->GetWindowStyleFlag() & wxTB_HORIZONTAL
) || ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
) )
624 if (ty
< 0 && (-ty
== th
))
626 if (tx
< 0 && (-tx
== tw
))
629 else if( toolbar
->GetWindowStyleFlag() & wxTB_BOTTOM
)
631 if( ty
< 0 && ( -ty
== th
) )
633 if( tx
< 0 && ( -tx
== tw
) )
640 if ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
)
647 // if ( toolbar->GetWindowStyleFlag() & wxTB_FLAT )
651 // use the 'real' MSW position here, don't offset relativly to the
652 // client area origin
654 // Optimise such that we don't have to always resize the toolbar
655 // when the frame changes, otherwise we'll get a lot of flicker.
656 bool heightChanging
wxDUMMY_INITIALIZE(true);
657 bool widthChanging
wxDUMMY_INITIALIZE(true);
659 if ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
)
661 // It's OK if the current height is greater than what can be shown.
662 heightChanging
= (desiredH
> th
) ;
663 widthChanging
= (desiredW
!= tw
) ;
665 // The next time around, we may not have to set the size
667 desiredH
= desiredH
+ 200;
671 // It's OK if the current width is greater than what can be shown.
672 widthChanging
= (desiredW
> tw
) ;
673 heightChanging
= (desiredH
!= th
) ;
675 // The next time around, we may not have to set the size
677 desiredW
= desiredW
+ 200;
680 if (tx
!= 0 || ty
!= 0 || widthChanging
|| heightChanging
)
681 toolbar
->SetSize(x
, y
, desiredW
, desiredH
, wxSIZE_NO_ADJUSTMENTS
);
683 #endif // __WXWINCE__
687 #endif // wxUSE_TOOLBAR
689 // ----------------------------------------------------------------------------
690 // frame state (iconized/maximized/...)
691 // ----------------------------------------------------------------------------
693 // propagate our state change to all child frames: this allows us to emulate X
694 // Windows behaviour where child frames float independently of the parent one
695 // on the desktop, but are iconized/restored with it
696 void wxFrame::IconizeChildFrames(bool bIconize
)
698 m_iconized
= bIconize
;
700 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
702 node
= node
->GetNext() )
704 wxWindow
*win
= node
->GetData();
706 // iconizing the frames with this style under Win95 shell puts them at
707 // the bottom of the screen (as the MDI children) instead of making
708 // them appear in the taskbar because they are, by virtue of this
709 // style, not managed by the taskbar - instead leave Windows take care
711 if ( win
->GetWindowStyle() & wxFRAME_TOOL_WINDOW
)
714 // the child MDI frames are a special case and should not be touched by
715 // the parent frame - instead, they are managed by the user
716 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
718 #if wxUSE_MDI_ARCHITECTURE
719 && !frame
->IsMDIChild()
720 #endif // wxUSE_MDI_ARCHITECTURE
723 // we don't want to restore the child frames which had been
724 // iconized even before we were iconized, so save the child frame
725 // status when iconizing the parent frame and check it when
729 frame
->m_wasMinimized
= frame
->IsIconized();
732 // note that we shouldn't touch the hidden frames neither because
733 // iconizing/restoring them would show them as a side effect
734 if ( !frame
->m_wasMinimized
&& frame
->IsShown() )
735 frame
->Iconize(bIconize
);
740 WXHICON
wxFrame::GetDefaultIcon() const
742 // we don't have any standard icons (any more)
746 // ===========================================================================
747 // message processing
748 // ===========================================================================
750 // ---------------------------------------------------------------------------
752 // ---------------------------------------------------------------------------
754 bool wxFrame::MSWDoTranslateMessage(wxFrame
*frame
, WXMSG
*pMsg
)
756 if ( wxWindow::MSWTranslateMessage(pMsg
) )
759 #if wxUSE_MENUS && wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
760 // try the menu bar accels
761 wxMenuBar
*menuBar
= GetMenuBar();
764 const wxAcceleratorTable
& acceleratorTable
= menuBar
->GetAccelTable();
765 return acceleratorTable
.Translate(frame
, pMsg
);
767 #endif // wxUSE_MENUS && wxUSE_ACCEL
772 // ---------------------------------------------------------------------------
773 // our private (non virtual) message handlers
774 // ---------------------------------------------------------------------------
776 bool wxFrame::HandlePaint()
779 if ( ::GetUpdateRect(GetHwnd(), &rect
, FALSE
) )
781 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
784 const wxIcon
& icon
= GetIcon();
785 HICON hIcon
= icon
.Ok() ? GetHiconOf(icon
)
786 : (HICON
)GetDefaultIcon();
788 // Hold a pointer to the dc so long as the OnPaint() message
789 // is being processed
791 HDC hdc
= ::BeginPaint(GetHwnd(), &ps
);
793 // Erase background before painting or we get white background
794 MSWDefWindowProc(WM_ICONERASEBKGND
, (WORD
)(LONG
)ps
.hdc
, 0L);
799 ::GetClientRect(GetHwnd(), &rect
);
801 // FIXME: why hardcoded?
802 static const int icon_width
= 32;
803 static const int icon_height
= 32;
805 int icon_x
= (int)((rect
.right
- icon_width
)/2);
806 int icon_y
= (int)((rect
.bottom
- icon_height
)/2);
808 ::DrawIcon(hdc
, icon_x
, icon_y
, hIcon
);
811 ::EndPaint(GetHwnd(), &ps
);
818 return wxWindow::HandlePaint();
823 // nothing to paint - processed
828 bool wxFrame::HandleSize(int WXUNUSED(x
), int WXUNUSED(y
), WXUINT id
)
830 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
835 // only do it it if we were iconized before, otherwise resizing the
836 // parent frame has a curious side effect of bringing it under it's
841 // restore all child frames too
842 IconizeChildFrames(false);
844 (void)SendIconizeEvent(false);
848 // iconize all child frames too
849 IconizeChildFrames(true);
854 #endif // !__WXWINCE__
860 #endif // wxUSE_STATUSBAR
864 #endif // wxUSE_TOOLBAR
866 #if defined(WINCE_WITH_COMMANDBAR)
867 // Position the menu command bar
868 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
871 ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
);
872 wxSize clientSz
= GetClientSize();
874 if ( !::MoveWindow((HWND
) GetMenuBar()->GetCommandBar(), 0, 0, clientSz
.x
, rect
.bottom
- rect
.top
, true ) )
876 wxLogLastError(wxT("MoveWindow"));
880 #endif // WINCE_WITH_COMMANDBAR
883 // call the base class version to generate the appropriate events
887 bool wxFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
891 // In case it's e.g. a toolbar.
892 wxWindow
*win
= wxFindWinFromHandle(control
);
894 return win
->MSWCommand(cmd
, id
);
897 // handle here commands from menus and accelerators
898 if ( cmd
== 0 || cmd
== 1 )
900 #if wxUSE_MENUS_NATIVE
901 if ( wxCurrentPopupMenu
)
903 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
904 wxCurrentPopupMenu
= NULL
;
906 return popupMenu
->MSWCommand(cmd
, id
);
908 #endif // wxUSE_MENUS_NATIVE
910 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
911 // handle here commands from Smartphone menu bar
912 if ( wxTopLevelWindow::HandleCommand(id
, cmd
, control
) )
916 #endif // __SMARTPHONE__ && __WXWINCE__
918 if ( ProcessCommand(id
) )
927 bool wxFrame::HandleMenuSelect(WXWORD nItem
, WXWORD flags
, WXHMENU hMenu
)
930 if ( flags
== 0xFFFF && hMenu
== 0 )
932 // menu was removed from screen
935 #ifndef __WXMICROWIN__
936 else if ( !(flags
& MF_POPUP
) && !(flags
& MF_SEPARATOR
) )
943 // don't give hints for separators (doesn't make sense) nor for the
944 // items opening popup menus (they don't have them anyhow) but do clear
945 // the status line - otherwise, we would be left with the help message
946 // for the previous item which doesn't apply any more
947 DoGiveHelp(wxEmptyString
, false);
952 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, item
);
953 event
.SetEventObject(this);
955 return GetEventHandler()->ProcessEvent(event
);
958 bool wxFrame::HandleMenuLoop(const wxEventType
& evtType
, WXWORD isPopup
)
960 // we don't have the menu id here, so we use the id to specify if the event
961 // was from a popup menu or a normal one
962 wxMenuEvent
event(evtType
, isPopup
? -1 : 0);
963 event
.SetEventObject(this);
965 return GetEventHandler()->ProcessEvent(event
);
968 // ---------------------------------------------------------------------------
969 // the window proc for wxFrame
970 // ---------------------------------------------------------------------------
972 WXLRESULT
wxFrame::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
975 bool processed
= false;
980 // if we can't close, tell the system that we processed the
981 // message - otherwise it would close us
982 processed
= !Close();
986 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
993 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
996 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
1001 processed
= HandlePaint();
1004 case WM_INITMENUPOPUP
:
1005 processed
= HandleInitMenuPopup((WXHMENU
) wParam
);
1008 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1013 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
1015 processed
= HandleMenuSelect(item
, flags
, hmenu
);
1019 case WM_EXITMENULOOP
:
1020 processed
= HandleMenuLoop(wxEVT_MENU_CLOSE
, (WXWORD
)wParam
);
1023 case WM_QUERYDRAGICON
:
1025 const wxIcon
& icon
= GetIcon();
1026 HICON hIcon
= icon
.Ok() ? GetHiconOf(icon
)
1027 : (HICON
)GetDefaultIcon();
1029 processed
= rc
!= 0;
1032 #endif // !__WXMICROWIN__
1036 rc
= wxFrameBase::MSWWindowProc(message
, wParam
, lParam
);
1041 // handle WM_INITMENUPOPUP message
1042 bool wxFrame::HandleInitMenuPopup(WXHMENU hMenu
)
1044 wxMenu
* menu
= NULL
;
1047 int nCount
= GetMenuBar()->GetMenuCount();
1048 for (int n
= 0; n
< nCount
; n
++)
1050 if (GetMenuBar()->GetMenu(n
)->GetHMenu() == hMenu
)
1052 menu
= GetMenuBar()->GetMenu(n
);
1058 wxMenuEvent
event(wxEVT_MENU_OPEN
, 0, menu
);
1059 event
.SetEventObject(this);
1061 return GetEventHandler()->ProcessEvent(event
);
1064 // ----------------------------------------------------------------------------
1065 // wxFrame size management: we exclude the areas taken by menu/status/toolbars
1066 // from the client area, so the client area is what's really available for the
1068 // ----------------------------------------------------------------------------
1070 // get the origin of the client area in the client coordinates
1071 wxPoint
wxFrame::GetClientAreaOrigin() const
1073 wxPoint pt
= wxTopLevelWindow::GetClientAreaOrigin();
1075 #if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) && \
1076 (!defined(__WXWINCE__) || (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__)))
1077 wxToolBar
*toolbar
= GetToolBar();
1078 if ( toolbar
&& toolbar
->IsShown() )
1081 toolbar
->GetSize(&w
, &h
);
1083 if ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
)
1087 else if( !( toolbar
->GetWindowStyleFlag() & wxTB_BOTTOM
) )
1092 #endif // wxUSE_TOOLBAR
1094 #if defined(WINCE_WITH_COMMANDBAR)
1095 if (GetMenuBar() && GetMenuBar()->GetCommandBar())
1098 ::GetWindowRect((HWND
) GetMenuBar()->GetCommandBar(), &rect
);
1099 pt
.y
+= (rect
.bottom
- rect
.top
);