1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
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"
46 #include "wx/statusbr.h"
47 #include "wx/generic/statusbr.h"
48 #endif // wxUSE_STATUSBAR
51 #include "wx/toolbar.h"
52 #endif // wxUSE_TOOLBAR
54 #include "wx/menuitem.h"
57 #ifdef __WXUNIVERSAL__
58 #include "wx/univ/theme.h"
59 #include "wx/univ/colschem.h"
60 #endif // __WXUNIVERSAL__
62 // ----------------------------------------------------------------------------
64 // ----------------------------------------------------------------------------
66 extern wxWindowList wxModelessWindows
;
67 extern wxList WXDLLEXPORT wxPendingDelete
;
68 extern const wxChar
*wxFrameClassName
;
70 #if wxUSE_MENUS_NATIVE
71 extern wxMenu
*wxCurrentPopupMenu
;
72 #endif // wxUSE_MENUS_NATIVE
74 // ----------------------------------------------------------------------------
76 // ----------------------------------------------------------------------------
78 BEGIN_EVENT_TABLE(wxFrameMSW
, wxFrameBase
)
79 EVT_ACTIVATE(wxFrameMSW::OnActivate
)
80 EVT_SYS_COLOUR_CHANGED(wxFrameMSW::OnSysColourChanged
)
83 #ifndef __WXUNIVERSAL__
84 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxWindow
)
87 // ============================================================================
89 // ============================================================================
91 // ----------------------------------------------------------------------------
92 // static class members
93 // ----------------------------------------------------------------------------
96 #if wxUSE_NATIVE_STATUSBAR
97 bool wxFrameMSW::m_useNativeStatusBar
= TRUE
;
99 bool wxFrameMSW::m_useNativeStatusBar
= FALSE
;
101 #endif // wxUSE_NATIVE_STATUSBAR
103 // ----------------------------------------------------------------------------
104 // creation/destruction
105 // ----------------------------------------------------------------------------
107 void wxFrameMSW::Init()
110 m_maximizeOnShow
= FALSE
;
116 // Data to save/restore when calling ShowFullScreen
118 m_fsOldWindowStyle
= 0;
119 m_fsStatusBarFields
= 0;
120 m_fsStatusBarHeight
= 0;
121 m_fsToolBarHeight
= 0;
123 m_fsIsMaximized
= FALSE
;
124 m_fsIsShowing
= FALSE
;
126 m_winLastFocused
= (wxWindow
*)NULL
;
128 // unlike (almost?) all other windows, frames are created hidden
132 bool wxFrameMSW::Create(wxWindow
*parent
,
134 const wxString
& title
,
138 const wxString
& name
)
141 m_windowStyle
= style
;
143 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
148 m_windowId
= (int)NewControlId();
150 if (parent
) parent
->AddChild(this);
159 // the frame must have NULL parent HWND or it would be always on top of its
160 // parent which is not what we usually want (in fact, we only want it for
161 // frames with the special wxFRAME_FLOAT_ON_PARENT style)
162 if ( !(m_windowStyle
& wxFRAME_FLOAT_ON_PARENT
) )
167 wxTopLevelWindows
.Append(this);
169 MSWCreate(m_windowId
, parent
, wxFrameClassName
, this, title
,
170 x
, y
, width
, height
, style
);
172 wxModelessWindows
.Append(this);
177 wxFrameMSW::~wxFrameMSW()
179 m_isBeingDeleted
= TRUE
;
180 wxTopLevelWindows
.DeleteObject(this);
182 // the ~wxToolBar() code relies on the previous line to be executed before
183 // this one, i.e. the frame should remove itself from wxTopLevelWindows
184 // before destorying its toolbar
187 if (wxTheApp
&& (wxTopLevelWindows
.Number() == 0))
189 wxTheApp
->SetTopWindow(NULL
);
191 if (wxTheApp
->GetExitOnFrameDelete())
197 wxModelessWindows
.DeleteObject(this);
199 // For some reason, wxWindows can activate another task altogether
200 // when a frame is destroyed after a modal dialog has been invoked.
201 // Try to bring the parent to the top.
202 // MT:Only do this if this frame is currently the active window, else weird
203 // things start to happen
204 if ( wxGetActiveWindow() == this )
205 if (GetParent() && GetParent()->GetHWND())
206 ::BringWindowToTop((HWND
) GetParent()->GetHWND());
209 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
210 void wxFrameMSW::DoGetClientSize(int *x
, int *y
) const
213 ::GetClientRect(GetHwnd(), &rect
);
216 if ( GetStatusBar() && GetStatusBar()->IsShown() )
218 int statusX
, statusY
;
219 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
220 rect
.bottom
-= statusY
;
222 #endif // wxUSE_STATUSBAR
224 wxPoint
pt(GetClientAreaOrigin());
234 // Set the client size (i.e. leave the calculation of borders etc.
236 void wxFrameMSW::DoSetClientSize(int width
, int height
)
238 HWND hWnd
= GetHwnd();
241 ::GetClientRect(hWnd
, &rectClient
);
244 ::GetWindowRect(hWnd
, &rectTotal
);
246 // Find the difference between the entire window (title bar and all)
247 // and the client area; add this to the new client size to move the
249 width
+= rectTotal
.right
- rectTotal
.left
- rectClient
.right
;
250 height
+= rectTotal
.bottom
- rectTotal
.top
- rectClient
.bottom
;
253 wxStatusBar
*statbar
= GetStatusBar();
254 if ( statbar
&& statbar
->IsShown() )
256 // leave enough space for the status bar
257 height
+= statbar
->GetSize().y
;
259 #endif // wxUSE_STATUSBAR
261 // note that this takes the toolbar into account
262 wxPoint pt
= GetClientAreaOrigin();
266 if ( !::MoveWindow(hWnd
, rectTotal
.left
, rectTotal
.top
,
267 width
, height
, TRUE
/* redraw */) )
269 wxLogLastError(_T("MoveWindow"));
272 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
273 event
.SetEventObject(this);
274 GetEventHandler()->ProcessEvent(event
);
277 void wxFrameMSW::DoGetSize(int *width
, int *height
) const
280 ::GetWindowRect(GetHwnd(), &rect
);
282 *width
= rect
.right
- rect
.left
;
283 *height
= rect
.bottom
- rect
.top
;
286 void wxFrameMSW::DoGetPosition(int *x
, int *y
) const
289 ::GetWindowRect(GetHwnd(), &rect
);
295 // ----------------------------------------------------------------------------
296 // variations around ::ShowWindow()
297 // ----------------------------------------------------------------------------
299 void wxFrameMSW::DoShowWindow(int nShowCmd
)
301 ::ShowWindow(GetHwnd(), nShowCmd
);
303 m_iconized
= nShowCmd
== SW_MINIMIZE
;
306 bool wxFrameMSW::Show(bool show
)
308 // don't use wxWindow version as we want to call DoShowWindow()
309 if ( !wxWindowBase::Show(show
) )
315 if ( m_maximizeOnShow
)
318 nShowCmd
= SW_MAXIMIZE
;
320 m_maximizeOnShow
= FALSE
;
332 DoShowWindow(nShowCmd
);
336 ::BringWindowToTop(GetHwnd());
338 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, m_windowId
);
339 event
.SetEventObject( this );
340 GetEventHandler()->ProcessEvent(event
);
344 // Try to highlight the correct window (the parent)
347 HWND hWndParent
= GetHwndOf(GetParent());
349 ::BringWindowToTop(hWndParent
);
356 void wxFrameMSW::Iconize(bool iconize
)
358 DoShowWindow(iconize
? SW_MINIMIZE
: SW_RESTORE
);
361 void wxFrameMSW::Maximize(bool maximize
)
365 // just maximize it directly
366 DoShowWindow(maximize
? SW_MAXIMIZE
: SW_RESTORE
);
370 // we can't maximize the hidden frame because it shows it as well, so
371 // just remember that we should do it later in this case
372 m_maximizeOnShow
= TRUE
;
376 void wxFrameMSW::Restore()
378 DoShowWindow(SW_RESTORE
);
381 bool wxFrameMSW::IsIconized() const
383 #ifdef __WXMICROWIN__
387 ((wxFrameMSW
*)this)->m_iconized
= (::IsIconic(GetHwnd()) != 0);
393 bool wxFrameMSW::IsMaximized() const
395 #ifdef __WXMICROWIN__
399 return (::IsZoomed(GetHwnd()) != 0);
403 void wxFrameMSW::SetIcon(const wxIcon
& icon
)
405 wxFrameBase::SetIcon(icon
);
407 #if defined(__WIN95__) && !defined(__WXMICROWIN__)
410 SendMessage(GetHwnd(), WM_SETICON
,
411 (WPARAM
)TRUE
, (LPARAM
)(HICON
) m_icon
.GetHICON());
416 // generate an artificial resize event
417 void wxFrameMSW::SendSizeEvent()
421 ::GetWindowRect(GetHwnd(), &r
);
423 if ( !::GetWindowRect(GetHwnd(), &r
) )
425 wxLogLastError(_T("GetWindowRect"));
431 (void)::PostMessage(GetHwnd(), WM_SIZE
,
432 IsMaximized() ? SIZE_MAXIMIZED
: SIZE_RESTORED
,
433 MAKELPARAM(r
.right
- r
.left
, r
.bottom
- r
.top
));
438 wxStatusBar
*wxFrameMSW::OnCreateStatusBar(int number
,
441 const wxString
& name
)
443 wxStatusBar
*statusBar
= NULL
;
445 #if wxUSE_NATIVE_STATUSBAR
446 if ( !UsesNativeStatusBar() )
448 statusBar
= (wxStatusBar
*)new wxStatusBarGeneric(this, id
, style
);
453 statusBar
= new wxStatusBar(this, id
, style
, name
);
456 // Set the height according to the font and the border size
457 wxClientDC
dc(statusBar
);
458 dc
.SetFont(statusBar
->GetFont());
461 dc
.GetTextExtent(_T("X"), NULL
, &y
);
463 int height
= (int)( (11*y
)/10 + 2*statusBar
->GetBorderY());
465 statusBar
->SetSize(-1, -1, -1, height
);
467 statusBar
->SetFieldsCount(number
);
472 void wxFrameMSW::PositionStatusBar()
474 if ( !m_frameStatusBar
)
478 GetClientSize(&w
, &h
);
480 m_frameStatusBar
->GetSize(&sw
, &sh
);
482 // Since we wish the status bar to be directly under the client area,
483 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
484 m_frameStatusBar
->SetSize(0, h
, w
, sh
);
486 #endif // wxUSE_STATUSBAR
488 #if wxUSE_MENUS_NATIVE
490 void wxFrameMSW::AttachMenuBar(wxMenuBar
*menubar
)
492 wxFrameBase::AttachMenuBar(menubar
);
496 // actually remove the menu from the frame
497 m_hMenu
= (WXHMENU
)0;
498 InternalSetMenuBar();
500 else // set new non NULL menu bar
502 // Can set a menubar several times.
503 if ( menubar
->GetHMenu() )
505 m_hMenu
= menubar
->GetHMenu();
509 m_hMenu
= menubar
->Create();
513 wxFAIL_MSG( _T("failed to create menu bar") );
518 InternalSetMenuBar();
522 void wxFrameMSW::InternalSetMenuBar()
524 #ifndef __WXMICROWIN__
525 if ( !::SetMenu(GetHwnd(), (HMENU
)m_hMenu
) )
527 wxLogLastError(wxT("SetMenu"));
532 #endif // wxUSE_MENUS_NATIVE
534 // Responds to colour changes, and passes event on to children.
535 void wxFrameMSW::OnSysColourChanged(wxSysColourChangedEvent
& event
)
537 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
541 if ( m_frameStatusBar
)
543 wxSysColourChangedEvent event2
;
544 event2
.SetEventObject( m_frameStatusBar
);
545 m_frameStatusBar
->GetEventHandler()->ProcessEvent(event2
);
547 #endif // wxUSE_STATUSBAR
549 // Propagate the event to the non-top-level children
550 wxWindow::OnSysColourChanged(event
);
553 // Pass TRUE to show full screen, FALSE to restore.
554 bool wxFrameMSW::ShowFullScreen(bool show
, long style
)
561 m_fsIsShowing
= TRUE
;
565 wxToolBar
*theToolBar
= GetToolBar();
567 theToolBar
->GetSize(NULL
, &m_fsToolBarHeight
);
569 // zap the toolbar, menubar, and statusbar
571 if ((style
& wxFULLSCREEN_NOTOOLBAR
) && theToolBar
)
573 theToolBar
->SetSize(-1,0);
574 theToolBar
->Show(FALSE
);
576 #endif // wxUSE_TOOLBAR
578 #ifndef __WXMICROWIN__
579 if (style
& wxFULLSCREEN_NOMENUBAR
)
580 SetMenu((HWND
)GetHWND(), (HMENU
) NULL
);
584 wxStatusBar
*theStatusBar
= GetStatusBar();
586 theStatusBar
->GetSize(NULL
, &m_fsStatusBarHeight
);
588 // Save the number of fields in the statusbar
589 if ((style
& wxFULLSCREEN_NOSTATUSBAR
) && theStatusBar
)
591 //m_fsStatusBarFields = theStatusBar->GetFieldsCount();
592 //SetStatusBar((wxStatusBar*) NULL);
593 //delete theStatusBar;
594 theStatusBar
->Show(FALSE
);
597 m_fsStatusBarFields
= 0;
598 #endif // wxUSE_STATUSBAR
600 // zap the frame borders
602 // save the 'normal' window style
603 m_fsOldWindowStyle
= GetWindowLong((HWND
)GetHWND(), GWL_STYLE
);
605 // save the old position, width & height, maximize state
606 m_fsOldSize
= GetRect();
607 m_fsIsMaximized
= IsMaximized();
609 // decide which window style flags to turn off
610 LONG newStyle
= m_fsOldWindowStyle
;
613 if (style
& wxFULLSCREEN_NOBORDER
)
614 offFlags
|= WS_BORDER
;
615 if (style
& wxFULLSCREEN_NOCAPTION
)
616 offFlags
|= (WS_CAPTION
| WS_SYSMENU
);
618 newStyle
&= (~offFlags
);
620 // change our window style to be compatible with full-screen mode
621 SetWindowLong((HWND
)GetHWND(), GWL_STYLE
, newStyle
);
623 // resize to the size of the desktop
627 ::GetWindowRect(GetDesktopWindow(), &rect
);
628 width
= rect
.right
- rect
.left
;
629 height
= rect
.bottom
- rect
.top
;
631 SetSize(width
, height
);
633 // now flush the window style cache and actually go full-screen
634 SetWindowPos((HWND
)GetHWND(), HWND_TOP
, 0, 0, width
, height
, SWP_FRAMECHANGED
);
636 wxSizeEvent
event(wxSize(width
, height
), GetId());
637 GetEventHandler()->ProcessEvent(event
);
646 m_fsIsShowing
= FALSE
;
649 wxToolBar
*theToolBar
= GetToolBar();
651 // restore the toolbar, menubar, and statusbar
652 if (theToolBar
&& (m_fsStyle
& wxFULLSCREEN_NOTOOLBAR
))
654 theToolBar
->SetSize(-1, m_fsToolBarHeight
);
655 theToolBar
->Show(TRUE
);
657 #endif // wxUSE_TOOLBAR
660 if ( m_fsStyle
& wxFULLSCREEN_NOSTATUSBAR
)
662 //CreateStatusBar(m_fsStatusBarFields);
665 GetStatusBar()->Show(TRUE
);
669 #endif // wxUSE_STATUSBAR
671 #ifndef __WXMICROWIN__
672 if ((m_fsStyle
& wxFULLSCREEN_NOMENUBAR
) && (m_hMenu
!= 0))
673 SetMenu((HWND
)GetHWND(), (HMENU
)m_hMenu
);
676 Maximize(m_fsIsMaximized
);
677 SetWindowLong((HWND
)GetHWND(),GWL_STYLE
, m_fsOldWindowStyle
);
678 SetWindowPos((HWND
)GetHWND(),HWND_TOP
,m_fsOldSize
.x
, m_fsOldSize
.y
,
679 m_fsOldSize
.width
, m_fsOldSize
.height
, SWP_FRAMECHANGED
);
690 bool wxFrameMSW::MSWCreate(int id
, wxWindow
*parent
, const wxChar
*wclass
, wxWindow
*wx_win
, const wxChar
*title
,
691 int x
, int y
, int width
, int height
, long style
)
694 m_defaultIcon
= (WXHICON
) (wxSTD_FRAME_ICON
? wxSTD_FRAME_ICON
: wxDEFAULT_FRAME_ICON
);
696 // If child windows aren't properly drawn initially, WS_CLIPCHILDREN
697 // could be the culprit. But without it, you can get a lot of flicker.
700 if ( style
& wxCAPTION
)
702 if ( style
& wxFRAME_TOOL_WINDOW
)
703 msflags
|= WS_POPUPWINDOW
;
705 msflags
|= WS_OVERLAPPED
;
712 if (style
& wxMINIMIZE_BOX
)
713 msflags
|= WS_MINIMIZEBOX
;
714 if (style
& wxMAXIMIZE_BOX
)
715 msflags
|= WS_MAXIMIZEBOX
;
716 if (style
& wxTHICK_FRAME
)
717 msflags
|= WS_THICKFRAME
;
718 if (style
& wxSYSTEM_MENU
)
719 msflags
|= WS_SYSMENU
;
720 if ( style
& wxMINIMIZE
)
721 msflags
|= WS_MINIMIZE
;
722 if (style
& wxMAXIMIZE
)
723 msflags
|= WS_MAXIMIZE
;
724 if (style
& wxCAPTION
)
725 msflags
|= WS_CAPTION
;
726 if (style
& wxCLIP_CHILDREN
)
727 msflags
|= WS_CLIPCHILDREN
;
729 // Keep this in wxFrameMSW because it saves recoding this function
731 #if wxUSE_ITSY_BITSY && !defined(__WIN32__)
732 if (style
& wxTINY_CAPTION_VERT
)
733 msflags
|= IBS_VERTCAPTION
;
734 if (style
& wxTINY_CAPTION_HORIZ
)
735 msflags
|= IBS_HORZCAPTION
;
737 if (style
& wxTINY_CAPTION_VERT
)
738 msflags
|= WS_CAPTION
;
739 if (style
& wxTINY_CAPTION_HORIZ
)
740 msflags
|= WS_CAPTION
;
742 if ((style
& wxTHICK_FRAME
) == 0)
743 msflags
|= WS_BORDER
;
745 WXDWORD extendedStyle
= MakeExtendedStyle(style
);
747 // make all frames appear in the win9x shell taskbar unless
748 // wxFRAME_TOOL_WINDOW or wxFRAME_NO_TASKBAR is given - without giving them
749 // WS_EX_APPWINDOW style, the child (i.e. owned) frames wouldn't appear in it
750 #if !defined(__WIN16__) && !defined(__SC__)
751 if ( (style
& wxFRAME_TOOL_WINDOW
) ||
752 (style
& wxFRAME_NO_TASKBAR
) )
753 extendedStyle
|= WS_EX_TOOLWINDOW
;
754 else if ( !(style
& wxFRAME_NO_TASKBAR
) )
755 extendedStyle
|= WS_EX_APPWINDOW
;
758 if (style
& wxSTAY_ON_TOP
)
759 extendedStyle
|= WS_EX_TOPMOST
;
762 if (m_exStyle
& wxFRAME_EX_CONTEXTHELP
)
763 extendedStyle
|= WS_EX_CONTEXTHELP
;
767 if ( !wxWindow::MSWCreate(id
, parent
, wclass
, wx_win
, title
, x
, y
, width
, height
,
768 msflags
, NULL
, extendedStyle
) )
771 // Seems to be necessary if we use WS_POPUP
772 // style instead of WS_OVERLAPPED
773 if (width
> -1 && height
> -1)
774 ::PostMessage(GetHwnd(), WM_SIZE
, SIZE_RESTORED
, MAKELPARAM(width
, height
));
779 // Default activation behaviour - set the focus for the first child
781 void wxFrameMSW::OnActivate(wxActivateEvent
& event
)
783 if ( event
.GetActive() )
785 // restore focus to the child which was last focused
786 wxLogTrace(_T("focus"), _T("wxFrameMSW %08x activated."), m_hWnd
);
788 wxWindow
*parent
= m_winLastFocused
? m_winLastFocused
->GetParent()
795 wxSetFocusToChild(parent
, &m_winLastFocused
);
799 // remember the last focused child if it is our child
800 m_winLastFocused
= FindFocus();
802 // so we NULL it out if it's a child from some other frame
803 wxWindow
*win
= m_winLastFocused
;
806 if ( win
->IsTopLevel() )
810 m_winLastFocused
= NULL
;
816 win
= win
->GetParent();
819 wxLogTrace(_T("focus"),
820 _T("wxFrameMSW %08x deactivated, last focused: %08x."),
822 m_winLastFocused
? GetHwndOf(m_winLastFocused
)
829 // ----------------------------------------------------------------------------
830 // tool/status bar stuff
831 // ----------------------------------------------------------------------------
835 wxToolBar
* wxFrameMSW::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
837 if ( wxFrameBase::CreateToolBar(style
, id
, name
) )
842 return m_frameToolBar
;
845 void wxFrameMSW::PositionToolBar()
848 ::GetClientRect(GetHwnd(), &rect
);
851 if ( GetStatusBar() )
853 int statusX
, statusY
;
854 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
855 rect
.bottom
-= statusY
;
857 #endif // wxUSE_STATUSBAR
859 if ( GetToolBar() && GetToolBar()->IsShown() )
862 GetToolBar()->GetSize(&tw
, &th
);
864 if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
873 // Use the 'real' MSW position here
874 GetToolBar()->SetSize(0, 0, tw
, th
, wxSIZE_NO_ADJUSTMENTS
);
877 #endif // wxUSE_TOOLBAR
879 // ----------------------------------------------------------------------------
880 // frame state (iconized/maximized/...)
881 // ----------------------------------------------------------------------------
883 // propagate our state change to all child frames: this allows us to emulate X
884 // Windows behaviour where child frames float independently of the parent one
885 // on the desktop, but are iconized/restored with it
886 void wxFrameMSW::IconizeChildFrames(bool bIconize
)
888 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
890 node
= node
->GetNext() )
892 wxWindow
*win
= node
->GetData();
894 // iconizing the frames with this style under Win95 shell puts them at
895 // the bottom of the screen (as the MDI children) instead of making
896 // them appear in the taskbar because they are, by virtue of this
897 // style, not managed by the taskbar - instead leave Windows take care
900 if ( win
->GetWindowStyle() & wxFRAME_TOOL_WINDOW
)
904 // the child MDI frames are a special case and should not be touched by
905 // the parent frame - instead, they are managed by the user
906 wxFrameMSW
*frame
= wxDynamicCast(win
, wxFrame
);
908 #if wxUSE_MDI_ARCHITECTURE
909 && !wxDynamicCast(frame
, wxMDIChildFrame
)
910 #endif // wxUSE_MDI_ARCHITECTURE
913 frame
->Iconize(bIconize
);
918 // ===========================================================================
919 // message processing
920 // ===========================================================================
922 // ---------------------------------------------------------------------------
924 // ---------------------------------------------------------------------------
926 bool wxFrameMSW::MSWTranslateMessage(WXMSG
* pMsg
)
928 if ( wxWindow::MSWTranslateMessage(pMsg
) )
931 #if wxUSE_MENUS && wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
932 // try the menu bar accels
933 wxMenuBar
*menuBar
= GetMenuBar();
937 const wxAcceleratorTable
& acceleratorTable
= menuBar
->GetAccelTable();
938 return acceleratorTable
.Translate(this, pMsg
);
941 #endif // wxUSE_MENUS && wxUSE_ACCEL
944 // ---------------------------------------------------------------------------
945 // our private (non virtual) message handlers
946 // ---------------------------------------------------------------------------
948 bool wxFrameMSW::HandlePaint()
951 if ( GetUpdateRect(GetHwnd(), &rect
, FALSE
) )
953 #ifndef __WXMICROWIN__
956 HICON hIcon
= m_icon
.Ok() ? GetHiconOf(m_icon
)
957 : (HICON
)m_defaultIcon
;
959 // Hold a pointer to the dc so long as the OnPaint() message
960 // is being processed
962 HDC hdc
= ::BeginPaint(GetHwnd(), &ps
);
964 // Erase background before painting or we get white background
965 MSWDefWindowProc(WM_ICONERASEBKGND
, (WORD
)(LONG
)ps
.hdc
, 0L);
970 ::GetClientRect(GetHwnd(), &rect
);
972 // FIXME: why hardcoded?
973 static const int icon_width
= 32;
974 static const int icon_height
= 32;
976 int icon_x
= (int)((rect
.right
- icon_width
)/2);
977 int icon_y
= (int)((rect
.bottom
- icon_height
)/2);
979 ::DrawIcon(hdc
, icon_x
, icon_y
, hIcon
);
982 ::EndPaint(GetHwnd(), &ps
);
989 return wxWindow::HandlePaint();
994 // nothing to paint - processed
999 bool wxFrameMSW::HandleSize(int x
, int y
, WXUINT id
)
1001 bool processed
= FALSE
;
1002 #ifndef __WXMICROWIN__
1007 // only do it it if we were iconized before, otherwise resizing the
1008 // parent frame has a curious side effect of bringing it under it's
1013 // restore all child frames too
1014 IconizeChildFrames(FALSE
);
1016 (void)SendIconizeEvent(FALSE
);
1020 case SIZEFULLSCREEN
:
1025 // iconize all child frames too
1026 IconizeChildFrames(TRUE
);
1028 (void)SendIconizeEvent();
1038 PositionStatusBar();
1039 #endif // wxUSE_STATUSBAR
1043 #endif // wxUSE_TOOLBAR
1045 wxSizeEvent
event(wxSize(x
, y
), m_windowId
);
1046 event
.SetEventObject( this );
1047 processed
= GetEventHandler()->ProcessEvent(event
);
1053 bool wxFrameMSW::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
1057 // In case it's e.g. a toolbar.
1058 wxWindow
*win
= wxFindWinFromHandle(control
);
1060 return win
->MSWCommand(cmd
, id
);
1063 // handle here commands from menus and accelerators
1064 if ( cmd
== 0 || cmd
== 1 )
1066 #if wxUSE_MENUS_NATIVE
1067 if ( wxCurrentPopupMenu
)
1069 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
1070 wxCurrentPopupMenu
= NULL
;
1072 return popupMenu
->MSWCommand(cmd
, id
);
1074 #endif // wxUSE_MENUS_NATIVE
1076 if ( ProcessCommand(id
) )
1085 bool wxFrameMSW::HandleMenuSelect(WXWORD nItem
, WXWORD flags
, WXHMENU hMenu
)
1088 if ( flags
== 0xFFFF && hMenu
== 0 )
1090 // menu was removed from screen
1093 #ifndef __WXMICROWIN__
1094 else if ( !(flags
& MF_POPUP
) && !(flags
& MF_SEPARATOR
) )
1102 // don't give hints for separators (doesn't make sense) nor for the
1103 // items opening popup menus (they don't have them anyhow) but do clear
1104 // the status line - otherwise, we would be left with the help message
1105 // for the previous item which doesn't apply any more
1106 wxStatusBar
*statbar
= GetStatusBar();
1109 statbar
->SetStatusText(wxEmptyString
);
1111 #endif // wxUSE_STATUSBAR
1116 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, item
);
1117 event
.SetEventObject( this );
1119 return GetEventHandler()->ProcessEvent(event
);
1122 // ---------------------------------------------------------------------------
1123 // the window proc for wxFrameMSW
1124 // ---------------------------------------------------------------------------
1126 long wxFrameMSW::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1129 bool processed
= FALSE
;
1134 // if we can't close, tell the system that we processed the
1135 // message - otherwise it would close us
1136 processed
= !Close();
1143 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
1146 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
1150 #ifndef __WXMICROWIN__
1155 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
1157 processed
= HandleMenuSelect(item
, flags
, hmenu
);
1163 processed
= HandlePaint();
1166 #ifndef __WXMICROWIN__
1167 case WM_QUERYDRAGICON
:
1169 HICON hIcon
= m_icon
.Ok() ? GetHiconOf(m_icon
)
1170 : (HICON
)(m_defaultIcon
);
1172 processed
= rc
!= 0;
1178 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
1183 rc
= wxWindow::MSWWindowProc(message
, wParam
, lParam
);