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
)
397 GetClientSize(&w
, &h
);
399 m_frameStatusBar
->GetSize(&sw
, &sh
);
401 // Since we wish the status bar to be directly under the client area,
402 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
403 m_frameStatusBar
->SetSize(0, h
, w
, sh
);
405 #endif // wxUSE_STATUSBAR
407 void wxFrame::DetachMenuBar()
411 m_frameMenuBar
->Detach();
412 m_frameMenuBar
= NULL
;
416 void wxFrame::SetMenuBar(wxMenuBar
*menu_bar
)
424 m_frameMenuBar
= NULL
;
426 // Can set a menubar several times.
427 // TODO: how to prevent a memory leak if you have a currently-unattached
428 // menubar? wxWindows assumes that the frame will delete the menu (otherwise
429 // there are problems for MDI).
430 if (menu_bar
->GetHMenu())
432 m_hMenu
= menu_bar
->GetHMenu();
438 m_hMenu
= menu_bar
->Create();
444 InternalSetMenuBar();
446 m_frameMenuBar
= menu_bar
;
447 menu_bar
->Attach(this);
449 #if 0 // Old code that assumes only one call of SetMenuBar per frame.
456 wxCHECK_RET( !menu_bar
->GetFrame(), wxT("this menubar is already attached") );
459 delete m_frameMenuBar
;
461 m_hMenu
= menu_bar
->Create();
466 InternalSetMenuBar();
468 m_frameMenuBar
= menu_bar
;
469 menu_bar
->Attach(this);
473 void wxFrame::InternalSetMenuBar()
475 if ( !::SetMenu(GetHwnd(), (HMENU
)m_hMenu
) )
477 wxLogLastError("SetMenu");
481 // Responds to colour changes, and passes event on to children.
482 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
484 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
487 if ( m_frameStatusBar
)
489 wxSysColourChangedEvent event2
;
490 event2
.SetEventObject( m_frameStatusBar
);
491 m_frameStatusBar
->GetEventHandler()->ProcessEvent(event2
);
494 // Propagate the event to the non-top-level children
495 wxWindow::OnSysColourChanged(event
);
498 // Pass TRUE to show full screen, FALSE to restore.
499 bool wxFrame::ShowFullScreen(bool show
, long style
)
506 m_fsIsShowing
= TRUE
;
509 wxToolBar
*theToolBar
= GetToolBar();
510 wxStatusBar
*theStatusBar
= GetStatusBar();
515 theToolBar
->GetSize(&dummyWidth
, &m_fsToolBarHeight
);
517 theStatusBar
->GetSize(&dummyWidth
, &m_fsStatusBarHeight
);
519 // zap the toolbar, menubar, and statusbar
521 if ((style
& wxFULLSCREEN_NOTOOLBAR
) && theToolBar
)
523 theToolBar
->SetSize(-1,0);
524 theToolBar
->Show(FALSE
);
527 if (style
& wxFULLSCREEN_NOMENUBAR
)
528 SetMenu((HWND
)GetHWND(), (HMENU
) NULL
);
530 // Save the number of fields in the statusbar
531 if ((style
& wxFULLSCREEN_NOSTATUSBAR
) && theStatusBar
)
533 m_fsStatusBarFields
= theStatusBar
->GetFieldsCount();
534 SetStatusBar((wxStatusBar
*) NULL
);
538 m_fsStatusBarFields
= 0;
540 // zap the frame borders
542 // save the 'normal' window style
543 m_fsOldWindowStyle
= GetWindowLong((HWND
)GetHWND(), GWL_STYLE
);
545 // save the old position, width & height, maximize state
546 m_fsOldSize
= GetRect();
547 m_fsIsMaximized
= IsMaximized();
549 // decide which window style flags to turn off
550 LONG newStyle
= m_fsOldWindowStyle
;
553 if (style
& wxFULLSCREEN_NOBORDER
)
554 offFlags
|= WS_BORDER
;
555 if (style
& wxFULLSCREEN_NOCAPTION
)
556 offFlags
|= (WS_CAPTION
| WS_SYSMENU
);
558 newStyle
&= (~offFlags
);
560 // change our window style to be compatible with full-screen mode
561 SetWindowLong((HWND
)GetHWND(), GWL_STYLE
, newStyle
);
563 // resize to the size of the desktop
567 ::GetWindowRect(GetDesktopWindow(), &rect
);
568 width
= rect
.right
- rect
.left
;
569 height
= rect
.bottom
- rect
.top
;
571 SetSize(width
, height
);
573 // now flush the window style cache and actually go full-screen
574 SetWindowPos((HWND
)GetHWND(), HWND_TOP
, 0, 0, width
, height
, SWP_FRAMECHANGED
);
576 wxSizeEvent
event(wxSize(width
, height
), GetId());
577 GetEventHandler()->ProcessEvent(event
);
586 m_fsIsShowing
= FALSE
;
588 wxToolBar
*theToolBar
= GetToolBar();
590 // restore the toolbar, menubar, and statusbar
591 if (theToolBar
&& (m_fsStyle
& wxFULLSCREEN_NOTOOLBAR
))
593 theToolBar
->SetSize(-1, m_fsToolBarHeight
);
594 theToolBar
->Show(TRUE
);
597 if ((m_fsStyle
& wxFULLSCREEN_NOSTATUSBAR
) && (m_fsStatusBarFields
> 0))
599 CreateStatusBar(m_fsStatusBarFields
);
603 if ((m_fsStyle
& wxFULLSCREEN_NOMENUBAR
) && (m_hMenu
!= 0))
604 SetMenu((HWND
)GetHWND(), (HMENU
)m_hMenu
);
606 Maximize(m_fsIsMaximized
);
607 SetWindowLong((HWND
)GetHWND(),GWL_STYLE
, m_fsOldWindowStyle
);
608 SetWindowPos((HWND
)GetHWND(),HWND_TOP
,m_fsOldSize
.x
, m_fsOldSize
.y
,
609 m_fsOldSize
.width
, m_fsOldSize
.height
, SWP_FRAMECHANGED
);
620 bool wxFrame::MSWCreate(int id
, wxWindow
*parent
, const wxChar
*wclass
, wxWindow
*wx_win
, const wxChar
*title
,
621 int x
, int y
, int width
, int height
, long style
)
624 m_defaultIcon
= (WXHICON
) (wxSTD_FRAME_ICON
? wxSTD_FRAME_ICON
: wxDEFAULT_FRAME_ICON
);
626 // If child windows aren't properly drawn initially, WS_CLIPCHILDREN
627 // could be the culprit. But without it, you can get a lot of flicker.
630 if ((style
& wxCAPTION
) == wxCAPTION
)
631 msflags
= WS_OVERLAPPED
;
635 if (style
& wxMINIMIZE_BOX
)
636 msflags
|= WS_MINIMIZEBOX
;
637 if (style
& wxMAXIMIZE_BOX
)
638 msflags
|= WS_MAXIMIZEBOX
;
639 if (style
& wxTHICK_FRAME
)
640 msflags
|= WS_THICKFRAME
;
641 if (style
& wxSYSTEM_MENU
)
642 msflags
|= WS_SYSMENU
;
643 if ((style
& wxMINIMIZE
) || (style
& wxICONIZE
))
644 msflags
|= WS_MINIMIZE
;
645 if (style
& wxMAXIMIZE
)
646 msflags
|= WS_MAXIMIZE
;
647 if (style
& wxCAPTION
)
648 msflags
|= WS_CAPTION
;
649 if (style
& wxCLIP_CHILDREN
)
650 msflags
|= WS_CLIPCHILDREN
;
652 // Keep this in wxFrame because it saves recoding this function
654 #if wxUSE_ITSY_BITSY && !defined(__WIN32__)
655 if (style
& wxTINY_CAPTION_VERT
)
656 msflags
|= IBS_VERTCAPTION
;
657 if (style
& wxTINY_CAPTION_HORIZ
)
658 msflags
|= IBS_HORZCAPTION
;
660 if (style
& wxTINY_CAPTION_VERT
)
661 msflags
|= WS_CAPTION
;
662 if (style
& wxTINY_CAPTION_HORIZ
)
663 msflags
|= WS_CAPTION
;
665 if ((style
& wxTHICK_FRAME
) == 0)
666 msflags
|= WS_BORDER
;
668 WXDWORD extendedStyle
= MakeExtendedStyle(style
);
670 #if !defined(__WIN16__) && !defined(__SC__)
671 if (style
& wxFRAME_TOOL_WINDOW
)
672 extendedStyle
|= WS_EX_TOOLWINDOW
;
675 if (style
& wxSTAY_ON_TOP
)
676 extendedStyle
|= WS_EX_TOPMOST
;
679 if ( !wxWindow::MSWCreate(id
, parent
, wclass
, wx_win
, title
, x
, y
, width
, height
,
680 msflags
, NULL
, extendedStyle
) )
683 // Seems to be necessary if we use WS_POPUP
684 // style instead of WS_OVERLAPPED
685 if (width
> -1 && height
> -1)
686 ::PostMessage(GetHwnd(), WM_SIZE
, SIZE_RESTORED
, MAKELPARAM(width
, height
));
691 // Default activation behaviour - set the focus for the first child
693 void wxFrame::OnActivate(wxActivateEvent
& event
)
695 if ( !event
.GetActive() )
702 wxLogTrace(_T("focus"), _T("wxFrame %08x activated."), m_hWnd
);
704 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
706 node
= node
->GetNext() )
708 // FIXME all this is totally bogus - we need to do the same as wxPanel,
709 // but how to do it without duplicating the code?
712 wxWindow
*child
= node
->GetData();
714 if ( !child
->IsTopLevel()
716 && !wxDynamicCast(child
, wxToolBar
)
717 #endif // wxUSE_TOOLBAR
719 && !wxDynamicCast(child
, wxStatusBar
)
720 #endif // wxUSE_STATUSBAR
729 // ----------------------------------------------------------------------------
730 // tool/status bar stuff
731 // ----------------------------------------------------------------------------
735 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
737 if ( wxFrameBase::CreateToolBar(style
, id
, name
) )
742 return m_frameToolBar
;
745 void wxFrame::PositionToolBar()
748 ::GetClientRect(GetHwnd(), &rect
);
751 if ( GetStatusBar() )
753 int statusX
, statusY
;
754 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
755 rect
.bottom
-= statusY
;
757 #endif // wxUSE_STATUSBAR
759 if ( GetToolBar() && GetToolBar()->IsShown() )
762 GetToolBar()->GetSize(&tw
, &th
);
764 if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
773 // Use the 'real' MSW position here
774 GetToolBar()->SetSize(0, 0, tw
, th
, wxSIZE_NO_ADJUSTMENTS
);
777 #endif // wxUSE_TOOLBAR
779 // ----------------------------------------------------------------------------
780 // frame state (iconized/maximized/...)
781 // ----------------------------------------------------------------------------
783 // propagate our state change to all child frames: this allows us to emulate X
784 // Windows behaviour where child frames float independently of the parent one
785 // on the desktop, but are iconized/restored with it
786 void wxFrame::IconizeChildFrames(bool bIconize
)
788 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
790 node
= node
->GetNext() )
792 wxWindow
*win
= node
->GetData();
794 // the child MDI frames are a special case and should not be touched by
795 // the parent frame - instead, they are managed by the user
796 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
797 if ( frame
&& !wxDynamicCast(frame
, wxMDIChildFrame
) )
799 frame
->Iconize(bIconize
);
804 // ===========================================================================
805 // message processing
806 // ===========================================================================
808 // ---------------------------------------------------------------------------
810 // ---------------------------------------------------------------------------
812 bool wxFrame::MSWTranslateMessage(WXMSG
* pMsg
)
814 if ( wxWindow::MSWTranslateMessage(pMsg
) )
817 // try the menu bar accels
818 wxMenuBar
*menuBar
= GetMenuBar();
822 const wxAcceleratorTable
& acceleratorTable
= menuBar
->GetAccelTable();
823 return acceleratorTable
.Translate(this, pMsg
);
826 // ---------------------------------------------------------------------------
827 // our private (non virtual) message handlers
828 // ---------------------------------------------------------------------------
830 bool wxFrame::HandlePaint()
833 if ( GetUpdateRect(GetHwnd(), &rect
, FALSE
) )
837 HICON hIcon
= m_icon
.Ok() ? GetHiconOf(m_icon
)
838 : (HICON
)m_defaultIcon
;
840 // Hold a pointer to the dc so long as the OnPaint() message
841 // is being processed
843 HDC hdc
= ::BeginPaint(GetHwnd(), &ps
);
845 // Erase background before painting or we get white background
846 MSWDefWindowProc(WM_ICONERASEBKGND
, (WORD
)(LONG
)ps
.hdc
, 0L);
851 ::GetClientRect(GetHwnd(), &rect
);
853 // FIXME: why hardcoded?
854 static const int icon_width
= 32;
855 static const int icon_height
= 32;
857 int icon_x
= (int)((rect
.right
- icon_width
)/2);
858 int icon_y
= (int)((rect
.bottom
- icon_height
)/2);
860 ::DrawIcon(hdc
, icon_x
, icon_y
, hIcon
);
863 ::EndPaint(GetHwnd(), &ps
);
869 return wxWindow::HandlePaint();
874 // nothing to paint - processed
879 bool wxFrame::HandleSize(int x
, int y
, WXUINT id
)
881 bool processed
= FALSE
;
886 // only do it it if we were iconized before, otherwise resizing the
887 // parent frame has a curious side effect of bringing it under it's
892 // restore all child frames too
893 IconizeChildFrames(FALSE
);
902 // iconize all child frames too
903 IconizeChildFrames(TRUE
);
914 wxSizeEvent
event(wxSize(x
, y
), m_windowId
);
915 event
.SetEventObject( this );
916 processed
= GetEventHandler()->ProcessEvent(event
);
922 bool wxFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
926 // In case it's e.g. a toolbar.
927 wxWindow
*win
= wxFindWinFromHandle(control
);
929 return win
->MSWCommand(cmd
, id
);
932 // handle here commands from menus and accelerators
933 if ( cmd
== 0 || cmd
== 1 )
935 if ( wxCurrentPopupMenu
)
937 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
938 wxCurrentPopupMenu
= NULL
;
940 return popupMenu
->MSWCommand(cmd
, id
);
943 if ( ProcessCommand(id
) )
952 bool wxFrame::HandleMenuSelect(WXWORD nItem
, WXWORD flags
, WXHMENU hMenu
)
955 if ( flags
== 0xFFFF && hMenu
== 0 )
957 // menu was removed from screen
960 else if ( !(flags
& MF_POPUP
) && !(flags
& MF_SEPARATOR
) )
966 // don't give hints for separators (doesn't make sense) nor for the
967 // items opening popup menus (they don't have them anyhow)
971 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, item
);
972 event
.SetEventObject( this );
974 return GetEventHandler()->ProcessEvent(event
);
977 // ---------------------------------------------------------------------------
978 // the window proc for wxFrame
979 // ---------------------------------------------------------------------------
981 long wxFrame::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
984 bool processed
= FALSE
;
989 // if we can't close, tell the system that we processed the
990 // message - otherwise it would close us
991 processed
= !Close();
998 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
1001 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
1009 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
1011 processed
= HandleMenuSelect(item
, flags
, hmenu
);
1016 processed
= HandlePaint();
1019 case WM_QUERYDRAGICON
:
1021 HICON hIcon
= m_icon
.Ok() ? GetHiconOf(m_icon
)
1022 : (HICON
)(m_defaultIcon
);
1024 processed
= rc
!= 0;
1029 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
1034 rc
= wxWindow::MSWWindowProc(message
, wParam
, lParam
);