]> git.saurik.com Git - wxWidgets.git/blob - src/msw/frame.cpp
Minor tweak (up-ported from 2.2.9) to make
[wxWidgets.git] / src / msw / frame.cpp
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/frame.h"
33 #include "wx/app.h"
34 #include "wx/menu.h"
35 #include "wx/utils.h"
36 #include "wx/dialog.h"
37 #include "wx/settings.h"
38 #include "wx/dcclient.h"
39 #include "wx/mdi.h"
40 #include "wx/panel.h"
41 #endif // WX_PRECOMP
42
43 #include "wx/msw/private.h"
44
45 #if wxUSE_STATUSBAR
46 #include "wx/statusbr.h"
47 #include "wx/generic/statusbr.h"
48 #endif // wxUSE_STATUSBAR
49
50 #if wxUSE_TOOLBAR
51 #include "wx/toolbar.h"
52 #endif // wxUSE_TOOLBAR
53
54 #include "wx/menuitem.h"
55 #include "wx/log.h"
56
57 #ifdef __WXUNIVERSAL__
58 #include "wx/univ/theme.h"
59 #include "wx/univ/colschem.h"
60 #endif // __WXUNIVERSAL__
61
62 // ----------------------------------------------------------------------------
63 // globals
64 // ----------------------------------------------------------------------------
65
66 extern const wxChar *wxFrameClassName;
67
68 #if wxUSE_MENUS_NATIVE
69 extern wxMenu *wxCurrentPopupMenu;
70 #endif // wxUSE_MENUS_NATIVE
71
72 // ----------------------------------------------------------------------------
73 // event tables
74 // ----------------------------------------------------------------------------
75
76 BEGIN_EVENT_TABLE(wxFrame, wxFrameBase)
77 EVT_ACTIVATE(wxFrame::OnActivate)
78 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged)
79 END_EVENT_TABLE()
80
81 IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxTopLevelWindow)
82
83 // ============================================================================
84 // implementation
85 // ============================================================================
86
87 // ----------------------------------------------------------------------------
88 // static class members
89 // ----------------------------------------------------------------------------
90
91 #if wxUSE_STATUSBAR
92 #if wxUSE_NATIVE_STATUSBAR
93 bool wxFrame::m_useNativeStatusBar = TRUE;
94 #else
95 bool wxFrame::m_useNativeStatusBar = FALSE;
96 #endif
97 #endif // wxUSE_NATIVE_STATUSBAR
98
99 // ----------------------------------------------------------------------------
100 // creation/destruction
101 // ----------------------------------------------------------------------------
102
103 void wxFrame::Init()
104 {
105 #if wxUSE_TOOLTIPS
106 m_hwndToolTip = 0;
107 #endif
108
109 // Data to save/restore when calling ShowFullScreen
110 m_fsStatusBarFields = 0;
111 m_fsStatusBarHeight = 0;
112 m_fsToolBarHeight = 0;
113 // m_fsMenu = 0;
114
115 m_wasMinimized = FALSE;
116
117 m_winLastFocused = (wxWindow *)NULL;
118 }
119
120 bool wxFrame::Create(wxWindow *parent,
121 wxWindowID id,
122 const wxString& title,
123 const wxPoint& pos,
124 const wxSize& size,
125 long style,
126 const wxString& name)
127 {
128 if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style, name) )
129 return FALSE;
130
131 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
132
133 wxModelessWindows.Append(this);
134
135 return TRUE;
136 }
137
138 wxFrame::~wxFrame()
139 {
140 m_isBeingDeleted = TRUE;
141
142 DeleteAllBars();
143 }
144
145 // ----------------------------------------------------------------------------
146 // wxFrame client size calculations
147 // ----------------------------------------------------------------------------
148
149 void wxFrame::DoSetClientSize(int width, int height)
150 {
151 // leave enough space for the status bar if we have (and show) it
152 #if wxUSE_STATUSBAR
153 wxStatusBar *statbar = GetStatusBar();
154 if ( statbar && statbar->IsShown() )
155 {
156 height += statbar->GetSize().y;
157 }
158 #endif // wxUSE_STATUSBAR
159
160 // call GetClientAreaOrigin() to take the toolbar into account
161 wxPoint pt = GetClientAreaOrigin();
162 width += pt.x;
163 height += pt.y;
164
165 wxTopLevelWindow::DoSetClientSize(width, height);
166 }
167
168 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
169 void wxFrame::DoGetClientSize(int *x, int *y) const
170 {
171 wxTopLevelWindow::DoGetClientSize(x, y);
172
173 // account for the possible toolbar
174 wxPoint pt = GetClientAreaOrigin();
175 if ( x )
176 *x -= pt.x;
177
178 if ( y )
179 *y -= pt.y;
180
181 #if wxUSE_STATUSBAR
182 // adjust client area height to take the status bar into account
183 if ( y )
184 {
185 wxStatusBar *statbar = GetStatusBar();
186 if ( statbar && statbar->IsShown() )
187 {
188 *y -= statbar->GetClientSize().y;
189 }
190 }
191 #endif // wxUSE_STATUSBAR
192 }
193
194 // ----------------------------------------------------------------------------
195 // wxFrame: various geometry-related functions
196 // ----------------------------------------------------------------------------
197
198 void wxFrame::Raise()
199 {
200 #ifdef __WIN16__
201 // no SetForegroundWindow() in Win16
202 wxFrameBase::Raise();
203 #else // Win32
204 ::SetForegroundWindow(GetHwnd());
205 #endif // Win16/32
206 }
207
208 // generate an artificial resize event
209 void wxFrame::SendSizeEvent()
210 {
211 if ( !m_iconized )
212 {
213 RECT r = wxGetWindowRect(GetHwnd());
214
215 (void)::PostMessage(GetHwnd(), WM_SIZE,
216 IsMaximized() ? SIZE_MAXIMIZED : SIZE_RESTORED,
217 MAKELPARAM(r.right - r.left, r.bottom - r.top));
218 }
219 }
220
221 #if wxUSE_STATUSBAR
222 wxStatusBar *wxFrame::OnCreateStatusBar(int number,
223 long style,
224 wxWindowID id,
225 const wxString& name)
226 {
227 wxStatusBar *statusBar = NULL;
228
229 #if wxUSE_NATIVE_STATUSBAR
230 if ( !UsesNativeStatusBar() )
231 {
232 statusBar = (wxStatusBar *)new wxStatusBarGeneric(this, id, style);
233 }
234 else
235 #endif
236 {
237 statusBar = new wxStatusBar(this, id, style, name);
238 }
239
240 statusBar->SetFieldsCount(number);
241
242 return statusBar;
243 }
244
245 void wxFrame::PositionStatusBar()
246 {
247 if ( !m_frameStatusBar || !m_frameStatusBar->IsShown() )
248 return;
249
250 int w, h;
251 GetClientSize(&w, &h);
252 int sw, sh;
253 m_frameStatusBar->GetSize(&sw, &sh);
254
255 // Since we wish the status bar to be directly under the client area,
256 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
257 m_frameStatusBar->SetSize(0, h, w, sh);
258 }
259 #endif // wxUSE_STATUSBAR
260
261 #if wxUSE_MENUS_NATIVE
262
263 void wxFrame::AttachMenuBar(wxMenuBar *menubar)
264 {
265 wxFrameBase::AttachMenuBar(menubar);
266
267 if ( !menubar )
268 {
269 // actually remove the menu from the frame
270 m_hMenu = (WXHMENU)0;
271 InternalSetMenuBar();
272 }
273 else // set new non NULL menu bar
274 {
275 // Can set a menubar several times.
276 if ( menubar->GetHMenu() )
277 {
278 m_hMenu = menubar->GetHMenu();
279 }
280 else // no HMENU yet
281 {
282 m_hMenu = menubar->Create();
283
284 if ( !m_hMenu )
285 {
286 wxFAIL_MSG( _T("failed to create menu bar") );
287 return;
288 }
289 }
290
291 InternalSetMenuBar();
292 }
293 }
294
295 void wxFrame::InternalSetMenuBar()
296 {
297 #ifndef __WXMICROWIN__
298 if ( !::SetMenu(GetHwnd(), (HMENU)m_hMenu) )
299 {
300 wxLogLastError(wxT("SetMenu"));
301 }
302 #endif
303 }
304
305 #endif // wxUSE_MENUS_NATIVE
306
307 // Responds to colour changes, and passes event on to children.
308 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
309 {
310 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE));
311 Refresh();
312
313 #if wxUSE_STATUSBAR
314 if ( m_frameStatusBar )
315 {
316 wxSysColourChangedEvent event2;
317 event2.SetEventObject( m_frameStatusBar );
318 m_frameStatusBar->GetEventHandler()->ProcessEvent(event2);
319 }
320 #endif // wxUSE_STATUSBAR
321
322 // Propagate the event to the non-top-level children
323 wxWindow::OnSysColourChanged(event);
324 }
325
326 // Pass TRUE to show full screen, FALSE to restore.
327 bool wxFrame::ShowFullScreen(bool show, long style)
328 {
329 if ( IsFullScreen() == show )
330 return FALSE;
331
332 if (show)
333 {
334 #if wxUSE_TOOLBAR
335 wxToolBar *theToolBar = GetToolBar();
336 if (theToolBar)
337 theToolBar->GetSize(NULL, &m_fsToolBarHeight);
338
339 // zap the toolbar, menubar, and statusbar
340
341 if ((style & wxFULLSCREEN_NOTOOLBAR) && theToolBar)
342 {
343 theToolBar->SetSize(-1,0);
344 theToolBar->Show(FALSE);
345 }
346 #endif // wxUSE_TOOLBAR
347
348 #ifndef __WXMICROWIN__
349 if (style & wxFULLSCREEN_NOMENUBAR)
350 SetMenu((HWND)GetHWND(), (HMENU) NULL);
351 #endif
352
353 #if wxUSE_STATUSBAR
354 wxStatusBar *theStatusBar = GetStatusBar();
355 if (theStatusBar)
356 theStatusBar->GetSize(NULL, &m_fsStatusBarHeight);
357
358 // Save the number of fields in the statusbar
359 if ((style & wxFULLSCREEN_NOSTATUSBAR) && theStatusBar)
360 {
361 //m_fsStatusBarFields = theStatusBar->GetFieldsCount();
362 //SetStatusBar((wxStatusBar*) NULL);
363 //delete theStatusBar;
364 theStatusBar->Show(FALSE);
365 }
366 else
367 m_fsStatusBarFields = 0;
368 #endif // wxUSE_STATUSBAR
369 }
370 else
371 {
372 #if wxUSE_TOOLBAR
373 wxToolBar *theToolBar = GetToolBar();
374
375 // restore the toolbar, menubar, and statusbar
376 if (theToolBar && (m_fsStyle & wxFULLSCREEN_NOTOOLBAR))
377 {
378 theToolBar->SetSize(-1, m_fsToolBarHeight);
379 theToolBar->Show(TRUE);
380 }
381 #endif // wxUSE_TOOLBAR
382
383 #if wxUSE_STATUSBAR
384 if ( m_fsStyle & wxFULLSCREEN_NOSTATUSBAR )
385 {
386 //CreateStatusBar(m_fsStatusBarFields);
387 if (GetStatusBar())
388 {
389 GetStatusBar()->Show(TRUE);
390 PositionStatusBar();
391 }
392 }
393 #endif // wxUSE_STATUSBAR
394
395 #ifndef __WXMICROWIN__
396 if ((m_fsStyle & wxFULLSCREEN_NOMENUBAR) && (m_hMenu != 0))
397 SetMenu((HWND)GetHWND(), (HMENU)m_hMenu);
398 #endif
399 }
400
401 return wxFrameBase::ShowFullScreen(show, style);
402 }
403
404 // Default activation behaviour - set the focus for the first child
405 // subwindow found.
406 void wxFrame::OnActivate(wxActivateEvent& event)
407 {
408 if ( event.GetActive() )
409 {
410 // restore focus to the child which was last focused
411 wxLogTrace(_T("focus"), _T("wxFrame %08x activated."), m_hWnd);
412
413 wxWindow *parent = m_winLastFocused ? m_winLastFocused->GetParent()
414 : NULL;
415 if ( !parent )
416 {
417 parent = this;
418 }
419
420 wxSetFocusToChild(parent, &m_winLastFocused);
421 }
422 else // deactivating
423 {
424 // remember the last focused child if it is our child
425 m_winLastFocused = FindFocus();
426
427 // so we NULL it out if it's a child from some other frame
428 wxWindow *win = m_winLastFocused;
429 while ( win )
430 {
431 if ( win->IsTopLevel() )
432 {
433 if ( win != this )
434 {
435 m_winLastFocused = NULL;
436 }
437
438 break;
439 }
440
441 win = win->GetParent();
442 }
443
444 wxLogTrace(_T("focus"),
445 _T("wxFrame %08x deactivated, last focused: %08x."),
446 m_hWnd,
447 m_winLastFocused ? GetHwndOf(m_winLastFocused)
448 : NULL);
449
450 event.Skip();
451 }
452 }
453
454 // ----------------------------------------------------------------------------
455 // tool/status bar stuff
456 // ----------------------------------------------------------------------------
457
458 #if wxUSE_TOOLBAR
459
460 wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name)
461 {
462 if ( wxFrameBase::CreateToolBar(style, id, name) )
463 {
464 PositionToolBar();
465 }
466
467 return m_frameToolBar;
468 }
469
470 void wxFrame::PositionToolBar()
471 {
472 wxToolBar *toolbar = GetToolBar();
473 if ( toolbar && toolbar->IsShown() )
474 {
475 // don't call our (or even wxTopLevelWindow) version because we want
476 // the real (full) client area size, not excluding the tool/status bar
477 int width, height;
478 wxWindow::DoGetClientSize(&width, &height);
479
480 #if wxUSE_STATUSBAR
481 wxStatusBar *statbar = GetStatusBar();
482 if ( statbar && statbar->IsShown() )
483 {
484 height -= statbar->GetClientSize().y;
485 }
486 #endif // wxUSE_STATUSBAR
487
488 int tw, th;
489 toolbar->GetSize(&tw, &th);
490
491 if ( toolbar->GetWindowStyleFlag() & wxTB_VERTICAL )
492 {
493 th = height;
494 }
495 else
496 {
497 tw = width;
498 if ( toolbar->GetWindowStyleFlag() & wxTB_FLAT )
499 th -= 3;
500 }
501
502 // use the 'real' MSW position here, don't offset relativly to the
503 // client area origin
504 toolbar->SetSize(0, 0, tw, th, wxSIZE_NO_ADJUSTMENTS);
505 }
506 }
507
508 #endif // wxUSE_TOOLBAR
509
510 // ----------------------------------------------------------------------------
511 // frame state (iconized/maximized/...)
512 // ----------------------------------------------------------------------------
513
514 // propagate our state change to all child frames: this allows us to emulate X
515 // Windows behaviour where child frames float independently of the parent one
516 // on the desktop, but are iconized/restored with it
517 void wxFrame::IconizeChildFrames(bool bIconize)
518 {
519 for ( wxWindowList::Node *node = GetChildren().GetFirst();
520 node;
521 node = node->GetNext() )
522 {
523 wxWindow *win = node->GetData();
524
525 // iconizing the frames with this style under Win95 shell puts them at
526 // the bottom of the screen (as the MDI children) instead of making
527 // them appear in the taskbar because they are, by virtue of this
528 // style, not managed by the taskbar - instead leave Windows take care
529 // of them
530 #ifdef __WIN95__
531 if ( win->GetWindowStyle() & wxFRAME_TOOL_WINDOW )
532 continue;
533 #endif // Win95
534
535 // the child MDI frames are a special case and should not be touched by
536 // the parent frame - instead, they are managed by the user
537 wxFrame *frame = wxDynamicCast(win, wxFrame);
538 if ( frame
539 #if wxUSE_MDI_ARCHITECTURE
540 && !wxDynamicCast(frame, wxMDIChildFrame)
541 #endif // wxUSE_MDI_ARCHITECTURE
542 )
543 {
544 // we don't want to restore the child frames which had been
545 // iconized even before we were iconized, so save the child frame
546 // status when iconizing the parent frame and check it when
547 // restoring it
548 if ( bIconize )
549 {
550 // note that we shouldn't touch the hidden frames neither
551 // because iconizing/restoring them would show them as a side
552 // effect
553 frame->m_wasMinimized = frame->IsIconized() || !frame->IsShown();
554 }
555
556 // this test works for both iconizing and restoring
557 if ( !frame->m_wasMinimized )
558 frame->Iconize(bIconize);
559 }
560 }
561 }
562
563 WXHICON wxFrame::GetDefaultIcon() const
564 {
565 return (WXHICON)(wxSTD_FRAME_ICON ? wxSTD_FRAME_ICON
566 : wxDEFAULT_FRAME_ICON);
567 }
568
569 // ===========================================================================
570 // message processing
571 // ===========================================================================
572
573 // ---------------------------------------------------------------------------
574 // preprocessing
575 // ---------------------------------------------------------------------------
576
577 bool wxFrame::MSWTranslateMessage(WXMSG* pMsg)
578 {
579 if ( wxWindow::MSWTranslateMessage(pMsg) )
580 return TRUE;
581
582 #if wxUSE_MENUS && wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
583 // try the menu bar accels
584 wxMenuBar *menuBar = GetMenuBar();
585 if ( !menuBar )
586 return FALSE;
587
588 const wxAcceleratorTable& acceleratorTable = menuBar->GetAccelTable();
589 return acceleratorTable.Translate(this, pMsg);
590 #else
591 return FALSE;
592 #endif // wxUSE_MENUS && wxUSE_ACCEL
593 }
594
595 // ---------------------------------------------------------------------------
596 // our private (non virtual) message handlers
597 // ---------------------------------------------------------------------------
598
599 bool wxFrame::HandlePaint()
600 {
601 RECT rect;
602 if ( GetUpdateRect(GetHwnd(), &rect, FALSE) )
603 {
604 #ifndef __WXMICROWIN__
605 if ( m_iconized )
606 {
607 const wxIcon& icon = GetIcon();
608 HICON hIcon = icon.Ok() ? GetHiconOf(icon)
609 : (HICON)GetDefaultIcon();
610
611 // Hold a pointer to the dc so long as the OnPaint() message
612 // is being processed
613 PAINTSTRUCT ps;
614 HDC hdc = ::BeginPaint(GetHwnd(), &ps);
615
616 // Erase background before painting or we get white background
617 MSWDefWindowProc(WM_ICONERASEBKGND, (WORD)(LONG)ps.hdc, 0L);
618
619 if ( hIcon )
620 {
621 RECT rect;
622 ::GetClientRect(GetHwnd(), &rect);
623
624 // FIXME: why hardcoded?
625 static const int icon_width = 32;
626 static const int icon_height = 32;
627
628 int icon_x = (int)((rect.right - icon_width)/2);
629 int icon_y = (int)((rect.bottom - icon_height)/2);
630
631 ::DrawIcon(hdc, icon_x, icon_y, hIcon);
632 }
633
634 ::EndPaint(GetHwnd(), &ps);
635
636 return TRUE;
637 }
638 else
639 #endif
640 {
641 return wxWindow::HandlePaint();
642 }
643 }
644 else
645 {
646 // nothing to paint - processed
647 return TRUE;
648 }
649 }
650
651 bool wxFrame::HandleSize(int x, int y, WXUINT id)
652 {
653 bool processed = FALSE;
654 #ifndef __WXMICROWIN__
655
656 switch ( id )
657 {
658 case SIZENORMAL:
659 // only do it it if we were iconized before, otherwise resizing the
660 // parent frame has a curious side effect of bringing it under it's
661 // children
662 if ( !m_iconized )
663 break;
664
665 // restore all child frames too
666 IconizeChildFrames(FALSE);
667
668 (void)SendIconizeEvent(FALSE);
669
670 // fall through
671
672 case SIZEFULLSCREEN:
673 m_iconized = FALSE;
674 break;
675
676 case SIZEICONIC:
677 // iconize all child frames too
678 IconizeChildFrames(TRUE);
679
680 (void)SendIconizeEvent();
681
682 m_iconized = TRUE;
683 break;
684 }
685 #endif
686
687 if ( !m_iconized )
688 {
689 #if wxUSE_STATUSBAR
690 PositionStatusBar();
691 #endif // wxUSE_STATUSBAR
692
693 #if wxUSE_TOOLBAR
694 PositionToolBar();
695 #endif // wxUSE_TOOLBAR
696
697 wxSizeEvent event(wxSize(x, y), m_windowId);
698 event.SetEventObject( this );
699 processed = GetEventHandler()->ProcessEvent(event);
700 }
701
702 return processed;
703 }
704
705 bool wxFrame::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control)
706 {
707 if ( control )
708 {
709 // In case it's e.g. a toolbar.
710 wxWindow *win = wxFindWinFromHandle(control);
711 if ( win )
712 return win->MSWCommand(cmd, id);
713 }
714
715 // handle here commands from menus and accelerators
716 if ( cmd == 0 || cmd == 1 )
717 {
718 #if wxUSE_MENUS_NATIVE
719 if ( wxCurrentPopupMenu )
720 {
721 wxMenu *popupMenu = wxCurrentPopupMenu;
722 wxCurrentPopupMenu = NULL;
723
724 return popupMenu->MSWCommand(cmd, id);
725 }
726 #endif // wxUSE_MENUS_NATIVE
727
728 if ( ProcessCommand(id) )
729 {
730 return TRUE;
731 }
732 }
733
734 return FALSE;
735 }
736
737 bool wxFrame::HandleMenuSelect(WXWORD nItem, WXWORD flags, WXHMENU hMenu)
738 {
739 int item;
740 if ( flags == 0xFFFF && hMenu == 0 )
741 {
742 // menu was removed from screen
743 item = -1;
744 }
745 #ifndef __WXMICROWIN__
746 else if ( !(flags & MF_POPUP) && !(flags & MF_SEPARATOR) )
747 {
748 item = nItem;
749 }
750 #endif
751 else
752 {
753 #if wxUSE_STATUSBAR
754 // don't give hints for separators (doesn't make sense) nor for the
755 // items opening popup menus (they don't have them anyhow) but do clear
756 // the status line - otherwise, we would be left with the help message
757 // for the previous item which doesn't apply any more
758 wxStatusBar *statbar = GetStatusBar();
759 if ( statbar )
760 {
761 statbar->SetStatusText(wxEmptyString);
762 }
763 #endif // wxUSE_STATUSBAR
764
765 return FALSE;
766 }
767
768 wxMenuEvent event(wxEVT_MENU_HIGHLIGHT, item);
769 event.SetEventObject(this);
770
771 return GetEventHandler()->ProcessEvent(event);
772 }
773
774 bool wxFrame::HandleMenuLoop(const wxEventType& evtType, WXWORD isPopup)
775 {
776 // we don't have the menu id here, so we use the id to specify if the event
777 // was from a popup menu or a normal one
778 wxMenuEvent event(evtType, isPopup ? -1 : 0);
779 event.SetEventObject(this);
780
781 return GetEventHandler()->ProcessEvent(event);
782 }
783
784 // ---------------------------------------------------------------------------
785 // the window proc for wxFrame
786 // ---------------------------------------------------------------------------
787
788 long wxFrame::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
789 {
790 long rc = 0;
791 bool processed = FALSE;
792
793 switch ( message )
794 {
795 case WM_CLOSE:
796 // if we can't close, tell the system that we processed the
797 // message - otherwise it would close us
798 processed = !Close();
799 break;
800
801 case WM_SIZE:
802 processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam);
803 break;
804
805 case WM_COMMAND:
806 {
807 WORD id, cmd;
808 WXHWND hwnd;
809 UnpackCommand((WXWPARAM)wParam, (WXLPARAM)lParam,
810 &id, &hwnd, &cmd);
811
812 processed = HandleCommand(id, cmd, (WXHWND)hwnd);
813 }
814 break;
815
816 case WM_PAINT:
817 processed = HandlePaint();
818 break;
819
820 #ifndef __WXMICROWIN__
821 case WM_MENUSELECT:
822 {
823 WXWORD item, flags;
824 WXHMENU hmenu;
825 UnpackMenuSelect(wParam, lParam, &item, &flags, &hmenu);
826
827 processed = HandleMenuSelect(item, flags, hmenu);
828 }
829 break;
830
831 #ifndef __WIN16__
832 case WM_ENTERMENULOOP:
833 processed = HandleMenuLoop(wxEVT_MENU_OPEN, wParam);
834 break;
835
836 case WM_EXITMENULOOP:
837 processed = HandleMenuLoop(wxEVT_MENU_CLOSE, wParam);
838 break;
839 #endif // __WIN16__
840
841 case WM_QUERYDRAGICON:
842 {
843 const wxIcon& icon = GetIcon();
844 HICON hIcon = icon.Ok() ? GetHiconOf(icon)
845 : (HICON)GetDefaultIcon();
846 rc = (long)hIcon;
847 processed = rc != 0;
848 }
849 break;
850 #endif // !__WXMICROWIN__
851 }
852
853 if ( !processed )
854 rc = wxWindow::MSWWindowProc(message, wParam, lParam);
855
856 return rc;
857 }
858