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"
37 #include "wx/dialog.h"
38 #include "wx/settings.h"
39 #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 // ----------------------------------------------------------------------------
59 // ----------------------------------------------------------------------------
61 extern wxWindowList wxModelessWindows
;
62 extern wxList WXDLLEXPORT wxPendingDelete
;
63 extern const wxChar
*wxFrameClassName
;
64 extern wxMenu
*wxCurrentPopupMenu
;
66 // ----------------------------------------------------------------------------
68 // ----------------------------------------------------------------------------
70 BEGIN_EVENT_TABLE(wxFrame
, wxFrameBase
)
71 EVT_ACTIVATE(wxFrame::OnActivate
)
72 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged
)
75 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxWindow
)
77 // ============================================================================
79 // ============================================================================
81 // ----------------------------------------------------------------------------
82 // static class members
83 // ----------------------------------------------------------------------------
85 #if wxUSE_NATIVE_STATUSBAR
86 bool wxFrame::m_useNativeStatusBar
= TRUE
;
88 bool wxFrame::m_useNativeStatusBar
= FALSE
;
91 // ----------------------------------------------------------------------------
92 // creation/destruction
93 // ----------------------------------------------------------------------------
103 // Data to save/restore when calling ShowFullScreen
105 m_fsOldWindowStyle
= 0;
106 m_fsStatusBarFields
= 0;
107 m_fsStatusBarHeight
= 0;
108 m_fsToolBarHeight
= 0;
110 m_fsIsMaximized
= FALSE
;
111 m_fsIsShowing
= FALSE
;
114 bool wxFrame::Create(wxWindow
*parent
,
116 const wxString
& title
,
120 const wxString
& name
)
123 m_windowStyle
= style
;
124 m_frameMenuBar
= NULL
;
125 m_frameToolBar
= NULL
;
126 m_frameStatusBar
= NULL
;
128 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
133 m_windowId
= (int)NewControlId();
135 if (parent
) parent
->AddChild(this);
144 // we pass NULL as parent to MSWCreate because frames with parents behave
145 // very strangely under Win95 shell
146 // Alteration by JACS: keep normal Windows behaviour (float on top of parent)
148 if ((m_windowStyle
& wxFRAME_FLOAT_ON_PARENT
) == 0)
152 wxTopLevelWindows
.Append(this);
154 MSWCreate(m_windowId
, parent
, wxFrameClassName
, this, title
,
155 x
, y
, width
, height
, style
);
157 wxModelessWindows
.Append(this);
163 m_isBeingDeleted
= TRUE
;
164 wxTopLevelWindows
.DeleteObject(this);
168 if (wxTheApp
&& (wxTopLevelWindows
.Number() == 0))
170 wxTheApp
->SetTopWindow(NULL
);
172 if (wxTheApp
->GetExitOnFrameDelete())
178 wxModelessWindows
.DeleteObject(this);
180 // For some reason, wxWindows can activate another task altogether
181 // when a frame is destroyed after a modal dialog has been invoked.
182 // Try to bring the parent to the top.
183 // MT:Only do this if this frame is currently the active window, else weird
184 // things start to happen
185 if ( wxGetActiveWindow() == this )
186 if (GetParent() && GetParent()->GetHWND())
187 ::BringWindowToTop((HWND
) GetParent()->GetHWND());
190 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
191 void wxFrame::DoGetClientSize(int *x
, int *y
) const
194 ::GetClientRect(GetHwnd(), &rect
);
197 if ( GetStatusBar() && GetStatusBar()->IsShown() )
199 int statusX
, statusY
;
200 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
201 rect
.bottom
-= statusY
;
203 #endif // wxUSE_STATUSBAR
205 wxPoint
pt(GetClientAreaOrigin());
215 // Set the client size (i.e. leave the calculation of borders etc.
217 void wxFrame::DoSetClientSize(int width
, int height
)
219 HWND hWnd
= GetHwnd();
222 ::GetClientRect(hWnd
, &rect
);
225 GetWindowRect(hWnd
, &rect2
);
227 // Find the difference between the entire window (title bar and all)
228 // and the client area; add this to the new client size to move the
230 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
231 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
234 if ( GetStatusBar() && GetStatusBar()->IsShown())
236 int statusX
, statusY
;
237 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
238 actual_height
+= statusY
;
240 #endif // wxUSE_STATUSBAR
242 wxPoint
pt(GetClientAreaOrigin());
243 actual_width
+= pt
.y
;
244 actual_height
+= pt
.x
;
247 point
.x
= rect2
.left
;
250 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)TRUE
);
252 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
253 event
.SetEventObject( this );
254 GetEventHandler()->ProcessEvent(event
);
257 void wxFrame::DoGetSize(int *width
, int *height
) const
260 GetWindowRect(GetHwnd(), &rect
);
261 *width
= rect
.right
- rect
.left
;
262 *height
= rect
.bottom
- rect
.top
;
265 void wxFrame::DoGetPosition(int *x
, int *y
) const
268 GetWindowRect(GetHwnd(), &rect
);
277 // ----------------------------------------------------------------------------
278 // variations around ::ShowWindow()
279 // ----------------------------------------------------------------------------
281 void wxFrame::DoShowWindow(int nShowCmd
)
283 ::ShowWindow(GetHwnd(), nShowCmd
);
285 m_iconized
= nShowCmd
== SW_MINIMIZE
;
288 bool wxFrame::Show(bool show
)
290 DoShowWindow(show
? SW_SHOW
: SW_HIDE
);
294 ::BringWindowToTop(GetHwnd());
296 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, m_windowId
);
297 event
.SetEventObject( this );
298 GetEventHandler()->ProcessEvent(event
);
302 // Try to highlight the correct window (the parent)
305 HWND hWndParent
= GetHwndOf(GetParent());
307 ::BringWindowToTop(hWndParent
);
314 void wxFrame::Iconize(bool iconize
)
316 DoShowWindow(iconize
? SW_MINIMIZE
: SW_RESTORE
);
319 void wxFrame::Maximize(bool maximize
)
321 DoShowWindow(maximize
? SW_MAXIMIZE
: SW_RESTORE
);
324 void wxFrame::Restore()
326 DoShowWindow(SW_RESTORE
);
329 bool wxFrame::IsIconized() const
331 ((wxFrame
*)this)->m_iconized
= (::IsIconic(GetHwnd()) != 0);
336 bool wxFrame::IsMaximized() const
338 return (::IsZoomed(GetHwnd()) != 0);
341 void wxFrame::SetIcon(const wxIcon
& icon
)
343 wxFrameBase::SetIcon(icon
);
345 #if defined(__WIN95__)
348 SendMessage(GetHwnd(), WM_SETICON
,
349 (WPARAM
)TRUE
, (LPARAM
)(HICON
) m_icon
.GetHICON());
355 wxStatusBar
*wxFrame::OnCreateStatusBar(int number
,
358 const wxString
& name
)
360 wxStatusBar
*statusBar
= NULL
;
362 #if wxUSE_NATIVE_STATUSBAR
363 if ( UsesNativeStatusBar() )
365 statusBar
= (wxStatusBar
*)new wxStatusBar95(this, id
, style
);
367 statusBar
->SetFieldsCount(number
);
372 statusBar
= (wxStatusBar
*)new wxStatusBarGeneric(this, id
, style
, name
);
374 // Set the height according to the font and the border size
375 wxClientDC
dc(statusBar
);
376 dc
.SetFont(statusBar
->GetFont());
379 dc
.GetTextExtent(_T("X"), NULL
, &y
);
381 int height
= (int)( (11*y
)/10 + 2*statusBar
->GetBorderY());
383 statusBar
->SetSize(-1, -1, -1, height
);
385 statusBar
->SetFieldsCount(number
);
391 void wxFrame::PositionStatusBar()
393 if ( !m_frameStatusBar
)
396 // native status bar positions itself, but we must forward the WM_SIZE
398 #if wxUSE_NATIVE_STATUSBAR
399 wxStatusBar95
*sb
= wxDynamicCast(m_frameStatusBar
, wxStatusBar95
);
402 wxSizeEvent
event(GetSize(), sb
->GetId());
403 event
.SetEventObject(sb
);
405 sb
->GetEventHandler()->ProcessEvent(event
);
408 #endif // wxUSE_NATIVE_STATUSBAR
411 GetClientSize(&w
, &h
);
413 m_frameStatusBar
->GetSize(&sw
, &sh
);
415 // Since we wish the status bar to be directly under the client area,
416 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
417 m_frameStatusBar
->SetSize(0, h
, w
, sh
);
420 #endif // wxUSE_STATUSBAR
422 void wxFrame::DetachMenuBar()
426 m_frameMenuBar
->Detach();
427 m_frameMenuBar
= NULL
;
431 void wxFrame::SetMenuBar(wxMenuBar
*menu_bar
)
439 m_frameMenuBar
= NULL
;
441 // Can set a menubar several times.
442 // TODO: how to prevent a memory leak if you have a currently-unattached
443 // menubar? wxWindows assumes that the frame will delete the menu (otherwise
444 // there are problems for MDI).
445 if (menu_bar
->GetHMenu())
447 m_hMenu
= menu_bar
->GetHMenu();
453 m_hMenu
= menu_bar
->Create();
459 InternalSetMenuBar();
461 m_frameMenuBar
= menu_bar
;
462 menu_bar
->Attach(this);
464 #if 0 // Old code that assumes only one call of SetMenuBar per frame.
471 wxCHECK_RET( !menu_bar
->GetFrame(), wxT("this menubar is already attached") );
474 delete m_frameMenuBar
;
476 m_hMenu
= menu_bar
->Create();
481 InternalSetMenuBar();
483 m_frameMenuBar
= menu_bar
;
484 menu_bar
->Attach(this);
488 void wxFrame::InternalSetMenuBar()
490 if ( !::SetMenu(GetHwnd(), (HMENU
)m_hMenu
) )
492 wxLogLastError("SetMenu");
496 // Responds to colour changes, and passes event on to children.
497 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
499 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
502 if ( m_frameStatusBar
)
504 wxSysColourChangedEvent event2
;
505 event2
.SetEventObject( m_frameStatusBar
);
506 m_frameStatusBar
->GetEventHandler()->ProcessEvent(event2
);
509 // Propagate the event to the non-top-level children
510 wxWindow::OnSysColourChanged(event
);
513 // Pass TRUE to show full screen, FALSE to restore.
514 bool wxFrame::ShowFullScreen(bool show
, long style
)
521 m_fsIsShowing
= TRUE
;
524 wxToolBar
*theToolBar
= GetToolBar();
525 wxStatusBar
*theStatusBar
= GetStatusBar();
530 theToolBar
->GetSize(&dummyWidth
, &m_fsToolBarHeight
);
532 theStatusBar
->GetSize(&dummyWidth
, &m_fsStatusBarHeight
);
534 // zap the toolbar, menubar, and statusbar
536 if ((style
& wxFULLSCREEN_NOTOOLBAR
) && theToolBar
)
538 theToolBar
->SetSize(-1,0);
539 theToolBar
->Show(FALSE
);
542 if (style
& wxFULLSCREEN_NOMENUBAR
)
543 SetMenu((HWND
)GetHWND(), (HMENU
) NULL
);
545 // Save the number of fields in the statusbar
546 if ((style
& wxFULLSCREEN_NOSTATUSBAR
) && theStatusBar
)
548 m_fsStatusBarFields
= theStatusBar
->GetFieldsCount();
549 SetStatusBar((wxStatusBar
*) NULL
);
553 m_fsStatusBarFields
= 0;
555 // zap the frame borders
557 // save the 'normal' window style
558 m_fsOldWindowStyle
= GetWindowLong((HWND
)GetHWND(), GWL_STYLE
);
560 // save the old position, width & height, maximize state
561 m_fsOldSize
= GetRect();
562 m_fsIsMaximized
= IsMaximized();
564 // decide which window style flags to turn off
565 LONG newStyle
= m_fsOldWindowStyle
;
568 if (style
& wxFULLSCREEN_NOBORDER
)
569 offFlags
|= WS_BORDER
;
570 if (style
& wxFULLSCREEN_NOCAPTION
)
571 offFlags
|= (WS_CAPTION
| WS_SYSMENU
);
573 newStyle
&= (~offFlags
);
575 // change our window style to be compatible with full-screen mode
576 SetWindowLong((HWND
)GetHWND(), GWL_STYLE
, newStyle
);
578 // resize to the size of the desktop
582 ::GetWindowRect(GetDesktopWindow(), &rect
);
583 width
= rect
.right
- rect
.left
;
584 height
= rect
.bottom
- rect
.top
;
586 SetSize(width
, height
);
588 // now flush the window style cache and actually go full-screen
589 SetWindowPos((HWND
)GetHWND(), HWND_TOP
, 0, 0, width
, height
, SWP_FRAMECHANGED
);
591 wxSizeEvent
event(wxSize(width
, height
), GetId());
592 GetEventHandler()->ProcessEvent(event
);
601 m_fsIsShowing
= FALSE
;
603 wxToolBar
*theToolBar
= GetToolBar();
605 // restore the toolbar, menubar, and statusbar
606 if (theToolBar
&& (m_fsStyle
& wxFULLSCREEN_NOTOOLBAR
))
608 theToolBar
->SetSize(-1, m_fsToolBarHeight
);
609 theToolBar
->Show(TRUE
);
612 if ((m_fsStyle
& wxFULLSCREEN_NOSTATUSBAR
) && (m_fsStatusBarFields
> 0))
614 CreateStatusBar(m_fsStatusBarFields
);
618 if ((m_fsStyle
& wxFULLSCREEN_NOMENUBAR
) && (m_hMenu
!= 0))
619 SetMenu((HWND
)GetHWND(), (HMENU
)m_hMenu
);
621 Maximize(m_fsIsMaximized
);
622 SetWindowLong((HWND
)GetHWND(),GWL_STYLE
, m_fsOldWindowStyle
);
623 SetWindowPos((HWND
)GetHWND(),HWND_TOP
,m_fsOldSize
.x
, m_fsOldSize
.y
,
624 m_fsOldSize
.width
, m_fsOldSize
.height
, SWP_FRAMECHANGED
);
635 bool wxFrame::MSWCreate(int id
, wxWindow
*parent
, const wxChar
*wclass
, wxWindow
*wx_win
, const wxChar
*title
,
636 int x
, int y
, int width
, int height
, long style
)
639 m_defaultIcon
= (WXHICON
) (wxSTD_FRAME_ICON
? wxSTD_FRAME_ICON
: wxDEFAULT_FRAME_ICON
);
641 // If child windows aren't properly drawn initially, WS_CLIPCHILDREN
642 // could be the culprit. But without it, you can get a lot of flicker.
645 if ((style
& wxCAPTION
) == wxCAPTION
)
646 msflags
= WS_OVERLAPPED
;
650 if (style
& wxMINIMIZE_BOX
)
651 msflags
|= WS_MINIMIZEBOX
;
652 if (style
& wxMAXIMIZE_BOX
)
653 msflags
|= WS_MAXIMIZEBOX
;
654 if (style
& wxTHICK_FRAME
)
655 msflags
|= WS_THICKFRAME
;
656 if (style
& wxSYSTEM_MENU
)
657 msflags
|= WS_SYSMENU
;
658 if ((style
& wxMINIMIZE
) || (style
& wxICONIZE
))
659 msflags
|= WS_MINIMIZE
;
660 if (style
& wxMAXIMIZE
)
661 msflags
|= WS_MAXIMIZE
;
662 if (style
& wxCAPTION
)
663 msflags
|= WS_CAPTION
;
664 if (style
& wxCLIP_CHILDREN
)
665 msflags
|= WS_CLIPCHILDREN
;
667 // Keep this in wxFrame because it saves recoding this function
669 #if wxUSE_ITSY_BITSY && !defined(__WIN32__)
670 if (style
& wxTINY_CAPTION_VERT
)
671 msflags
|= IBS_VERTCAPTION
;
672 if (style
& wxTINY_CAPTION_HORIZ
)
673 msflags
|= IBS_HORZCAPTION
;
675 if (style
& wxTINY_CAPTION_VERT
)
676 msflags
|= WS_CAPTION
;
677 if (style
& wxTINY_CAPTION_HORIZ
)
678 msflags
|= WS_CAPTION
;
680 if ((style
& wxTHICK_FRAME
) == 0)
681 msflags
|= WS_BORDER
;
683 WXDWORD extendedStyle
= MakeExtendedStyle(style
);
685 #if !defined(__WIN16__) && !defined(__SC__)
686 if (style
& wxFRAME_TOOL_WINDOW
)
687 extendedStyle
|= WS_EX_TOOLWINDOW
;
690 if (style
& wxSTAY_ON_TOP
)
691 extendedStyle
|= WS_EX_TOPMOST
;
694 if ( !wxWindow::MSWCreate(id
, parent
, wclass
, wx_win
, title
, x
, y
, width
, height
,
695 msflags
, NULL
, extendedStyle
) )
698 // Seems to be necessary if we use WS_POPUP
699 // style instead of WS_OVERLAPPED
700 if (width
> -1 && height
> -1)
701 ::PostMessage(GetHwnd(), WM_SIZE
, SIZE_RESTORED
, MAKELPARAM(width
, height
));
706 // Default activation behaviour - set the focus for the first child
708 void wxFrame::OnActivate(wxActivateEvent
& event
)
710 if ( !event
.GetActive() )
717 wxLogTrace(_T("focus"), _T("wxFrame %08x activated."), m_hWnd
);
719 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
721 node
= node
->GetNext() )
723 // FIXME all this is totally bogus - we need to do the same as wxPanel,
724 // but how to do it without duplicating the code?
727 wxWindow
*child
= node
->GetData();
729 if ( !child
->IsTopLevel()
731 && !wxDynamicCast(child
, wxToolBar
)
732 #endif // wxUSE_TOOLBAR
734 && !wxDynamicCast(child
, wxStatusBar
)
735 #endif // wxUSE_STATUSBAR
744 // ----------------------------------------------------------------------------
745 // tool/status bar stuff
746 // ----------------------------------------------------------------------------
750 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
752 if ( wxFrameBase::CreateToolBar(style
, id
, name
) )
757 return m_frameToolBar
;
760 void wxFrame::PositionToolBar()
763 ::GetClientRect(GetHwnd(), &rect
);
766 if ( GetStatusBar() )
768 int statusX
, statusY
;
769 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
770 rect
.bottom
-= statusY
;
772 #endif // wxUSE_STATUSBAR
774 if ( GetToolBar() && GetToolBar()->IsShown() )
777 GetToolBar()->GetSize(&tw
, &th
);
779 if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
788 // Use the 'real' MSW position here
789 GetToolBar()->SetSize(0, 0, tw
, th
, wxSIZE_NO_ADJUSTMENTS
);
792 #endif // wxUSE_TOOLBAR
794 // ----------------------------------------------------------------------------
795 // frame state (iconized/maximized/...)
796 // ----------------------------------------------------------------------------
798 // propagate our state change to all child frames: this allows us to emulate X
799 // Windows behaviour where child frames float independently of the parent one
800 // on the desktop, but are iconized/restored with it
801 void wxFrame::IconizeChildFrames(bool bIconize
)
803 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
805 node
= node
->GetNext() )
807 wxWindow
*win
= node
->GetData();
809 // the child MDI frames are a special case and should not be touched by
810 // the parent frame - instead, they are managed by the user
811 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
812 if ( frame
&& !wxDynamicCast(frame
, wxMDIChildFrame
) )
814 frame
->Iconize(bIconize
);
819 // ===========================================================================
820 // message processing
821 // ===========================================================================
823 // ---------------------------------------------------------------------------
825 // ---------------------------------------------------------------------------
827 bool wxFrame::MSWTranslateMessage(WXMSG
* pMsg
)
829 if ( wxWindow::MSWTranslateMessage(pMsg
) )
832 // try the menu bar accels
833 wxMenuBar
*menuBar
= GetMenuBar();
837 const wxAcceleratorTable
& acceleratorTable
= menuBar
->GetAccelTable();
838 return acceleratorTable
.Translate(this, pMsg
);
841 // ---------------------------------------------------------------------------
842 // our private (non virtual) message handlers
843 // ---------------------------------------------------------------------------
845 bool wxFrame::HandlePaint()
848 if ( GetUpdateRect(GetHwnd(), &rect
, FALSE
) )
852 HICON hIcon
= m_icon
.Ok() ? GetHiconOf(m_icon
)
853 : (HICON
)m_defaultIcon
;
855 // Hold a pointer to the dc so long as the OnPaint() message
856 // is being processed
858 HDC hdc
= ::BeginPaint(GetHwnd(), &ps
);
860 // Erase background before painting or we get white background
861 MSWDefWindowProc(WM_ICONERASEBKGND
, (WORD
)(LONG
)ps
.hdc
, 0L);
866 ::GetClientRect(GetHwnd(), &rect
);
868 // FIXME: why hardcoded?
869 static const int icon_width
= 32;
870 static const int icon_height
= 32;
872 int icon_x
= (int)((rect
.right
- icon_width
)/2);
873 int icon_y
= (int)((rect
.bottom
- icon_height
)/2);
875 ::DrawIcon(hdc
, icon_x
, icon_y
, hIcon
);
878 ::EndPaint(GetHwnd(), &ps
);
884 return wxWindow::HandlePaint();
889 // nothing to paint - processed
894 bool wxFrame::HandleSize(int x
, int y
, WXUINT id
)
896 bool processed
= FALSE
;
901 // only do it it if we were iconized before, otherwise resizing the
902 // parent frame has a curious side effect of bringing it under it's
907 // restore all child frames too
908 IconizeChildFrames(FALSE
);
917 // iconize all child frames too
918 IconizeChildFrames(TRUE
);
929 wxSizeEvent
event(wxSize(x
, y
), m_windowId
);
930 event
.SetEventObject( this );
931 processed
= GetEventHandler()->ProcessEvent(event
);
937 bool wxFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
941 // In case it's e.g. a toolbar.
942 wxWindow
*win
= wxFindWinFromHandle(control
);
944 return win
->MSWCommand(cmd
, id
);
947 // handle here commands from menus and accelerators
948 if ( cmd
== 0 || cmd
== 1 )
950 if ( wxCurrentPopupMenu
)
952 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
953 wxCurrentPopupMenu
= NULL
;
955 return popupMenu
->MSWCommand(cmd
, id
);
958 if ( ProcessCommand(id
) )
967 bool wxFrame::HandleMenuSelect(WXWORD nItem
, WXWORD flags
, WXHMENU hMenu
)
970 if ( flags
== 0xFFFF && hMenu
== 0 )
972 // menu was removed from screen
975 else if ( !(flags
& MF_POPUP
) && !(flags
& MF_SEPARATOR
) )
981 // don't give hints for separators (doesn't make sense) nor for the
982 // items opening popup menus (they don't have them anyhow)
986 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, item
);
987 event
.SetEventObject( this );
989 return GetEventHandler()->ProcessEvent(event
);
992 // ---------------------------------------------------------------------------
993 // the window proc for wxFrame
994 // ---------------------------------------------------------------------------
996 long wxFrame::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
999 bool processed
= FALSE
;
1004 // if we can't close, tell the system that we processed the
1005 // message - otherwise it would close us
1006 processed
= !Close();
1013 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
1016 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
1024 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
1026 processed
= HandleMenuSelect(item
, flags
, hmenu
);
1031 processed
= HandlePaint();
1034 case WM_QUERYDRAGICON
:
1036 HICON hIcon
= m_icon
.Ok() ? GetHiconOf(m_icon
)
1037 : (HICON
)(m_defaultIcon
);
1039 processed
= rc
!= 0;
1044 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
1049 rc
= wxWindow::MSWWindowProc(message
, wParam
, lParam
);