1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "frame.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
29 #include "wx/dialog.h"
30 #include "wx/settings.h"
31 #include "wx/dcclient.h"
34 #include "wx/msw/private.h"
35 #include "wx/statusbr.h"
36 #include "wx/toolbar.h"
37 #include "wx/menuitem.h"
40 #if wxUSE_NATIVE_STATUSBAR
41 #include <wx/msw/statbr95.h>
44 extern wxWindowList wxModelessWindows
;
45 extern wxList WXDLLEXPORT wxPendingDelete
;
46 extern char wxFrameClassName
[];
47 extern wxMenu
*wxCurrentPopupMenu
;
49 #if !USE_SHARED_LIBRARY
50 BEGIN_EVENT_TABLE(wxFrame
, wxWindow
)
51 EVT_SIZE(wxFrame::OnSize
)
52 EVT_ACTIVATE(wxFrame::OnActivate
)
53 EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight
)
54 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged
)
55 EVT_IDLE(wxFrame::OnIdle
)
56 EVT_CLOSE(wxFrame::OnCloseWindow
)
59 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxWindow
)
62 #if wxUSE_NATIVE_STATUSBAR
63 bool wxFrame::m_useNativeStatusBar
= TRUE
;
65 bool wxFrame::m_useNativeStatusBar
= FALSE
;
70 m_frameToolBar
= NULL
;
71 m_frameMenuBar
= NULL
;
72 m_frameStatusBar
= NULL
;
77 bool wxFrame::Create(wxWindow
*parent
,
79 const wxString
& title
,
90 wxTopLevelWindows
.Append(this);
93 m_windowStyle
= style
;
94 m_frameMenuBar
= NULL
;
95 m_frameToolBar
= NULL
;
96 m_frameStatusBar
= NULL
;
98 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
104 m_windowId
= (int)NewControlId();
106 if (parent
) parent
->AddChild(this);
115 // we pass NULL as parent to MSWCreate because frames with parents behave
116 // very strangely under Win95 shell
117 // Alteration by JACS: keep normal Windows behaviour (float on top of parent)
119 if ((m_windowStyle
& wxFRAME_FLOAT_ON_PARENT
) == 0)
122 MSWCreate(m_windowId
, parent
, wxFrameClassName
, this, title
,
123 x
, y
, width
, height
, style
);
125 wxModelessWindows
.Append(this);
131 m_isBeingDeleted
= TRUE
;
132 wxTopLevelWindows
.DeleteObject(this);
134 if (m_frameStatusBar
)
135 delete m_frameStatusBar
;
137 delete m_frameMenuBar
;
139 /* New behaviour March 1998: check if it's the last top-level window */
140 // if (wxTheApp && (this == wxTheApp->GetTopWindow()))
142 if (wxTheApp
&& (wxTopLevelWindows
.Number() == 0))
144 wxTheApp
->SetTopWindow(NULL
);
146 if (wxTheApp
->GetExitOnFrameDelete())
152 wxModelessWindows
.DeleteObject(this);
154 // For some reason, wxWindows can activate another task altogether
155 // when a frame is destroyed after a modal dialog has been invoked.
156 // Try to bring the parent to the top.
157 if (GetParent() && GetParent()->GetHWND())
158 ::BringWindowToTop((HWND
) GetParent()->GetHWND());
161 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
162 void wxFrame::DoGetClientSize(int *x
, int *y
) const
165 ::GetClientRect(GetHwnd(), &rect
);
167 if ( GetStatusBar() )
169 int statusX
, statusY
;
170 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
171 rect
.bottom
-= statusY
;
174 wxPoint
pt(GetClientAreaOrigin());
182 // Set the client size (i.e. leave the calculation of borders etc.
184 void wxFrame::DoSetClientSize(int width
, int height
)
186 HWND hWnd
= GetHwnd();
189 ::GetClientRect(hWnd
, &rect
);
192 GetWindowRect(hWnd
, &rect2
);
194 // Find the difference between the entire window (title bar and all)
195 // and the client area; add this to the new client size to move the
197 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
198 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
200 if ( GetStatusBar() )
202 int statusX
, statusY
;
203 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
204 actual_height
+= statusY
;
207 wxPoint
pt(GetClientAreaOrigin());
208 actual_width
+= pt
.y
;
209 actual_height
+= pt
.x
;
212 point
.x
= rect2
.left
;
215 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)TRUE
);
217 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
218 event
.SetEventObject( this );
219 GetEventHandler()->ProcessEvent(event
);
222 void wxFrame::DoGetSize(int *width
, int *height
) const
225 GetWindowRect(GetHwnd(), &rect
);
226 *width
= rect
.right
- rect
.left
;
227 *height
= rect
.bottom
- rect
.top
;
230 void wxFrame::DoGetPosition(int *x
, int *y
) const
233 GetWindowRect(GetHwnd(), &rect
);
242 void wxFrame::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
244 int currentX
, currentY
;
250 GetPosition(¤tX
, ¤tY
);
251 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
253 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
258 if (width
== -1) w1
= ww
;
259 if (height
==-1) h1
= hh
;
261 MoveWindow(GetHwnd(), x1
, y1
, w1
, h1
, (BOOL
)TRUE
);
263 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
264 event
.SetEventObject( this );
265 GetEventHandler()->ProcessEvent(event
);
268 bool wxFrame::Show(bool show
)
278 // Try to highlight the correct window (the parent)
282 hWndParent
= (HWND
) GetParent()->GetHWND();
284 ::BringWindowToTop(hWndParent
);
288 ShowWindow(GetHwnd(), (BOOL
)cshow
);
291 BringWindowToTop(GetHwnd());
293 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, m_windowId
);
294 event
.SetEventObject( this );
295 GetEventHandler()->ProcessEvent(event
);
300 void wxFrame::Iconize(bool iconize
)
310 ShowWindow(GetHwnd(), (BOOL
)cshow
);
311 m_iconized
= iconize
;
314 // Equivalent to maximize/restore in Windows
315 void wxFrame::Maximize(bool maximize
)
323 ShowWindow(GetHwnd(), cshow
);
327 bool wxFrame::IsIconized() const
329 ((wxFrame
*)this)->m_iconized
= (::IsIconic(GetHwnd()) != 0);
334 bool wxFrame::IsMaximized() const
336 return (::IsZoomed(GetHwnd()) != 0) ;
339 void wxFrame::SetIcon(const wxIcon
& icon
)
342 #if defined(__WIN95__)
344 SendMessage(GetHwnd(), WM_SETICON
,
345 (WPARAM
)TRUE
, (LPARAM
)(HICON
) m_icon
.GetHICON());
350 wxStatusBar
*wxFrame::OnCreateStatusBar(int number
, long style
, wxWindowID id
,
351 const wxString
& name
)
353 wxStatusBar
*statusBar
= NULL
;
355 #if wxUSE_NATIVE_STATUSBAR
356 if (UsesNativeStatusBar())
358 statusBar
= new wxStatusBar95(this, id
, style
);
363 statusBar
= new wxStatusBar(this, id
, wxPoint(0, 0), wxSize(100, 20),
366 // Set the height according to the font and the border size
367 wxClientDC
dc(statusBar
);
368 dc
.SetFont(statusBar
->GetFont());
371 dc
.GetTextExtent("X", &x
, &y
);
373 int height
= (int)( (y
* 1.1) + 2* statusBar
->GetBorderY());
375 statusBar
->SetSize(-1, -1, 100, height
);
378 statusBar
->SetFieldsCount(number
);
382 wxStatusBar
* wxFrame::CreateStatusBar(int number
, long style
, wxWindowID id
,
383 const wxString
& name
)
385 // VZ: calling CreateStatusBar twice is an error - why anyone would do it?
386 wxCHECK_MSG( m_frameStatusBar
== NULL
, FALSE
,
387 "recreating status bar in wxFrame" );
389 m_frameStatusBar
= OnCreateStatusBar(number
, style
, id
,
391 if ( m_frameStatusBar
)
394 return m_frameStatusBar
;
400 void wxFrame::SetStatusText(const wxString
& text
, int number
)
402 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set text for" );
404 m_frameStatusBar
->SetStatusText(text
, number
);
407 void wxFrame::SetStatusWidths(int n
, const int widths_field
[])
409 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set widths for" );
411 m_frameStatusBar
->SetStatusWidths(n
, widths_field
);
415 void wxFrame::PositionStatusBar()
417 // native status bar positions itself
419 #if wxUSE_NATIVE_STATUSBAR
420 && !m_frameStatusBar
->IsKindOf(CLASSINFO(wxStatusBar95
))
425 GetClientSize(&w
, &h
);
427 m_frameStatusBar
->GetSize(&sw
, &sh
);
429 // Since we wish the status bar to be directly under the client area,
430 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
431 m_frameStatusBar
->SetSize(0, h
, w
, sh
);
434 #endif // wxUSE_STATUSBAR
436 void wxFrame::SetMenuBar(wxMenuBar
*menu_bar
)
440 m_frameMenuBar
= NULL
;
444 wxCHECK_RET( !menu_bar
->GetFrame(), "this menubar is already attached" );
447 delete m_frameMenuBar
;
449 m_hMenu
= menu_bar
->Create();
454 InternalSetMenuBar();
456 m_frameMenuBar
= menu_bar
;
457 menu_bar
->Attach(this);
460 void wxFrame::InternalSetMenuBar()
462 if ( !::SetMenu(GetHwnd(), (HMENU
)m_hMenu
) )
464 wxLogLastError("SetMenu");
468 // Responds to colour changes, and passes event on to children.
469 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
471 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
474 if ( m_frameStatusBar
)
476 wxSysColourChangedEvent event2
;
477 event2
.SetEventObject( m_frameStatusBar
);
478 m_frameStatusBar
->GetEventHandler()->ProcessEvent(event2
);
481 // Propagate the event to the non-top-level children
482 wxWindow::OnSysColourChanged(event
);
490 bool wxFrame::MSWCreate(int id
, wxWindow
*parent
, const char *wclass
, wxWindow
*wx_win
, const char *title
,
491 int x
, int y
, int width
, int height
, long style
)
494 m_defaultIcon
= (WXHICON
) (wxSTD_FRAME_ICON
? wxSTD_FRAME_ICON
: wxDEFAULT_FRAME_ICON
);
496 // If child windows aren't properly drawn initially, WS_CLIPCHILDREN
497 // could be the culprit. But without it, you can get a lot of flicker.
500 if ((style
& wxCAPTION
) == wxCAPTION
)
501 msflags
= WS_OVERLAPPED
;
505 if (style
& wxMINIMIZE_BOX
)
506 msflags
|= WS_MINIMIZEBOX
;
507 if (style
& wxMAXIMIZE_BOX
)
508 msflags
|= WS_MAXIMIZEBOX
;
509 if (style
& wxTHICK_FRAME
)
510 msflags
|= WS_THICKFRAME
;
511 if (style
& wxSYSTEM_MENU
)
512 msflags
|= WS_SYSMENU
;
513 if ((style
& wxMINIMIZE
) || (style
& wxICONIZE
))
514 msflags
|= WS_MINIMIZE
;
515 if (style
& wxMAXIMIZE
)
516 msflags
|= WS_MAXIMIZE
;
517 if (style
& wxCAPTION
)
518 msflags
|= WS_CAPTION
;
519 if (style
& wxCLIP_CHILDREN
)
520 msflags
|= WS_CLIPCHILDREN
;
522 // Keep this in wxFrame because it saves recoding this function
525 if (style
& wxTINY_CAPTION_VERT
)
526 msflags
|= IBS_VERTCAPTION
;
527 if (style
& wxTINY_CAPTION_HORIZ
)
528 msflags
|= IBS_HORZCAPTION
;
530 if (style
& wxTINY_CAPTION_VERT
)
531 msflags
|= WS_CAPTION
;
532 if (style
& wxTINY_CAPTION_HORIZ
)
533 msflags
|= WS_CAPTION
;
535 if ((style
& wxTHICK_FRAME
) == 0)
536 msflags
|= WS_BORDER
;
538 WXDWORD extendedStyle
= MakeExtendedStyle(style
);
540 #if !defined(__WIN16__) && !defined(__SC__)
541 if (style
& wxFRAME_TOOL_WINDOW
)
542 extendedStyle
|= WS_EX_TOOLWINDOW
;
545 if (style
& wxSTAY_ON_TOP
)
546 extendedStyle
|= WS_EX_TOPMOST
;
549 if ( !wxWindow::MSWCreate(id
, parent
, wclass
, wx_win
, title
, x
, y
, width
, height
,
550 msflags
, NULL
, extendedStyle
) )
553 // Seems to be necessary if we use WS_POPUP
554 // style instead of WS_OVERLAPPED
555 if (width
> -1 && height
> -1)
556 ::PostMessage(GetHwnd(), WM_SIZE
, SIZE_RESTORED
, MAKELPARAM(width
, height
));
561 // Default resizing behaviour - if only ONE subwindow, resize to client
563 void wxFrame::OnSize(wxSizeEvent
& event
)
565 // if we're using constraints - do use them
566 #if wxUSE_CONSTRAINTS
567 if ( GetAutoLayout() )
574 // do we have _exactly_ one child?
575 wxWindow
*child
= NULL
;
576 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
578 node
= node
->GetNext() )
580 wxWindow
*win
= node
->GetData();
581 if ( !win
->IsTopLevel()
583 && (win
!= GetStatusBar())
584 #endif // wxUSE_STATUSBAR
586 && (win
!= GetToolBar())
587 #endif // wxUSE_TOOLBAR
591 return; // it's our second subwindow - nothing to do
597 // we have exactly one child - set it's size to fill the whole frame
598 int clientW
, clientH
;
599 GetClientSize(&clientW
, &clientH
);
604 child
->SetSize(x
, y
, clientW
, clientH
);
608 // Default activation behaviour - set the focus for the first child
610 void wxFrame::OnActivate(wxActivateEvent
& event
)
612 for(wxNode
*node
= GetChildren().First(); node
; node
= node
->Next())
614 // Find a child that's a subwindow, but not a dialog box.
615 wxWindow
*child
= (wxWindow
*)node
->Data();
616 if (!child
->IsKindOf(CLASSINFO(wxFrame
)) &&
617 !child
->IsKindOf(CLASSINFO(wxDialog
)))
625 // The default implementation for the close window event.
626 void wxFrame::OnCloseWindow(wxCloseEvent
& event
)
631 // Destroy the window (delayed, if a managed window)
632 bool wxFrame::Destroy()
634 if (!wxPendingDelete
.Member(this))
635 wxPendingDelete
.Append(this);
639 // Default menu selection behaviour - display a help string
640 void wxFrame::OnMenuHighlight(wxMenuEvent
& event
)
644 int menuId
= event
.GetMenuId();
647 wxMenuBar
*menuBar
= GetMenuBar();
648 if (menuBar
&& menuBar
->FindItem(menuId
))
650 // set status text even if the string is empty - this will at
651 // least remove the string from the item which was previously
653 SetStatusText(menuBar
->GetHelpString(menuId
));
659 wxMenuBar
*wxFrame::GetMenuBar() const
661 return m_frameMenuBar
;
664 bool wxFrame::ProcessCommand(int id
)
666 wxMenuBar
*bar
= GetMenuBar() ;
670 wxMenuItem
*item
= bar
->FindItemForId(id
);
674 if ( item
->IsCheckable() )
676 bar
->Check(id
, !bar
->IsChecked(id
)) ;
679 wxCommandEvent
commandEvent(wxEVT_COMMAND_MENU_SELECTED
, id
);
680 commandEvent
.SetInt( id
);
681 commandEvent
.SetEventObject( this );
683 return GetEventHandler()->ProcessEvent(commandEvent
);
686 // Checks if there is a toolbar, and returns the first free client position
687 wxPoint
wxFrame::GetClientAreaOrigin() const
693 GetToolBar()->GetSize(& w
, & h
);
695 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
707 void wxFrame::ScreenToClient(int *x
, int *y
) const
709 wxWindow::ScreenToClient(x
, y
);
711 // We may be faking the client origin.
712 // So a window that's really at (0, 30) may appear
713 // (to wxWin apps) to be at (0, 0).
714 wxPoint
pt(GetClientAreaOrigin());
719 void wxFrame::ClientToScreen(int *x
, int *y
) const
721 // We may be faking the client origin.
722 // So a window that's really at (0, 30) may appear
723 // (to wxWin apps) to be at (0, 0).
724 wxPoint
pt1(GetClientAreaOrigin());
728 wxWindow::ClientToScreen(x
, y
);
732 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
734 wxCHECK_MSG( m_frameToolBar
== NULL
, FALSE
,
735 "recreating toolbar in wxFrame" );
737 wxToolBar
* toolBar
= OnCreateToolBar(style
, id
, name
);
750 wxToolBar
* wxFrame::OnCreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
752 return new wxToolBar(this, id
, wxDefaultPosition
, wxDefaultSize
, style
, name
);
755 void wxFrame::PositionToolBar()
758 ::GetClientRect(GetHwnd(), &rect
);
760 if ( GetStatusBar() )
762 int statusX
, statusY
;
763 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
764 rect
.bottom
-= statusY
;
770 GetToolBar()->GetSize(& tw
, & th
);
772 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
774 // Use the 'real' MSW position
775 GetToolBar()->SetSize(0, 0, tw
, rect
.bottom
, wxSIZE_NO_ADJUSTMENTS
);
779 // Use the 'real' MSW position
780 GetToolBar()->SetSize(0, 0, rect
.right
, th
, wxSIZE_NO_ADJUSTMENTS
);
784 #endif // wxUSE_TOOLBAR
786 // propagate our state change to all child frames: this allows us to emulate X
787 // Windows behaviour where child frames float independently of the parent one
788 // on the desktop, but are iconized/restored with it
789 void wxFrame::IconizeChildFrames(bool bIconize
)
791 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
793 node
= node
->GetNext() )
795 wxWindow
*win
= node
->GetData();
797 if ( win
->IsKindOf(CLASSINFO(wxFrame
)) )
799 ((wxFrame
*)win
)->Iconize(bIconize
);
805 // make the window modal (all other windows unresponsive)
806 void wxFrame::MakeModal(bool modal
)
809 wxEnableTopLevelWindows(FALSE
);
810 Enable(TRUE
); // keep this window enabled
813 wxEnableTopLevelWindows(TRUE
);
818 // ===========================================================================
819 // message processing
820 // ===========================================================================
822 // ---------------------------------------------------------------------------
824 // ---------------------------------------------------------------------------
826 bool wxFrame::MSWTranslateMessage(WXMSG
* pMsg
)
828 if ( wxWindow::MSWTranslateMessage(pMsg
) )
831 // try the menu bar accels
832 wxMenuBar
*menuBar
= GetMenuBar();
836 const wxAcceleratorTable
& acceleratorTable
= menuBar
->GetAccelTable();
837 return acceleratorTable
.Ok() &&
838 ::TranslateAccelerator(GetHwnd(),
839 GetTableHaccel(acceleratorTable
),
843 // ---------------------------------------------------------------------------
844 // our private (non virtual) message handlers
845 // ---------------------------------------------------------------------------
847 bool wxFrame::HandlePaint()
850 if ( GetUpdateRect(GetHwnd(), &rect
, FALSE
) )
854 HICON hIcon
= m_icon
.Ok() ? GetIconHicon(m_icon
)
855 : (HICON
)m_defaultIcon
;
857 // Hold a pointer to the dc so long as the OnPaint() message
858 // is being processed
860 HDC hdc
= ::BeginPaint(GetHwnd(), &ps
);
862 // Erase background before painting or we get white background
863 MSWDefWindowProc(WM_ICONERASEBKGND
, (WORD
)(LONG
)ps
.hdc
, 0L);
868 ::GetClientRect(GetHwnd(), &rect
);
870 // FIXME: why hardcoded?
871 static const int icon_width
= 32;
872 static const int icon_height
= 32;
874 int icon_x
= (int)((rect
.right
- icon_width
)/2);
875 int icon_y
= (int)((rect
.bottom
- icon_height
)/2);
877 ::DrawIcon(hdc
, icon_x
, icon_y
, hIcon
);
880 ::EndPaint(GetHwnd(), &ps
);
886 wxPaintEvent
event(m_windowId
);
887 event
.m_eventObject
= this;
889 return GetEventHandler()->ProcessEvent(event
);
894 // nothing to paint - processed
899 bool wxFrame::HandleSize(int x
, int y
, WXUINT id
)
901 bool processed
= FALSE
;
906 // only do it it if we were iconized before, otherwise resizing the
907 // parent frame has a curious side effect of bringing it under it's
912 // restore all child frames too
913 IconizeChildFrames(FALSE
);
922 // iconize all child frames too
923 IconizeChildFrames(TRUE
);
931 // forward WM_SIZE to status bar control
932 #if wxUSE_NATIVE_STATUSBAR
933 if (m_frameStatusBar
&& m_frameStatusBar
->IsKindOf(CLASSINFO(wxStatusBar95
)))
935 wxSizeEvent
event(wxSize(x
, y
), m_frameStatusBar
->GetId());
936 event
.SetEventObject( m_frameStatusBar
);
938 ((wxStatusBar95
*)m_frameStatusBar
)->OnSize(event
);
940 #endif // wxUSE_NATIVE_STATUSBAR
945 wxSizeEvent
event(wxSize(x
, y
), m_windowId
);
946 event
.SetEventObject( this );
947 processed
= GetEventHandler()->ProcessEvent(event
);
953 bool wxFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
957 // In case it's e.g. a toolbar.
958 wxWindow
*win
= wxFindWinFromHandle(control
);
960 return win
->MSWCommand(cmd
, id
);
963 // handle here commands from menus and accelerators
964 if ( cmd
== 0 || cmd
== 1 )
966 if ( wxCurrentPopupMenu
)
968 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
969 wxCurrentPopupMenu
= NULL
;
971 return popupMenu
->MSWCommand(cmd
, id
);
974 if ( ProcessCommand(id
) )
983 bool wxFrame::HandleMenuSelect(WXWORD nItem
, WXWORD nFlags
, WXHMENU hMenu
)
986 if ( nFlags
== 0xFFFF && hMenu
== 0 )
988 // FIXME: what does this do? does it ever happen?
991 else if ((nFlags
!= MF_SEPARATOR
) && (nItem
!= 0) && (nItem
!= 65535))
1000 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, item
);
1001 event
.SetEventObject( this );
1003 return GetEventHandler()->ProcessEvent(event
);
1006 // ---------------------------------------------------------------------------
1007 // the window proc for wxFrame
1008 // ---------------------------------------------------------------------------
1010 long wxFrame::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1013 bool processed
= FALSE
;
1018 // if we can't close, tell the system that we processed the
1019 // message - otherwise it would close us
1020 processed
= !Close();
1027 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
1030 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
1038 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
1040 processed
= HandleMenuSelect(item
, flags
, hmenu
);
1045 processed
= HandlePaint();
1048 case WM_QUERYDRAGICON
:
1050 HICON hIcon
= m_icon
.Ok() ? GetIconHicon(m_icon
)
1051 : (HICON
)(m_defaultIcon
);
1053 processed
= rc
!= 0;
1058 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
1063 rc
= wxWindow::MSWWindowProc(message
, wParam
, lParam
);