]> git.saurik.com Git - wxWidgets.git/blob - src/msw/frame.cpp
more fixes for mingw32 compilation
[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/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 #include "wx/mdi.h"
41 #include "wx/panel.h"
42 #endif // WX_PRECOMP
43
44 #include "wx/msw/private.h"
45
46 #if wxUSE_STATUSBAR
47 #include "wx/statusbr.h"
48 #include "wx/generic/statusbr.h"
49 #endif // wxUSE_STATUSBAR
50
51 #if wxUSE_TOOLBAR
52 #include "wx/toolbar.h"
53 #endif // wxUSE_TOOLBAR
54
55 #include "wx/menuitem.h"
56 #include "wx/log.h"
57
58 // ----------------------------------------------------------------------------
59 // globals
60 // ----------------------------------------------------------------------------
61
62 extern wxWindowList wxModelessWindows;
63 extern wxList WXDLLEXPORT wxPendingDelete;
64 extern const wxChar *wxFrameClassName;
65 extern wxMenu *wxCurrentPopupMenu;
66
67 // ----------------------------------------------------------------------------
68 // event tables
69 // ----------------------------------------------------------------------------
70
71 BEGIN_EVENT_TABLE(wxFrame, wxFrameBase)
72 EVT_ACTIVATE(wxFrame::OnActivate)
73 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged)
74 END_EVENT_TABLE()
75
76 IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
77
78 // ============================================================================
79 // implementation
80 // ============================================================================
81
82 // ----------------------------------------------------------------------------
83 // static class members
84 // ----------------------------------------------------------------------------
85
86 #if wxUSE_NATIVE_STATUSBAR
87 bool wxFrame::m_useNativeStatusBar = TRUE;
88 #else
89 bool wxFrame::m_useNativeStatusBar = FALSE;
90 #endif
91
92 // ----------------------------------------------------------------------------
93 // creation/destruction
94 // ----------------------------------------------------------------------------
95
96 void wxFrame::Init()
97 {
98 m_iconized = FALSE;
99
100 #if wxUSE_TOOLTIPS
101 m_hwndToolTip = 0;
102 #endif
103
104 // Data to save/restore when calling ShowFullScreen
105 m_fsStyle = 0;
106 m_fsOldWindowStyle = 0;
107 m_fsStatusBarFields = 0;
108 m_fsStatusBarHeight = 0;
109 m_fsToolBarHeight = 0;
110 // m_fsMenu = 0;
111 m_fsIsMaximized = FALSE;
112 m_fsIsShowing = FALSE;
113
114 m_winLastFocused = (wxWindow *)NULL;
115
116 // unlike (almost?) all other windows, frames are created hidden
117 m_isShown = FALSE;
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 SetName(name);
129 m_windowStyle = style;
130 m_frameMenuBar = NULL;
131 m_frameToolBar = NULL;
132 m_frameStatusBar = NULL;
133
134 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
135
136 if ( id > -1 )
137 m_windowId = id;
138 else
139 m_windowId = (int)NewControlId();
140
141 if (parent) parent->AddChild(this);
142
143 int x = pos.x;
144 int y = pos.y;
145 int width = size.x;
146 int height = size.y;
147
148 m_iconized = FALSE;
149
150 wxTopLevelWindows.Append(this);
151
152 MSWCreate(m_windowId, parent, wxFrameClassName, this, title,
153 x, y, width, height, style);
154
155 wxModelessWindows.Append(this);
156
157 return TRUE;
158 }
159
160 wxFrame::~wxFrame()
161 {
162 m_isBeingDeleted = TRUE;
163 wxTopLevelWindows.DeleteObject(this);
164
165 // the ~wxToolBar() code relies on the previous line to be executed before
166 // this one, i.e. the frame should remove itself from wxTopLevelWindows
167 // before destorying its toolbar
168 DeleteAllBars();
169
170 if (wxTheApp && (wxTopLevelWindows.Number() == 0))
171 {
172 wxTheApp->SetTopWindow(NULL);
173
174 if (wxTheApp->GetExitOnFrameDelete())
175 {
176 PostQuitMessage(0);
177 }
178 }
179
180 wxModelessWindows.DeleteObject(this);
181
182 // For some reason, wxWindows can activate another task altogether
183 // when a frame is destroyed after a modal dialog has been invoked.
184 // Try to bring the parent to the top.
185 // MT:Only do this if this frame is currently the active window, else weird
186 // things start to happen
187 if ( wxGetActiveWindow() == this )
188 if (GetParent() && GetParent()->GetHWND())
189 ::BringWindowToTop((HWND) GetParent()->GetHWND());
190 }
191
192 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
193 void wxFrame::DoGetClientSize(int *x, int *y) const
194 {
195 RECT rect;
196 ::GetClientRect(GetHwnd(), &rect);
197
198 #if wxUSE_STATUSBAR
199 if ( GetStatusBar() && GetStatusBar()->IsShown() )
200 {
201 int statusX, statusY;
202 GetStatusBar()->GetClientSize(&statusX, &statusY);
203 rect.bottom -= statusY;
204 }
205 #endif // wxUSE_STATUSBAR
206
207 wxPoint pt(GetClientAreaOrigin());
208 rect.bottom -= pt.y;
209 rect.right -= pt.x;
210
211 if ( x )
212 *x = rect.right;
213 if ( y )
214 *y = rect.bottom;
215 }
216
217 // Set the client size (i.e. leave the calculation of borders etc.
218 // to wxWindows)
219 void wxFrame::DoSetClientSize(int width, int height)
220 {
221 HWND hWnd = GetHwnd();
222
223 RECT rect;
224 ::GetClientRect(hWnd, &rect);
225
226 RECT rect2;
227 GetWindowRect(hWnd, &rect2);
228
229 // Find the difference between the entire window (title bar and all)
230 // and the client area; add this to the new client size to move the
231 // window
232 int actual_width = rect2.right - rect2.left - rect.right + width;
233 int actual_height = rect2.bottom - rect2.top - rect.bottom + height;
234
235 #if wxUSE_STATUSBAR
236 if ( GetStatusBar() && GetStatusBar()->IsShown())
237 {
238 int statusX, statusY;
239 GetStatusBar()->GetClientSize(&statusX, &statusY);
240 actual_height += statusY;
241 }
242 #endif // wxUSE_STATUSBAR
243
244 wxPoint pt(GetClientAreaOrigin());
245 actual_width += pt.y;
246 actual_height += pt.x;
247
248 POINT point;
249 point.x = rect2.left;
250 point.y = rect2.top;
251
252 MoveWindow(hWnd, point.x, point.y, actual_width, actual_height, (BOOL)TRUE);
253
254 wxSizeEvent event(wxSize(width, height), m_windowId);
255 event.SetEventObject( this );
256 GetEventHandler()->ProcessEvent(event);
257 }
258
259 void wxFrame::DoGetSize(int *width, int *height) const
260 {
261 RECT rect;
262 GetWindowRect(GetHwnd(), &rect);
263 *width = rect.right - rect.left;
264 *height = rect.bottom - rect.top;
265 }
266
267 void wxFrame::DoGetPosition(int *x, int *y) const
268 {
269 RECT rect;
270 GetWindowRect(GetHwnd(), &rect);
271 POINT point;
272 point.x = rect.left;
273 point.y = rect.top;
274
275 *x = point.x;
276 *y = point.y;
277 }
278
279 // ----------------------------------------------------------------------------
280 // variations around ::ShowWindow()
281 // ----------------------------------------------------------------------------
282
283 void wxFrame::DoShowWindow(int nShowCmd)
284 {
285 ::ShowWindow(GetHwnd(), nShowCmd);
286
287 m_iconized = nShowCmd == SW_MINIMIZE;
288 }
289
290 bool wxFrame::Show(bool show)
291 {
292 // don't use wxWindow version as we want to call DoShowWindow()
293 if ( !wxWindowBase::Show(show) )
294 return FALSE;
295
296 DoShowWindow(show ? SW_SHOW : SW_HIDE);
297
298 if ( show )
299 {
300 ::BringWindowToTop(GetHwnd());
301
302 wxActivateEvent event(wxEVT_ACTIVATE, TRUE, m_windowId);
303 event.SetEventObject( this );
304 GetEventHandler()->ProcessEvent(event);
305 }
306 else
307 {
308 // Try to highlight the correct window (the parent)
309 if ( GetParent() )
310 {
311 HWND hWndParent = GetHwndOf(GetParent());
312 if (hWndParent)
313 ::BringWindowToTop(hWndParent);
314 }
315 }
316
317 return TRUE;
318 }
319
320 void wxFrame::Iconize(bool iconize)
321 {
322 DoShowWindow(iconize ? SW_MINIMIZE : SW_RESTORE);
323 }
324
325 void wxFrame::Maximize(bool maximize)
326 {
327 DoShowWindow(maximize ? SW_MAXIMIZE : SW_RESTORE);
328 }
329
330 void wxFrame::Restore()
331 {
332 DoShowWindow(SW_RESTORE);
333 }
334
335 bool wxFrame::IsIconized() const
336 {
337 ((wxFrame *)this)->m_iconized = (::IsIconic(GetHwnd()) != 0);
338 return m_iconized;
339 }
340
341 // Is it maximized?
342 bool wxFrame::IsMaximized() const
343 {
344 return (::IsZoomed(GetHwnd()) != 0);
345 }
346
347 void wxFrame::SetIcon(const wxIcon& icon)
348 {
349 wxFrameBase::SetIcon(icon);
350
351 #if defined(__WIN95__)
352 if ( m_icon.Ok() )
353 {
354 SendMessage(GetHwnd(), WM_SETICON,
355 (WPARAM)TRUE, (LPARAM)(HICON) m_icon.GetHICON());
356 }
357 #endif // __WIN95__
358 }
359
360 // generate an artificial resize event
361 void wxFrame::SendSizeEvent()
362 {
363 RECT r;
364 #ifdef __WIN16__
365 ::GetWindowRect(GetHwnd(), &r);
366 #else
367 if ( !::GetWindowRect(GetHwnd(), &r) )
368 {
369 wxLogLastError(_T("GetWindowRect"));
370 }
371 #endif
372
373 if ( !m_iconized )
374 {
375 (void)::PostMessage(GetHwnd(), WM_SIZE,
376 IsMaximized() ? SIZE_MAXIMIZED : SIZE_RESTORED,
377 MAKELPARAM(r.right - r.left, r.bottom - r.top));
378 }
379 }
380
381 #if wxUSE_STATUSBAR
382 wxStatusBar *wxFrame::OnCreateStatusBar(int number,
383 long style,
384 wxWindowID id,
385 const wxString& name)
386 {
387 wxStatusBar *statusBar = NULL;
388
389 #if wxUSE_NATIVE_STATUSBAR
390 if ( !UsesNativeStatusBar() )
391 {
392 statusBar = (wxStatusBar *)new wxStatusBarGeneric(this, id, style);
393 }
394 else
395 #endif
396 {
397 statusBar = new wxStatusBar(this, id, style, name);
398 }
399
400 // Set the height according to the font and the border size
401 wxClientDC dc(statusBar);
402 dc.SetFont(statusBar->GetFont());
403
404 wxCoord y;
405 dc.GetTextExtent(_T("X"), NULL, &y );
406
407 int height = (int)( (11*y)/10 + 2*statusBar->GetBorderY());
408
409 statusBar->SetSize(-1, -1, -1, height);
410
411 statusBar->SetFieldsCount(number);
412
413 return statusBar;
414 }
415
416 void wxFrame::PositionStatusBar()
417 {
418 if ( !m_frameStatusBar )
419 return;
420
421 int w, h;
422 GetClientSize(&w, &h);
423 int sw, sh;
424 m_frameStatusBar->GetSize(&sw, &sh);
425
426 // Since we wish the status bar to be directly under the client area,
427 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
428 m_frameStatusBar->SetSize(0, h, w, sh);
429 }
430 #endif // wxUSE_STATUSBAR
431
432 void wxFrame::DetachMenuBar()
433 {
434 if ( m_frameMenuBar )
435 {
436 m_frameMenuBar->Detach();
437 m_frameMenuBar = NULL;
438 }
439 }
440
441 void wxFrame::SetMenuBar(wxMenuBar *menubar)
442 {
443 if ( !menubar )
444 {
445 DetachMenuBar();
446
447 // actually remove the menu from the frame
448 m_hMenu = (WXHMENU)0;
449 InternalSetMenuBar();
450 }
451 else // set new non NULL menu bar
452 {
453 m_frameMenuBar = NULL;
454
455 // Can set a menubar several times.
456 // TODO: how to prevent a memory leak if you have a currently-unattached
457 // menubar? wxWindows assumes that the frame will delete the menu (otherwise
458 // there are problems for MDI).
459 if ( menubar->GetHMenu() )
460 {
461 m_hMenu = menubar->GetHMenu();
462 }
463 else
464 {
465 menubar->Detach();
466
467 m_hMenu = menubar->Create();
468
469 if ( !m_hMenu )
470 return;
471 }
472
473 InternalSetMenuBar();
474
475 m_frameMenuBar = menubar;
476 menubar->Attach(this);
477 }
478 }
479
480 void wxFrame::InternalSetMenuBar()
481 {
482 if ( !::SetMenu(GetHwnd(), (HMENU)m_hMenu) )
483 {
484 wxLogLastError(wxT("SetMenu"));
485 }
486 }
487
488 // Responds to colour changes, and passes event on to children.
489 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
490 {
491 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
492 Refresh();
493
494 if ( m_frameStatusBar )
495 {
496 wxSysColourChangedEvent event2;
497 event2.SetEventObject( m_frameStatusBar );
498 m_frameStatusBar->GetEventHandler()->ProcessEvent(event2);
499 }
500
501 // Propagate the event to the non-top-level children
502 wxWindow::OnSysColourChanged(event);
503 }
504
505 // Pass TRUE to show full screen, FALSE to restore.
506 bool wxFrame::ShowFullScreen(bool show, long style)
507 {
508 if (show)
509 {
510 if (IsFullScreen())
511 return FALSE;
512
513 m_fsIsShowing = TRUE;
514 m_fsStyle = style;
515
516 wxToolBar *theToolBar = GetToolBar();
517 wxStatusBar *theStatusBar = GetStatusBar();
518
519 int dummyWidth;
520
521 if (theToolBar)
522 theToolBar->GetSize(&dummyWidth, &m_fsToolBarHeight);
523 if (theStatusBar)
524 theStatusBar->GetSize(&dummyWidth, &m_fsStatusBarHeight);
525
526 // zap the toolbar, menubar, and statusbar
527
528 if ((style & wxFULLSCREEN_NOTOOLBAR) && theToolBar)
529 {
530 theToolBar->SetSize(-1,0);
531 theToolBar->Show(FALSE);
532 }
533
534 if (style & wxFULLSCREEN_NOMENUBAR)
535 SetMenu((HWND)GetHWND(), (HMENU) NULL);
536
537 // Save the number of fields in the statusbar
538 if ((style & wxFULLSCREEN_NOSTATUSBAR) && theStatusBar)
539 {
540 //m_fsStatusBarFields = theStatusBar->GetFieldsCount();
541 //SetStatusBar((wxStatusBar*) NULL);
542 //delete theStatusBar;
543 theStatusBar->Show(FALSE);
544 }
545 else
546 m_fsStatusBarFields = 0;
547
548 // zap the frame borders
549
550 // save the 'normal' window style
551 m_fsOldWindowStyle = GetWindowLong((HWND)GetHWND(), GWL_STYLE);
552
553 // save the old position, width & height, maximize state
554 m_fsOldSize = GetRect();
555 m_fsIsMaximized = IsMaximized();
556
557 // decide which window style flags to turn off
558 LONG newStyle = m_fsOldWindowStyle;
559 LONG offFlags = 0;
560
561 if (style & wxFULLSCREEN_NOBORDER)
562 offFlags |= WS_BORDER;
563 if (style & wxFULLSCREEN_NOCAPTION)
564 offFlags |= (WS_CAPTION | WS_SYSMENU);
565
566 newStyle &= (~offFlags);
567
568 // change our window style to be compatible with full-screen mode
569 SetWindowLong((HWND)GetHWND(), GWL_STYLE, newStyle);
570
571 // resize to the size of the desktop
572 int width, height;
573
574 RECT rect;
575 ::GetWindowRect(GetDesktopWindow(), &rect);
576 width = rect.right - rect.left;
577 height = rect.bottom - rect.top;
578
579 SetSize(width, height);
580
581 // now flush the window style cache and actually go full-screen
582 SetWindowPos((HWND)GetHWND(), HWND_TOP, 0, 0, width, height, SWP_FRAMECHANGED);
583
584 wxSizeEvent event(wxSize(width, height), GetId());
585 GetEventHandler()->ProcessEvent(event);
586
587 return TRUE;
588 }
589 else
590 {
591 if (!IsFullScreen())
592 return FALSE;
593
594 m_fsIsShowing = FALSE;
595
596 wxToolBar *theToolBar = GetToolBar();
597
598 // restore the toolbar, menubar, and statusbar
599 if (theToolBar && (m_fsStyle & wxFULLSCREEN_NOTOOLBAR))
600 {
601 theToolBar->SetSize(-1, m_fsToolBarHeight);
602 theToolBar->Show(TRUE);
603 }
604
605 if ((m_fsStyle & wxFULLSCREEN_NOSTATUSBAR)) // && (m_fsStatusBarFields > 0))
606 {
607 //CreateStatusBar(m_fsStatusBarFields);
608 if (GetStatusBar())
609 {
610 GetStatusBar()->Show(TRUE);
611 PositionStatusBar();
612 }
613 }
614
615 if ((m_fsStyle & wxFULLSCREEN_NOMENUBAR) && (m_hMenu != 0))
616 SetMenu((HWND)GetHWND(), (HMENU)m_hMenu);
617
618 Maximize(m_fsIsMaximized);
619 SetWindowLong((HWND)GetHWND(),GWL_STYLE, m_fsOldWindowStyle);
620 SetWindowPos((HWND)GetHWND(),HWND_TOP,m_fsOldSize.x, m_fsOldSize.y,
621 m_fsOldSize.width, m_fsOldSize.height, SWP_FRAMECHANGED);
622
623 return TRUE;
624 }
625 }
626
627 /*
628 * Frame window
629 *
630 */
631
632 bool wxFrame::MSWCreate(int id, wxWindow *parent, const wxChar *wclass, wxWindow *wx_win, const wxChar *title,
633 int x, int y, int width, int height, long style)
634
635 {
636 m_defaultIcon = (WXHICON) (wxSTD_FRAME_ICON ? wxSTD_FRAME_ICON : wxDEFAULT_FRAME_ICON);
637
638 // If child windows aren't properly drawn initially, WS_CLIPCHILDREN
639 // could be the culprit. But without it, you can get a lot of flicker.
640
641 DWORD msflags = 0;
642 if ( style & wxCAPTION )
643 {
644 if ( style & wxFRAME_TOOL_WINDOW )
645 msflags |= WS_POPUPWINDOW;
646 else
647 msflags |= WS_OVERLAPPED;
648 }
649 else
650 {
651 msflags |= WS_POPUP;
652 }
653
654 if (style & wxMINIMIZE_BOX)
655 msflags |= WS_MINIMIZEBOX;
656 if (style & wxMAXIMIZE_BOX)
657 msflags |= WS_MAXIMIZEBOX;
658 if (style & wxTHICK_FRAME)
659 msflags |= WS_THICKFRAME;
660 if (style & wxSYSTEM_MENU)
661 msflags |= WS_SYSMENU;
662 if ( style & wxMINIMIZE )
663 msflags |= WS_MINIMIZE;
664 if (style & wxMAXIMIZE)
665 msflags |= WS_MAXIMIZE;
666 if (style & wxCAPTION)
667 msflags |= WS_CAPTION;
668 if (style & wxCLIP_CHILDREN)
669 msflags |= WS_CLIPCHILDREN;
670
671 // Keep this in wxFrame because it saves recoding this function
672 // in wxTinyFrame
673 #if wxUSE_ITSY_BITSY && !defined(__WIN32__)
674 if (style & wxTINY_CAPTION_VERT)
675 msflags |= IBS_VERTCAPTION;
676 if (style & wxTINY_CAPTION_HORIZ)
677 msflags |= IBS_HORZCAPTION;
678 #else
679 if (style & wxTINY_CAPTION_VERT)
680 msflags |= WS_CAPTION;
681 if (style & wxTINY_CAPTION_HORIZ)
682 msflags |= WS_CAPTION;
683 #endif
684 if ((style & wxTHICK_FRAME) == 0)
685 msflags |= WS_BORDER;
686
687 WXDWORD extendedStyle = MakeExtendedStyle(style);
688
689 // make all frames appear in the win9x shell taskbar unless
690 // wxFRAME_TOOL_WINDOW or wxFRAME_NO_TASKBAR is given - without giving them
691 // WS_EX_APPWINDOW style, the child (i.e. owned) frames wouldn't appear in it
692 #if !defined(__WIN16__) && !defined(__SC__)
693 if ( (style & wxFRAME_TOOL_WINDOW) ||
694 (style & wxFRAME_NO_TASKBAR) )
695 extendedStyle |= WS_EX_TOOLWINDOW;
696 else if ( !(style & wxFRAME_NO_TASKBAR) )
697 extendedStyle |= WS_EX_APPWINDOW;
698 #endif
699
700 if (style & wxSTAY_ON_TOP)
701 extendedStyle |= WS_EX_TOPMOST;
702
703 #ifndef __WIN16__
704 if (m_exStyle & wxFRAME_EX_CONTEXTHELP)
705 extendedStyle |= WS_EX_CONTEXTHELP;
706 #endif
707
708 m_iconized = FALSE;
709 if ( !wxWindow::MSWCreate(id, parent, wclass, wx_win, title, x, y, width, height,
710 msflags, NULL, extendedStyle) )
711 return FALSE;
712
713 // Seems to be necessary if we use WS_POPUP
714 // style instead of WS_OVERLAPPED
715 if (width > -1 && height > -1)
716 ::PostMessage(GetHwnd(), WM_SIZE, SIZE_RESTORED, MAKELPARAM(width, height));
717
718 return TRUE;
719 }
720
721 // Default activation behaviour - set the focus for the first child
722 // subwindow found.
723 void wxFrame::OnActivate(wxActivateEvent& event)
724 {
725 if ( event.GetActive() )
726 {
727 // restore focus to the child which was last focused
728 wxLogTrace(_T("focus"), _T("wxFrame %08x activated."), m_hWnd);
729
730 wxSetFocusToChild(this, &m_winLastFocused);
731 }
732 else
733 {
734 // remember the last focused child
735 m_winLastFocused = FindFocus();
736 while ( m_winLastFocused )
737 {
738 if ( GetChildren().Find(m_winLastFocused) )
739 break;
740
741 m_winLastFocused = m_winLastFocused->GetParent();
742 }
743
744 wxLogTrace(_T("focus"),
745 _T("wxFrame %08x deactivated, last focused: %08x."),
746 m_hWnd,
747 m_winLastFocused ? GetHwndOf(m_winLastFocused)
748 : NULL);
749
750 event.Skip();
751 }
752 }
753
754 // ----------------------------------------------------------------------------
755 // tool/status bar stuff
756 // ----------------------------------------------------------------------------
757
758 #if wxUSE_TOOLBAR
759
760 wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name)
761 {
762 if ( wxFrameBase::CreateToolBar(style, id, name) )
763 {
764 PositionToolBar();
765 }
766
767 return m_frameToolBar;
768 }
769
770 void wxFrame::PositionToolBar()
771 {
772 RECT rect;
773 ::GetClientRect(GetHwnd(), &rect);
774
775 #if wxUSE_STATUSBAR
776 if ( GetStatusBar() )
777 {
778 int statusX, statusY;
779 GetStatusBar()->GetClientSize(&statusX, &statusY);
780 rect.bottom -= statusY;
781 }
782 #endif // wxUSE_STATUSBAR
783
784 if ( GetToolBar() && GetToolBar()->IsShown() )
785 {
786 int tw, th;
787 GetToolBar()->GetSize(&tw, &th);
788
789 if ( GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL )
790 {
791 th = rect.bottom;
792 }
793 else
794 {
795 tw = rect.right;
796 }
797
798 // Use the 'real' MSW position here
799 GetToolBar()->SetSize(0, 0, tw, th, wxSIZE_NO_ADJUSTMENTS);
800 }
801 }
802 #endif // wxUSE_TOOLBAR
803
804 // ----------------------------------------------------------------------------
805 // frame state (iconized/maximized/...)
806 // ----------------------------------------------------------------------------
807
808 // propagate our state change to all child frames: this allows us to emulate X
809 // Windows behaviour where child frames float independently of the parent one
810 // on the desktop, but are iconized/restored with it
811 void wxFrame::IconizeChildFrames(bool bIconize)
812 {
813 for ( wxWindowList::Node *node = GetChildren().GetFirst();
814 node;
815 node = node->GetNext() )
816 {
817 wxWindow *win = node->GetData();
818
819 // iconizing the frames with this style under Win95 shell puts them at
820 // the bottom of the screen (as the MDI children) instead of making
821 // them appear in the taskbar because they are, by virtue of this
822 // style, not managed by the taskbar - instead leave Windows take care
823 // of them
824 #ifdef __WIN95__
825 if ( win->GetWindowStyle() & wxFRAME_TOOL_WINDOW )
826 continue;
827 #endif // Win95
828
829 // the child MDI frames are a special case and should not be touched by
830 // the parent frame - instead, they are managed by the user
831 wxFrame *frame = wxDynamicCast(win, wxFrame);
832 if ( frame && !frame->IsMDIChild() )
833 {
834 frame->Iconize(bIconize);
835 }
836 }
837 }
838
839 // ===========================================================================
840 // message processing
841 // ===========================================================================
842
843 // ---------------------------------------------------------------------------
844 // preprocessing
845 // ---------------------------------------------------------------------------
846
847 bool wxFrame::MSWTranslateMessage(WXMSG* pMsg)
848 {
849 if ( wxWindow::MSWTranslateMessage(pMsg) )
850 return TRUE;
851
852 // try the menu bar accels
853 wxMenuBar *menuBar = GetMenuBar();
854 if ( !menuBar )
855 return FALSE;
856
857 const wxAcceleratorTable& acceleratorTable = menuBar->GetAccelTable();
858 return acceleratorTable.Translate(this, pMsg);
859 }
860
861 // ---------------------------------------------------------------------------
862 // our private (non virtual) message handlers
863 // ---------------------------------------------------------------------------
864
865 bool wxFrame::HandlePaint()
866 {
867 RECT rect;
868 if ( GetUpdateRect(GetHwnd(), &rect, FALSE) )
869 {
870 if ( m_iconized )
871 {
872 HICON hIcon = m_icon.Ok() ? GetHiconOf(m_icon)
873 : (HICON)m_defaultIcon;
874
875 // Hold a pointer to the dc so long as the OnPaint() message
876 // is being processed
877 PAINTSTRUCT ps;
878 HDC hdc = ::BeginPaint(GetHwnd(), &ps);
879
880 // Erase background before painting or we get white background
881 MSWDefWindowProc(WM_ICONERASEBKGND, (WORD)(LONG)ps.hdc, 0L);
882
883 if ( hIcon )
884 {
885 RECT rect;
886 ::GetClientRect(GetHwnd(), &rect);
887
888 // FIXME: why hardcoded?
889 static const int icon_width = 32;
890 static const int icon_height = 32;
891
892 int icon_x = (int)((rect.right - icon_width)/2);
893 int icon_y = (int)((rect.bottom - icon_height)/2);
894
895 ::DrawIcon(hdc, icon_x, icon_y, hIcon);
896 }
897
898 ::EndPaint(GetHwnd(), &ps);
899
900 return TRUE;
901 }
902 else
903 {
904 return wxWindow::HandlePaint();
905 }
906 }
907 else
908 {
909 // nothing to paint - processed
910 return TRUE;
911 }
912 }
913
914 bool wxFrame::HandleSize(int x, int y, WXUINT id)
915 {
916 bool processed = FALSE;
917
918 switch ( id )
919 {
920 case SIZENORMAL:
921 // only do it it if we were iconized before, otherwise resizing the
922 // parent frame has a curious side effect of bringing it under it's
923 // children
924 if ( !m_iconized )
925 break;
926
927 // restore all child frames too
928 IconizeChildFrames(FALSE);
929
930 // fall through
931
932 case SIZEFULLSCREEN:
933 m_iconized = FALSE;
934 break;
935
936 case SIZEICONIC:
937 // iconize all child frames too
938 IconizeChildFrames(TRUE);
939
940 m_iconized = TRUE;
941 break;
942 }
943
944 if ( !m_iconized )
945 {
946 PositionStatusBar();
947 PositionToolBar();
948
949 wxSizeEvent event(wxSize(x, y), m_windowId);
950 event.SetEventObject( this );
951 processed = GetEventHandler()->ProcessEvent(event);
952 }
953
954 return processed;
955 }
956
957 bool wxFrame::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control)
958 {
959 if ( control )
960 {
961 // In case it's e.g. a toolbar.
962 wxWindow *win = wxFindWinFromHandle(control);
963 if ( win )
964 return win->MSWCommand(cmd, id);
965 }
966
967 // handle here commands from menus and accelerators
968 if ( cmd == 0 || cmd == 1 )
969 {
970 if ( wxCurrentPopupMenu )
971 {
972 wxMenu *popupMenu = wxCurrentPopupMenu;
973 wxCurrentPopupMenu = NULL;
974
975 return popupMenu->MSWCommand(cmd, id);
976 }
977
978 if ( ProcessCommand(id) )
979 {
980 return TRUE;
981 }
982 }
983
984 return FALSE;
985 }
986
987 bool wxFrame::HandleMenuSelect(WXWORD nItem, WXWORD flags, WXHMENU hMenu)
988 {
989 int item;
990 if ( flags == 0xFFFF && hMenu == 0 )
991 {
992 // menu was removed from screen
993 item = -1;
994 }
995 else if ( !(flags & MF_POPUP) && !(flags & MF_SEPARATOR) )
996 {
997 item = nItem;
998 }
999 else
1000 {
1001 // don't give hints for separators (doesn't make sense) nor for the
1002 // items opening popup menus (they don't have them anyhow) but do clear
1003 // the status line - otherwise, we would be left with the help message
1004 // for the previous item which doesn't apply any more
1005 wxStatusBar *statbar = GetStatusBar();
1006 if ( statbar )
1007 {
1008 statbar->SetStatusText(wxEmptyString);
1009 }
1010
1011 return FALSE;
1012 }
1013
1014 wxMenuEvent event(wxEVT_MENU_HIGHLIGHT, item);
1015 event.SetEventObject( this );
1016
1017 return GetEventHandler()->ProcessEvent(event);
1018 }
1019
1020 // ---------------------------------------------------------------------------
1021 // the window proc for wxFrame
1022 // ---------------------------------------------------------------------------
1023
1024 long wxFrame::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
1025 {
1026 long rc = 0;
1027 bool processed = FALSE;
1028
1029 switch ( message )
1030 {
1031 case WM_CLOSE:
1032 // if we can't close, tell the system that we processed the
1033 // message - otherwise it would close us
1034 processed = !Close();
1035 break;
1036
1037 case WM_COMMAND:
1038 {
1039 WORD id, cmd;
1040 WXHWND hwnd;
1041 UnpackCommand((WXWPARAM)wParam, (WXLPARAM)lParam,
1042 &id, &hwnd, &cmd);
1043
1044 processed = HandleCommand(id, cmd, (WXHWND)hwnd);
1045 }
1046 break;
1047
1048 case WM_MENUSELECT:
1049 {
1050 WXWORD item, flags;
1051 WXHMENU hmenu;
1052 UnpackMenuSelect(wParam, lParam, &item, &flags, &hmenu);
1053
1054 processed = HandleMenuSelect(item, flags, hmenu);
1055 }
1056 break;
1057
1058 case WM_PAINT:
1059 processed = HandlePaint();
1060 break;
1061
1062 case WM_QUERYDRAGICON:
1063 {
1064 HICON hIcon = m_icon.Ok() ? GetHiconOf(m_icon)
1065 : (HICON)(m_defaultIcon);
1066 rc = (long)hIcon;
1067 processed = rc != 0;
1068 }
1069 break;
1070
1071 case WM_SIZE:
1072 processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam);
1073 break;
1074 }
1075
1076 if ( !processed )
1077 rc = wxWindow::MSWWindowProc(message, wParam, lParam);
1078
1079 return rc;
1080 }
1081