]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/msw/frame.cpp
1. wxMSW::wxNotebook::SetPageSize() and SetPadding() added
[wxWidgets.git] / src / msw / frame.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: msw/frame.cpp
3// Purpose: wxFrame
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#ifdef __GNUG__
21 #pragma implementation "frame.h"
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
28 #pragma hdrstop
29#endif
30
31#ifndef WX_PRECOMP
32 #include "wx/setup.h"
33 #include "wx/frame.h"
34 #include "wx/menu.h"
35 #include "wx/app.h"
36 #include "wx/utils.h"
37 #include "wx/dialog.h"
38 #include "wx/settings.h"
39 #include "wx/dcclient.h"
40#endif // WX_PRECOMP
41
42#include "wx/msw/private.h"
43
44#if wxUSE_STATUSBAR
45 #include "wx/statusbr.h"
46
47 #if wxUSE_NATIVE_STATUSBAR
48 #include "wx/msw/statbr95.h"
49 #endif
50#endif // wxUSE_STATUSBAR
51
52#if wxUSE_TOOLBAR
53 #include "wx/toolbar.h"
54#endif // wxUSE_TOOLBAR
55
56#include "wx/menuitem.h"
57#include "wx/log.h"
58
59// ----------------------------------------------------------------------------
60// globals
61// ----------------------------------------------------------------------------
62
63extern wxWindowList wxModelessWindows;
64extern wxList WXDLLEXPORT wxPendingDelete;
65extern const wxChar *wxFrameClassName;
66extern wxMenu *wxCurrentPopupMenu;
67
68// ----------------------------------------------------------------------------
69// event tables
70// ----------------------------------------------------------------------------
71
72BEGIN_EVENT_TABLE(wxFrame, wxFrameBase)
73 EVT_ACTIVATE(wxFrame::OnActivate)
74 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged)
75END_EVENT_TABLE()
76
77IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
78
79// ============================================================================
80// implementation
81// ============================================================================
82
83// ----------------------------------------------------------------------------
84// static class members
85// ----------------------------------------------------------------------------
86
87#if wxUSE_NATIVE_STATUSBAR
88 bool wxFrame::m_useNativeStatusBar = TRUE;
89#else
90 bool wxFrame::m_useNativeStatusBar = FALSE;
91#endif
92
93// ----------------------------------------------------------------------------
94// creation/destruction
95// ----------------------------------------------------------------------------
96
97void wxFrame::Init()
98{
99 m_iconized = FALSE;
100
101#if wxUSE_TOOLTIPS
102 m_hwndToolTip = 0;
103#endif
104}
105
106bool wxFrame::Create(wxWindow *parent,
107 wxWindowID id,
108 const wxString& title,
109 const wxPoint& pos,
110 const wxSize& size,
111 long style,
112 const wxString& name)
113{
114 SetName(name);
115 m_windowStyle = style;
116 m_frameMenuBar = NULL;
117 m_frameToolBar = NULL;
118 m_frameStatusBar = NULL;
119
120 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
121
122 if ( id > -1 )
123 m_windowId = id;
124 else
125 m_windowId = (int)NewControlId();
126
127 if (parent) parent->AddChild(this);
128
129 int x = pos.x;
130 int y = pos.y;
131 int width = size.x;
132 int height = size.y;
133
134 m_iconized = FALSE;
135
136 // we pass NULL as parent to MSWCreate because frames with parents behave
137 // very strangely under Win95 shell
138 // Alteration by JACS: keep normal Windows behaviour (float on top of parent)
139 // with this style.
140 if ((m_windowStyle & wxFRAME_FLOAT_ON_PARENT) == 0)
141 parent = NULL;
142
143 if (!parent)
144 wxTopLevelWindows.Append(this);
145
146 MSWCreate(m_windowId, parent, wxFrameClassName, this, title,
147 x, y, width, height, style);
148
149 wxModelessWindows.Append(this);
150 return TRUE;
151}
152
153wxFrame::~wxFrame()
154{
155 m_isBeingDeleted = TRUE;
156 wxTopLevelWindows.DeleteObject(this);
157
158 DeleteAllBars();
159
160 if (wxTheApp && (wxTopLevelWindows.Number() == 0))
161 {
162 wxTheApp->SetTopWindow(NULL);
163
164 if (wxTheApp->GetExitOnFrameDelete())
165 {
166 PostQuitMessage(0);
167 }
168 }
169
170 wxModelessWindows.DeleteObject(this);
171
172 // For some reason, wxWindows can activate another task altogether
173 // when a frame is destroyed after a modal dialog has been invoked.
174 // Try to bring the parent to the top.
175 // MT:Only do this if this frame is currently the active window, else weird
176 // things start to happen
177 if ( wxGetActiveWindow() == this )
178 if (GetParent() && GetParent()->GetHWND())
179 ::BringWindowToTop((HWND) GetParent()->GetHWND());
180}
181
182// Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
183void wxFrame::DoGetClientSize(int *x, int *y) const
184{
185 RECT rect;
186 ::GetClientRect(GetHwnd(), &rect);
187
188#if wxUSE_STATUSBAR
189 if ( GetStatusBar() )
190 {
191 int statusX, statusY;
192 GetStatusBar()->GetClientSize(&statusX, &statusY);
193 rect.bottom -= statusY;
194 }
195#endif // wxUSE_STATUSBAR
196
197 wxPoint pt(GetClientAreaOrigin());
198 rect.bottom -= pt.y;
199 rect.right -= pt.x;
200
201 if ( x )
202 *x = rect.right;
203 if ( y )
204 *y = rect.bottom;
205}
206
207// Set the client size (i.e. leave the calculation of borders etc.
208// to wxWindows)
209void wxFrame::DoSetClientSize(int width, int height)
210{
211 HWND hWnd = GetHwnd();
212
213 RECT rect;
214 ::GetClientRect(hWnd, &rect);
215
216 RECT rect2;
217 GetWindowRect(hWnd, &rect2);
218
219 // Find the difference between the entire window (title bar and all)
220 // and the client area; add this to the new client size to move the
221 // window
222 int actual_width = rect2.right - rect2.left - rect.right + width;
223 int actual_height = rect2.bottom - rect2.top - rect.bottom + height;
224
225#if wxUSE_STATUSBAR
226 if ( GetStatusBar() )
227 {
228 int statusX, statusY;
229 GetStatusBar()->GetClientSize(&statusX, &statusY);
230 actual_height += statusY;
231 }
232#endif // wxUSE_STATUSBAR
233
234 wxPoint pt(GetClientAreaOrigin());
235 actual_width += pt.y;
236 actual_height += pt.x;
237
238 POINT point;
239 point.x = rect2.left;
240 point.y = rect2.top;
241
242 MoveWindow(hWnd, point.x, point.y, actual_width, actual_height, (BOOL)TRUE);
243
244 wxSizeEvent event(wxSize(width, height), m_windowId);
245 event.SetEventObject( this );
246 GetEventHandler()->ProcessEvent(event);
247}
248
249void wxFrame::DoGetSize(int *width, int *height) const
250{
251 RECT rect;
252 GetWindowRect(GetHwnd(), &rect);
253 *width = rect.right - rect.left;
254 *height = rect.bottom - rect.top;
255}
256
257void wxFrame::DoGetPosition(int *x, int *y) const
258{
259 RECT rect;
260 GetWindowRect(GetHwnd(), &rect);
261 POINT point;
262 point.x = rect.left;
263 point.y = rect.top;
264
265 *x = point.x;
266 *y = point.y;
267}
268
269// ----------------------------------------------------------------------------
270// variations around ::ShowWindow()
271// ----------------------------------------------------------------------------
272
273void wxFrame::DoShowWindow(int nShowCmd)
274{
275 ::ShowWindow(GetHwnd(), nShowCmd);
276
277 m_iconized = nShowCmd == SW_MINIMIZE;
278}
279
280bool wxFrame::Show(bool show)
281{
282 DoShowWindow(show ? SW_SHOW : SW_HIDE);
283
284 if ( show )
285 {
286 ::BringWindowToTop(GetHwnd());
287
288 wxActivateEvent event(wxEVT_ACTIVATE, TRUE, m_windowId);
289 event.SetEventObject( this );
290 GetEventHandler()->ProcessEvent(event);
291 }
292 else
293 {
294 // Try to highlight the correct window (the parent)
295 if ( GetParent() )
296 {
297 HWND hWndParent = GetHwndOf(GetParent());
298 if (hWndParent)
299 ::BringWindowToTop(hWndParent);
300 }
301 }
302
303 return TRUE;
304}
305
306void wxFrame::Iconize(bool iconize)
307{
308 DoShowWindow(iconize ? SW_MINIMIZE : SW_RESTORE);
309}
310
311void wxFrame::Maximize(bool maximize)
312{
313 DoShowWindow(maximize ? SW_MAXIMIZE : SW_RESTORE);
314}
315
316void wxFrame::Restore()
317{
318 DoShowWindow(SW_RESTORE);
319}
320
321bool wxFrame::IsIconized() const
322{
323 ((wxFrame *)this)->m_iconized = (::IsIconic(GetHwnd()) != 0);
324 return m_iconized;
325}
326
327// Is it maximized?
328bool wxFrame::IsMaximized() const
329{
330 return (::IsZoomed(GetHwnd()) != 0);
331}
332
333void wxFrame::SetIcon(const wxIcon& icon)
334{
335 wxFrameBase::SetIcon(icon);
336
337#if defined(__WIN95__)
338 if ( m_icon.Ok() )
339 {
340 SendMessage(GetHwnd(), WM_SETICON,
341 (WPARAM)TRUE, (LPARAM)(HICON) m_icon.GetHICON());
342 }
343#endif // __WIN95__
344}
345
346#if wxUSE_STATUSBAR
347wxStatusBar *wxFrame::OnCreateStatusBar(int number,
348 long style,
349 wxWindowID id,
350 const wxString& name)
351{
352 wxStatusBar *statusBar = NULL;
353
354#if wxUSE_NATIVE_STATUSBAR
355 if ( UsesNativeStatusBar() )
356 {
357 statusBar = new wxStatusBar95(this, id, style);
358
359 statusBar->SetFieldsCount(number);
360 }
361 else
362#endif
363 {
364 statusBar = wxFrameBase::OnCreateStatusBar(number, style, id, name);
365 }
366
367 return statusBar;
368}
369
370void wxFrame::PositionStatusBar()
371{
372 // native status bar positions itself
373 if ( m_frameStatusBar
374#if wxUSE_NATIVE_STATUSBAR
375 && !m_frameStatusBar->IsKindOf(CLASSINFO(wxStatusBar95))
376#endif
377 )
378 {
379 int w, h;
380 GetClientSize(&w, &h);
381 int sw, sh;
382 m_frameStatusBar->GetSize(&sw, &sh);
383
384 // Since we wish the status bar to be directly under the client area,
385 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
386 m_frameStatusBar->SetSize(0, h, w, sh);
387 }
388}
389#endif // wxUSE_STATUSBAR
390
391void wxFrame::DetachMenuBar()
392{
393 if (m_frameMenuBar)
394 {
395 m_frameMenuBar->Detach();
396 m_frameMenuBar = NULL;
397 }
398}
399
400void wxFrame::SetMenuBar(wxMenuBar *menu_bar)
401{
402 if (!menu_bar)
403 {
404 DetachMenuBar();
405 return;
406 }
407
408 m_frameMenuBar = NULL;
409
410 // Can set a menubar several times.
411 // TODO: how to prevent a memory leak if you have a currently-unattached
412 // menubar? wxWindows assumes that the frame will delete the menu (otherwise
413 // there are problems for MDI).
414 if (menu_bar->GetHMenu())
415 {
416 m_hMenu = menu_bar->GetHMenu();
417 }
418 else
419 {
420 menu_bar->Detach();
421
422 m_hMenu = menu_bar->Create();
423
424 if ( !m_hMenu )
425 return;
426 }
427
428 InternalSetMenuBar();
429
430 m_frameMenuBar = menu_bar;
431 menu_bar->Attach(this);
432
433#if 0 // Old code that assumes only one call of SetMenuBar per frame.
434 if (!menu_bar)
435 {
436 DetachMenuBar();
437 return;
438 }
439
440 wxCHECK_RET( !menu_bar->GetFrame(), wxT("this menubar is already attached") );
441
442 if (m_frameMenuBar)
443 delete m_frameMenuBar;
444
445 m_hMenu = menu_bar->Create();
446
447 if ( !m_hMenu )
448 return;
449
450 InternalSetMenuBar();
451
452 m_frameMenuBar = menu_bar;
453 menu_bar->Attach(this);
454#endif
455}
456
457void wxFrame::InternalSetMenuBar()
458{
459 if ( !::SetMenu(GetHwnd(), (HMENU)m_hMenu) )
460 {
461 wxLogLastError("SetMenu");
462 }
463}
464
465// Responds to colour changes, and passes event on to children.
466void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
467{
468 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
469 Refresh();
470
471 if ( m_frameStatusBar )
472 {
473 wxSysColourChangedEvent event2;
474 event2.SetEventObject( m_frameStatusBar );
475 m_frameStatusBar->GetEventHandler()->ProcessEvent(event2);
476 }
477
478 // Propagate the event to the non-top-level children
479 wxWindow::OnSysColourChanged(event);
480}
481
482/*
483 * Frame window
484 *
485 */
486
487bool wxFrame::MSWCreate(int id, wxWindow *parent, const wxChar *wclass, wxWindow *wx_win, const wxChar *title,
488 int x, int y, int width, int height, long style)
489
490{
491 m_defaultIcon = (WXHICON) (wxSTD_FRAME_ICON ? wxSTD_FRAME_ICON : wxDEFAULT_FRAME_ICON);
492
493 // If child windows aren't properly drawn initially, WS_CLIPCHILDREN
494 // could be the culprit. But without it, you can get a lot of flicker.
495
496 DWORD msflags = 0;
497 if ((style & wxCAPTION) == wxCAPTION)
498 msflags = WS_OVERLAPPED;
499 else
500 msflags = WS_POPUP;
501
502 if (style & wxMINIMIZE_BOX)
503 msflags |= WS_MINIMIZEBOX;
504 if (style & wxMAXIMIZE_BOX)
505 msflags |= WS_MAXIMIZEBOX;
506 if (style & wxTHICK_FRAME)
507 msflags |= WS_THICKFRAME;
508 if (style & wxSYSTEM_MENU)
509 msflags |= WS_SYSMENU;
510 if ((style & wxMINIMIZE) || (style & wxICONIZE))
511 msflags |= WS_MINIMIZE;
512 if (style & wxMAXIMIZE)
513 msflags |= WS_MAXIMIZE;
514 if (style & wxCAPTION)
515 msflags |= WS_CAPTION;
516 if (style & wxCLIP_CHILDREN)
517 msflags |= WS_CLIPCHILDREN;
518
519 // Keep this in wxFrame because it saves recoding this function
520 // in wxTinyFrame
521#if wxUSE_ITSY_BITSY
522 if (style & wxTINY_CAPTION_VERT)
523 msflags |= IBS_VERTCAPTION;
524 if (style & wxTINY_CAPTION_HORIZ)
525 msflags |= IBS_HORZCAPTION;
526#else
527 if (style & wxTINY_CAPTION_VERT)
528 msflags |= WS_CAPTION;
529 if (style & wxTINY_CAPTION_HORIZ)
530 msflags |= WS_CAPTION;
531#endif
532 if ((style & wxTHICK_FRAME) == 0)
533 msflags |= WS_BORDER;
534
535 WXDWORD extendedStyle = MakeExtendedStyle(style);
536
537#if !defined(__WIN16__) && !defined(__SC__)
538 if (style & wxFRAME_TOOL_WINDOW)
539 extendedStyle |= WS_EX_TOOLWINDOW;
540#endif
541
542 if (style & wxSTAY_ON_TOP)
543 extendedStyle |= WS_EX_TOPMOST;
544
545 m_iconized = FALSE;
546 if ( !wxWindow::MSWCreate(id, parent, wclass, wx_win, title, x, y, width, height,
547 msflags, NULL, extendedStyle) )
548 return FALSE;
549
550 // Seems to be necessary if we use WS_POPUP
551 // style instead of WS_OVERLAPPED
552 if (width > -1 && height > -1)
553 ::PostMessage(GetHwnd(), WM_SIZE, SIZE_RESTORED, MAKELPARAM(width, height));
554
555 return TRUE;
556}
557
558// Default activation behaviour - set the focus for the first child
559// subwindow found.
560void wxFrame::OnActivate(wxActivateEvent& event)
561{
562 if ( !event.GetActive() )
563 {
564 event.Skip();
565
566 return;
567 }
568
569 wxLogTrace(_T("focus"), _T("wxFrame %08x activated."), m_hWnd);
570
571 for ( wxWindowList::Node *node = GetChildren().GetFirst();
572 node;
573 node = node->GetNext() )
574 {
575 // FIXME all this is totally bogus - we need to do the same as wxPanel,
576 // but how to do it without duplicating the code?
577
578 // restore focus
579 wxWindow *child = node->GetData();
580
581 if ( !child->IsTopLevel()
582#if wxUSE_TOOLBAR
583 && !wxDynamicCast(child, wxToolBar)
584#endif // wxUSE_TOOLBAR
585#if wxUSE_STATUSBAR
586 && !wxDynamicCast(child, wxStatusBar)
587#endif // wxUSE_STATUSBAR
588 )
589 {
590 child->SetFocus();
591 break;
592 }
593 }
594}
595
596// ----------------------------------------------------------------------------
597// tool/status bar stuff
598// ----------------------------------------------------------------------------
599
600#if wxUSE_TOOLBAR
601
602wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name)
603{
604 if ( wxFrameBase::CreateToolBar(style, id, name) )
605 {
606 PositionToolBar();
607 }
608
609 return m_frameToolBar;
610}
611
612void wxFrame::PositionToolBar()
613{
614 RECT rect;
615 ::GetClientRect(GetHwnd(), &rect);
616
617#if wxUSE_STATUSBAR
618 if ( GetStatusBar() )
619 {
620 int statusX, statusY;
621 GetStatusBar()->GetClientSize(&statusX, &statusY);
622 rect.bottom -= statusY;
623 }
624#endif // wxUSE_STATUSBAR
625
626 if ( GetToolBar() )
627 {
628 int tw, th;
629 GetToolBar()->GetSize(&tw, &th);
630
631 if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL )
632 {
633 th = rect.bottom;
634 }
635 else
636 {
637 tw = rect.right;
638 }
639
640 // Use the 'real' MSW position here
641 GetToolBar()->SetSize(0, 0, tw, th, wxSIZE_NO_ADJUSTMENTS);
642 }
643}
644#endif // wxUSE_TOOLBAR
645
646// ----------------------------------------------------------------------------
647// frame state (iconized/maximized/...)
648// ----------------------------------------------------------------------------
649
650// propagate our state change to all child frames: this allows us to emulate X
651// Windows behaviour where child frames float independently of the parent one
652// on the desktop, but are iconized/restored with it
653void wxFrame::IconizeChildFrames(bool bIconize)
654{
655 for ( wxWindowList::Node *node = GetChildren().GetFirst();
656 node;
657 node = node->GetNext() )
658 {
659 wxWindow *win = node->GetData();
660
661 if ( win->IsKindOf(CLASSINFO(wxFrame)) )
662 {
663 ((wxFrame *)win)->Iconize(bIconize);
664 }
665 }
666}
667
668// ===========================================================================
669// message processing
670// ===========================================================================
671
672// ---------------------------------------------------------------------------
673// preprocessing
674// ---------------------------------------------------------------------------
675
676bool wxFrame::MSWTranslateMessage(WXMSG* pMsg)
677{
678 if ( wxWindow::MSWTranslateMessage(pMsg) )
679 return TRUE;
680
681 // try the menu bar accels
682 wxMenuBar *menuBar = GetMenuBar();
683 if ( !menuBar )
684 return FALSE;
685
686 const wxAcceleratorTable& acceleratorTable = menuBar->GetAccelTable();
687 return acceleratorTable.Translate(this, pMsg);
688}
689
690// ---------------------------------------------------------------------------
691// our private (non virtual) message handlers
692// ---------------------------------------------------------------------------
693
694bool wxFrame::HandlePaint()
695{
696 RECT rect;
697 if ( GetUpdateRect(GetHwnd(), &rect, FALSE) )
698 {
699 if ( m_iconized )
700 {
701 HICON hIcon = m_icon.Ok() ? GetHiconOf(m_icon)
702 : (HICON)m_defaultIcon;
703
704 // Hold a pointer to the dc so long as the OnPaint() message
705 // is being processed
706 PAINTSTRUCT ps;
707 HDC hdc = ::BeginPaint(GetHwnd(), &ps);
708
709 // Erase background before painting or we get white background
710 MSWDefWindowProc(WM_ICONERASEBKGND, (WORD)(LONG)ps.hdc, 0L);
711
712 if ( hIcon )
713 {
714 RECT rect;
715 ::GetClientRect(GetHwnd(), &rect);
716
717 // FIXME: why hardcoded?
718 static const int icon_width = 32;
719 static const int icon_height = 32;
720
721 int icon_x = (int)((rect.right - icon_width)/2);
722 int icon_y = (int)((rect.bottom - icon_height)/2);
723
724 ::DrawIcon(hdc, icon_x, icon_y, hIcon);
725 }
726
727 ::EndPaint(GetHwnd(), &ps);
728
729 return TRUE;
730 }
731 else
732 {
733 return wxWindow::HandlePaint();
734 }
735 }
736 else
737 {
738 // nothing to paint - processed
739 return TRUE;
740 }
741}
742
743bool wxFrame::HandleSize(int x, int y, WXUINT id)
744{
745 bool processed = FALSE;
746
747 switch ( id )
748 {
749 case SIZENORMAL:
750 // only do it it if we were iconized before, otherwise resizing the
751 // parent frame has a curious side effect of bringing it under it's
752 // children
753 if ( !m_iconized )
754 break;
755
756 // restore all child frames too
757 IconizeChildFrames(FALSE);
758
759 // fall through
760
761 case SIZEFULLSCREEN:
762 m_iconized = FALSE;
763 break;
764
765 case SIZEICONIC:
766 // iconize all child frames too
767 IconizeChildFrames(TRUE);
768
769 m_iconized = TRUE;
770 break;
771 }
772
773 if ( !m_iconized )
774 {
775 // forward WM_SIZE to status bar control
776#if wxUSE_NATIVE_STATUSBAR
777 if (m_frameStatusBar && m_frameStatusBar->IsKindOf(CLASSINFO(wxStatusBar95)))
778 {
779 wxSizeEvent event(wxSize(x, y), m_frameStatusBar->GetId());
780 event.SetEventObject( m_frameStatusBar );
781
782 ((wxStatusBar95 *)m_frameStatusBar)->OnSize(event);
783 }
784#endif // wxUSE_NATIVE_STATUSBAR
785
786 PositionStatusBar();
787 PositionToolBar();
788
789 wxSizeEvent event(wxSize(x, y), m_windowId);
790 event.SetEventObject( this );
791 processed = GetEventHandler()->ProcessEvent(event);
792 }
793
794 return processed;
795}
796
797bool wxFrame::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control)
798{
799 if ( control )
800 {
801 // In case it's e.g. a toolbar.
802 wxWindow *win = wxFindWinFromHandle(control);
803 if ( win )
804 return win->MSWCommand(cmd, id);
805 }
806
807 // handle here commands from menus and accelerators
808 if ( cmd == 0 || cmd == 1 )
809 {
810 if ( wxCurrentPopupMenu )
811 {
812 wxMenu *popupMenu = wxCurrentPopupMenu;
813 wxCurrentPopupMenu = NULL;
814
815 return popupMenu->MSWCommand(cmd, id);
816 }
817
818 if ( ProcessCommand(id) )
819 {
820 return TRUE;
821 }
822 }
823
824 return FALSE;
825}
826
827bool wxFrame::HandleMenuSelect(WXWORD nItem, WXWORD flags, WXHMENU hMenu)
828{
829 int item;
830 if ( flags == 0xFFFF && hMenu == 0 )
831 {
832 // menu was removed from screen
833 item = -1;
834 }
835 else if ( !(flags & MF_POPUP) && !(flags & MF_SEPARATOR) )
836 {
837 item = nItem;
838 }
839 else
840 {
841 // don't give hints for separators (doesn't make sense) nor for the
842 // items opening popup menus (they don't have them anyhow)
843 return FALSE;
844 }
845
846 wxMenuEvent event(wxEVT_MENU_HIGHLIGHT, item);
847 event.SetEventObject( this );
848
849 return GetEventHandler()->ProcessEvent(event);
850}
851
852// ---------------------------------------------------------------------------
853// the window proc for wxFrame
854// ---------------------------------------------------------------------------
855
856long wxFrame::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
857{
858 long rc = 0;
859 bool processed = FALSE;
860
861 switch ( message )
862 {
863 case WM_CLOSE:
864 // if we can't close, tell the system that we processed the
865 // message - otherwise it would close us
866 processed = !Close();
867 break;
868
869 case WM_COMMAND:
870 {
871 WORD id, cmd;
872 WXHWND hwnd;
873 UnpackCommand((WXWPARAM)wParam, (WXLPARAM)lParam,
874 &id, &hwnd, &cmd);
875
876 processed = HandleCommand(id, cmd, (WXHWND)hwnd);
877 }
878 break;
879
880 case WM_MENUSELECT:
881 {
882 WXWORD item, flags;
883 WXHMENU hmenu;
884 UnpackMenuSelect(wParam, lParam, &item, &flags, &hmenu);
885
886 processed = HandleMenuSelect(item, flags, hmenu);
887 }
888 break;
889
890 case WM_PAINT:
891 processed = HandlePaint();
892 break;
893
894 case WM_QUERYDRAGICON:
895 {
896 HICON hIcon = m_icon.Ok() ? GetHiconOf(m_icon)
897 : (HICON)(m_defaultIcon);
898 rc = (long)hIcon;
899 processed = rc != 0;
900 }
901 break;
902
903 case WM_SIZE:
904 processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam);
905 break;
906 }
907
908 if ( !processed )
909 rc = wxWindow::MSWWindowProc(message, wParam, lParam);
910
911 return rc;
912}
913