More framework updates
[wxWidgets.git] / src / os2 / frame.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: frame.cpp
3 // Purpose: wxFrame
4 // Author: David Webster
5 // Modified by:
6 // Created: 10/27/99
7 // RCS-ID: $Id$
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
14
15 #ifndef WX_PRECOMP
16 #include "wx/setup.h"
17 #include "wx/frame.h"
18 #include "wx/menu.h"
19 #include "wx/app.h"
20 #include "wx/utils.h"
21 #include "wx/dialog.h"
22 #include "wx/settings.h"
23 #include "wx/dcclient.h"
24 #endif // WX_PRECOMP
25
26 #include "wx/os2/private.h"
27
28 #if wxUSE_STATUSBAR
29 #include "wx/statusbr.h"
30 #include "wx/generic/statusbr.h"
31 #endif // wxUSE_STATUSBAR
32
33 #if wxUSE_TOOLBAR
34 #include "wx/toolbar.h"
35 #endif // wxUSE_TOOLBAR
36
37 #include "wx/menuitem.h"
38 #include "wx/log.h"
39
40 // ----------------------------------------------------------------------------
41 // globals
42 // ----------------------------------------------------------------------------
43
44 extern wxWindowList wxModelessWindows;
45 extern wxList WXDLLEXPORT wxPendingDelete;
46 extern wxChar wxFrameClassName[];
47 extern wxMenu *wxCurrentPopupMenu;
48
49 // ----------------------------------------------------------------------------
50 // event tables
51 // ----------------------------------------------------------------------------
52
53 BEGIN_EVENT_TABLE(wxFrame, wxFrameBase)
54 EVT_ACTIVATE(wxFrame::OnActivate)
55 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged)
56 END_EVENT_TABLE()
57
58 IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
59
60 // ============================================================================
61 // implementation
62 // ============================================================================
63
64 // ----------------------------------------------------------------------------
65 // static class members
66 // ----------------------------------------------------------------------------
67
68 #if wxUSE_NATIVE_STATUSBAR
69 bool wxFrame::m_bUseNativeStatusBar = TRUE;
70 #else
71 bool wxFrame::m_bUseNativeStatusBar = FALSE;
72 #endif
73
74 // ----------------------------------------------------------------------------
75 // creation/destruction
76 // ----------------------------------------------------------------------------
77
78 void wxFrame::Init()
79 {
80 m_bIconized = FALSE;
81
82 #if wxUSE_TOOLTIPS
83 m_hWndToolTip = 0;
84 #endif
85 // Data to save/restore when calling ShowFullScreen
86 m_lFsStyle = 0L;
87 m_lFsOldWindowStyle = 0L;
88 m_nFsStatusBarFields = 0;
89 m_nFsStatusBarHeight = 0;
90 m_nFsToolBarHeight = 0;
91 m_bFsIsMaximized = FALSE;
92 m_bFsIsShowing = FALSE;
93 } // end of wxFrame::Init
94
95 bool wxFrame::Create(
96 wxWindow* pParent
97 , wxWindowID vId
98 , const wxString& rsTitle
99 , const wxPoint& rPos
100 , const wxSize& rSize
101 , long lulStyle
102 , const wxString& rsName
103 )
104 {
105 int nX = rPos.x;
106 int nY = rPos.y;
107 int nWidth = rSize.x;
108 int nHeight = rSize.y;
109
110 SetName(rsName);
111 m_windowStyle = lulStyle;
112 m_frameMenuBar = NULL;
113 m_frameToolBar = NULL;
114 m_frameStatusBar = NULL;
115
116 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
117
118 if (vId > -1 )
119 m_windowId = vId;
120 else
121 m_windowId = (int)NewControlId();
122
123 if (pParent)
124 pParent->AddChild(this);
125
126 m_bIconized = FALSE;
127
128 //
129 // We pass NULL as parent to MSWCreate because frames with parents behave
130 // very strangely under Win95 shell.
131 // Alteration by JACS: keep normal Windows behaviour (float on top of parent)
132 // with this ulStyle.
133 //
134 if ((m_windowStyle & wxFRAME_FLOAT_ON_PARENT) == 0)
135 pParent = NULL;
136
137 if (!pParent)
138 wxTopLevelWindows.Append(this);
139
140 OS2Create( m_windowId
141 ,pParent
142 ,wxFrameClassName
143 ,this
144 ,rsTitle
145 ,nX
146 ,nY
147 ,nWidth
148 ,nHeight
149 ,lulStyle
150 );
151
152 wxModelessWindows.Append(this);
153 return TRUE;
154 } // end of wxFrame::Create
155
156 wxFrame::~wxFrame()
157 {
158 m_isBeingDeleted = TRUE;
159 wxTopLevelWindows.DeleteObject(this);
160
161 DeleteAllBars();
162
163 if (wxTheApp && (wxTopLevelWindows.Number() == 0))
164 {
165 wxTheApp->SetTopWindow(NULL);
166
167 if (wxTheApp->GetExitOnFrameDelete())
168 {
169 ::WinPostMsg(GetHwnd(), WM_QUIT, 0, 0);
170 }
171 }
172 wxModelessWindows.DeleteObject(this);
173
174 //
175 // For some reason, wxWindows can activate another task altogether
176 // when a frame is destroyed after a modal dialog has been invoked.
177 // Try to bring the parent to the top.
178 //
179 // MT:Only do this if this frame is currently the active window, else weird
180 // things start to happen.
181 //
182 if (wxGetActiveWindow() == this)
183 {
184 if (GetParent() && GetParent()->GetHWND())
185 {
186 ::WinSetWindowPos( (HWND) GetParent()->GetHWND()
187 ,HWND_TOP
188 ,0
189 ,0
190 ,0
191 ,0
192 ,SWP_ZORDER
193 );
194 }
195 }
196 } // end of wxFrame::~wxFrame
197
198 //
199 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
200 //
201 void wxFrame::DoGetClientSize(
202 int* pX
203 , int* pY
204 ) const
205 {
206 //
207 // OS/2 PM's coordinates go from bottom-left not
208 // top-left thus the += instead of the -=
209 //
210 RECTL vRect;
211 HWND hWndClient;
212
213 //
214 // PM has no GetClientRect that inherantly knows about the client window
215 // We have to explicitly go fetch it!
216 //
217 hWndClient = ::WinWindowFromID(GetHwnd(), FID_CLIENT);
218 ::WinQueryWindowRect(hWndClient, &vRect);
219
220 #if wxUSE_STATUSBAR
221 if ( GetStatusBar() )
222 {
223 int nStatusX;
224 int nStatusY;
225
226 GetStatusBar()->GetClientSize( &nStatusX
227 ,&nStatusY
228 );
229 vRect.yBottom += nStatusY;
230 }
231 #endif // wxUSE_STATUSBAR
232
233 wxPoint vPoint(GetClientAreaOrigin());
234
235 vRect.yBottom += vPoint.y;
236 vRect.xRight -= vPoint.x;
237
238 if (pX)
239 *pX = vRect.xRight;
240 if (pY)
241 *pY = vRect.yBottom;
242 } // end of wxFrame::DoGetClientSize
243
244 //
245 // Set the client size (i.e. leave the calculation of borders etc.
246 // to wxWindows)
247 //
248 void wxFrame::DoSetClientSize(
249 int nWidth
250 , int nHeight
251 )
252 {
253 HWND hWnd = GetHwnd();
254 HWND hWndClient;
255 RECTL vRect;
256 RECTL vRect2;
257
258 hWndClient = ::WinWindowFromID(GetHwnd(), FID_CLIENT);
259 ::WinQueryWindowRect(hWndClient, &vRect);
260
261 ::WinQueryWindowRect(hWnd, &vRect2);
262
263 //
264 // Find the difference between the entire window (title bar and all)
265 // and the client area; add this to the new client size to move the
266 // window. Remember OS/2's backwards y coord system!
267 //
268 int nActualWidth = vRect2.xRight - vRect2.xLeft - vRect.xRight + nWidth;
269 int nActualHeight = vRect2.yTop + vRect2.yTop - vRect.yTop + nHeight;
270
271 #if wxUSE_STATUSBAR
272 if ( GetStatusBar() )
273 {
274 int nStatusX;
275 int nStatusY;
276
277 GetStatusBar()->GetClientSize( &nStatusX
278 ,&nStatusY
279 );
280 nActualHeight += nStatusY;
281 }
282 #endif // wxUSE_STATUSBAR
283
284 wxPoint vPoint(GetClientAreaOrigin());
285 nActualWidth += vPoint.y;
286 nActualHeight += vPoint.x;
287
288 POINTL vPointl;
289
290 vPointl.x = vRect2.xLeft;
291 vPoint.y = vRect2.yTop;
292
293 ::WinSetWindowPos( hWnd
294 ,HWND_TOP
295 ,vPointl.x
296 ,vPointl.y
297 ,nActualWidth
298 ,nActualHeight
299 ,SWP_MOVE | SWP_SIZE | SWP_SHOW
300 );
301
302 wxSizeEvent vEvent( wxSize( nWidth
303 ,nHeight
304 )
305 ,m_windowId
306 );
307 vEvent.SetEventObject(this);
308 GetEventHandler()->ProcessEvent(vEvent);
309 } // end of wxFrame::DoSetClientSize
310
311 void wxFrame::DoGetSize(
312 int* pWidth
313 , int* pHeight
314 ) const
315 {
316 RECTL vRect;
317
318 ::WinQueryWindowRect(GetHwnd(), &vRect);
319 *pWidth = vRect.xRight - vRect.xLeft;
320 *pHeight = vRect.yTop - vRect.yBottom;
321 } // end of wxFrame::DoGetSize
322
323 void wxFrame::DoGetPosition(
324 int* pX
325 , int* pY
326 ) const
327 {
328 RECTL vRect;
329 POINTL vPoint;
330
331 ::WinQueryWindowRect(GetHwnd(), &vRect);
332 vPoint.x = vRect.xLeft;
333
334 //
335 // OS/2 is backwards [WIN32 it is vRect.yTop]
336 //
337 vPoint.y = vRect.yBottom;
338
339 *pX = vPoint.x;
340 *pY = vPoint.y;
341 } // end of wxFrame::DoGetPosition
342
343 // ----------------------------------------------------------------------------
344 // variations around ::ShowWindow()
345 // ----------------------------------------------------------------------------
346
347 void wxFrame::DoShowWindow(
348 int nShowCmd
349 )
350 {
351 ::WinShowWindow(GetHwnd(), nShowCmd);
352 m_bIconized = nShowCmd == SWP_MINIMIZE;
353 } // end of wxFrame::DoShowWindow
354
355 bool wxFrame::Show(
356 bool bShow
357 )
358 {
359 DoShowWindow(bShow ? SWP_SHOW : SWP_HIDE);
360
361 if (bShow)
362 {
363 wxActivateEvent vEvent(wxEVT_ACTIVATE, TRUE, m_windowId);
364
365 ::WinSetWindowPos( (HWND) GetHWND()
366 ,HWND_TOP
367 ,0
368 ,0
369 ,0
370 ,0
371 ,SWP_ZORDER
372 );
373 vEvent.SetEventObject(this);
374 GetEventHandler()->ProcessEvent(vEvent);
375 }
376 else
377 {
378 //
379 // Try to highlight the correct window (the parent)
380 //
381 if (GetParent())
382 {
383 HWND hWndParent = GetHwndOf(GetParent());
384
385 if (hWndParent)
386 ::WinSetWindowPos( hWndParent
387 ,HWND_TOP
388 ,0
389 ,0
390 ,0
391 ,0
392 ,SWP_ZORDER
393 );
394 }
395 }
396 return TRUE;
397 } // end of wxFrame::Show
398
399 void wxFrame::Iconize(
400 bool bIconize
401 )
402 {
403 DoShowWindow(bIconize ? SWP_MINIMIZE : SWP_RESTORE);
404 } // end of wxFrame::Iconize
405
406 void wxFrame::Maximize(
407 bool bMaximize)
408 {
409 DoShowWindow(bMaximize ? SWP_MAXIMIZE : SWP_RESTORE);
410 } // end of wxFrame::Maximize
411
412 void wxFrame::Restore()
413 {
414 DoShowWindow(SWP_RESTORE);
415 } // end of wxFrame::Restore
416
417 bool wxFrame::IsIconized() const
418 {
419 SWP vSwp;
420 bool bIconic;
421
422 ::WinQueryWindowPos(GetHwnd(), &vSwp);
423
424 if (vSwp.fl & SWP_MINIMIZE)
425 ((wxFrame*)this)->m_bIconized = TRUE;
426 else
427 ((wxFrame*)this)->m_bIconized = FALSE;
428 return m_bIconized;
429 } // end of wxFrame::IsIconized
430
431 // Is it maximized?
432 bool wxFrame::IsMaximized() const
433 {
434 SWP vSwp;
435 bool bIconic;
436
437 ::WinQueryWindowPos(GetHwnd(), &vSwp);
438 return (vSwp.fl & SWP_MAXIMIZE);
439 } // end of wxFrame::IsMaximized
440
441 void wxFrame::SetIcon(
442 const wxIcon& rIcon
443 )
444 {
445 wxFrameBase::SetIcon(rIcon);
446
447 if (m_icon.Ok())
448 {
449 WinSendMsg( GetHwnd()
450 ,WM_SETICON
451 ,(MPARAM)((HICON)m_icon.GetHICON())
452 ,NULL
453 );
454 }
455 } // end of wxFrame::SetIcon
456
457 #if wxUSE_STATUSBAR
458 wxStatusBar* wxFrame::OnCreateStatusBar(
459 int nNumber
460 , long lulStyle
461 , wxWindowID vId
462 , const wxString& rName
463 )
464 {
465 wxStatusBar* pStatusBar = NULL;
466
467 pStatusBar = wxFrameBase::OnCreateStatusBar( nNumber
468 ,lulStyle
469 ,vId
470 ,rName
471 );
472 return pStatusBar;
473 } // end of wxFrame::OnCreateStatusBar
474
475 void wxFrame::PositionStatusBar()
476 {
477 //
478 // Native status bar positions itself
479 //
480 if (m_frameStatusBar)
481 {
482 int nWidth;
483 int nHeight;
484 int nStatbarWidth;
485 int nStatbarHeight;
486 HWND hWndClient;
487 RECTL vRect;
488
489 hWndClient = ::WinWindowFromID(GetHwnd(), FID_CLIENT);
490 ::WinQueryWindowRect(hWndClient, &vRect);
491 nWidth = vRect.xRight - vRect.xLeft;
492 nHeight = vRect.yTop - vRect.yBottom;
493
494 m_frameStatusBar->GetSize( &nStatbarWidth
495 ,&nStatbarHeight
496 );
497
498 //
499 // Since we wish the status bar to be directly under the client area,
500 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
501 //
502 m_frameStatusBar->SetSize( 0
503 ,nHeight
504 ,nWidth
505 ,nStatbarHeight
506 );
507 }
508 } // end of wxFrame::PositionStatusBar
509 #endif // wxUSE_STATUSBAR
510
511 void wxFrame::DetachMenuBar()
512 {
513 if (m_frameMenuBar)
514 {
515 m_frameMenuBar->Detach();
516 m_frameMenuBar = NULL;
517 }
518 } // end of wxFrame::DetachMenuBar
519
520 void wxFrame::SetMenuBar(
521 wxMenuBar* pMenuBar
522 )
523 {
524 if (!pMenuBar)
525 {
526 DetachMenuBar();
527 return;
528 }
529
530 m_frameMenuBar = NULL;
531
532 // Can set a menubar several times.
533 // TODO: how to prevent a memory leak if you have a currently-unattached
534 // menubar? wxWindows assumes that the frame will delete the menu (otherwise
535 // there are problems for MDI).
536 if (pMenuBar->GetHMenu())
537 {
538 m_hMenu = pMenuBar->GetHMenu();
539 }
540 else
541 {
542 pMenuBar->Detach();
543
544 m_hMenu = pMenuBar->Create();
545
546 if (!m_hMenu)
547 return;
548 }
549
550 InternalSetMenuBar();
551
552 m_frameMenuBar = pMenuBar;
553 pMenuBar->Attach(this);
554 } // end of wxFrame::SetMenuBar
555
556 void wxFrame::InternalSetMenuBar()
557 {
558
559 ::WinPostMsg( GetHwnd()
560 ,WM_UPDATEFRAME
561 ,(MPARAM)FCF_MENU
562 ,NULL
563 );
564 } // end of wxFrame::InternalSetMenuBar
565
566 //
567 // Responds to colour changes, and passes event on to children
568 //
569 void wxFrame::OnSysColourChanged(
570 wxSysColourChangedEvent& rEvent
571 )
572 {
573 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
574 Refresh();
575
576 if (m_frameStatusBar)
577 {
578 wxSysColourChangedEvent vEvent2;
579
580 vEvent2.SetEventObject(m_frameStatusBar);
581 m_frameStatusBar->GetEventHandler()->ProcessEvent(vEvent2);
582 }
583
584 //
585 // Propagate the event to the non-top-level children
586 //
587 wxWindow::OnSysColourChanged(rEvent);
588 } // end of wxFrame::OnSysColourChanged
589
590 // Pass TRUE to show full screen, FALSE to restore.
591 bool wxFrame::ShowFullScreen(
592 bool bShow
593 , long lStyle
594 )
595 {
596 /*
597 // TODO
598 if (show)
599 {
600 if (IsFullScreen())
601 return FALSE;
602
603 m_fsIsShowing = TRUE;
604 m_fsStyle = style;
605
606 wxToolBar *theToolBar = GetToolBar();
607 wxStatusBar *theStatusBar = GetStatusBar();
608
609 int dummyWidth;
610
611 if (theToolBar)
612 theToolBar->GetSize(&dummyWidth, &m_fsToolBarHeight);
613 if (theStatusBar)
614 theStatusBar->GetSize(&dummyWidth, &m_fsStatusBarHeight);
615
616 // zap the toolbar, menubar, and statusbar
617
618 if ((style & wxFULLSCREEN_NOTOOLBAR) && theToolBar)
619 {
620 theToolBar->SetSize(-1,0);
621 theToolBar->Show(FALSE);
622 }
623
624 if (style & wxFULLSCREEN_NOMENUBAR)
625 SetMenu((HWND)GetHWND(), (HMENU) NULL);
626
627 // Save the number of fields in the statusbar
628 if ((style & wxFULLSCREEN_NOSTATUSBAR) && theStatusBar)
629 {
630 m_fsStatusBarFields = theStatusBar->GetFieldsCount();
631 SetStatusBar((wxStatusBar*) NULL);
632 delete theStatusBar;
633 }
634 else
635 m_fsStatusBarFields = 0;
636
637 // zap the frame borders
638
639 // save the 'normal' window style
640 m_fsOldWindowStyle = GetWindowLong((HWND)GetHWND(), GWL_STYLE);
641
642 // save the old position, width & height, maximize state
643 m_fsOldSize = GetRect();
644 m_fsIsMaximized = IsMaximized();
645
646 // decide which window style flags to turn off
647 LONG newStyle = m_fsOldWindowStyle;
648 LONG offFlags = 0;
649
650 if (style & wxFULLSCREEN_NOBORDER)
651 offFlags |= WS_BORDER;
652 if (style & wxFULLSCREEN_NOCAPTION)
653 offFlags |= (WS_CAPTION | WS_SYSMENU);
654
655 newStyle &= (~offFlags);
656
657 // change our window style to be compatible with full-screen mode
658 SetWindowLong((HWND)GetHWND(), GWL_STYLE, newStyle);
659
660 // resize to the size of the desktop
661 int width, height;
662
663 RECT rect;
664 ::GetWindowRect(GetDesktopWindow(), &rect);
665 width = rect.right - rect.left;
666 height = rect.bottom - rect.top;
667
668 SetSize(width, height);
669
670 // now flush the window style cache and actually go full-screen
671 SetWindowPos((HWND)GetHWND(), HWND_TOP, 0, 0, width, height, SWP_FRAMECHANGED);
672
673 wxSizeEvent event(wxSize(width, height), GetId());
674 GetEventHandler()->ProcessEvent(event);
675
676 return TRUE;
677 }
678 else
679 {
680 if (!IsFullScreen())
681 return FALSE;
682
683 m_fsIsShowing = FALSE;
684
685 wxToolBar *theToolBar = GetToolBar();
686
687 // restore the toolbar, menubar, and statusbar
688 if (theToolBar && (m_fsStyle & wxFULLSCREEN_NOTOOLBAR))
689 {
690 theToolBar->SetSize(-1, m_fsToolBarHeight);
691 theToolBar->Show(TRUE);
692 }
693
694 if ((m_fsStyle & wxFULLSCREEN_NOSTATUSBAR) && (m_fsStatusBarFields > 0))
695 {
696 CreateStatusBar(m_fsStatusBarFields);
697 PositionStatusBar();
698 }
699
700 if ((m_fsStyle & wxFULLSCREEN_NOMENUBAR) && (m_hMenu != 0))
701 SetMenu((HWND)GetHWND(), (HMENU)m_hMenu);
702
703 Maximize(m_fsIsMaximized);
704 SetWindowLong((HWND)GetHWND(),GWL_STYLE, m_fsOldWindowStyle);
705 SetWindowPos((HWND)GetHWND(),HWND_TOP,m_fsOldSize.x, m_fsOldSize.y,
706 m_fsOldSize.width, m_fsOldSize.height, SWP_FRAMECHANGED);
707
708 return TRUE;
709 }
710 */
711 return TRUE;
712 } // end of wxFrame::ShowFullScreen
713
714 //
715 // Frame window
716 //
717 bool wxFrame::OS2Create(
718 int nId
719 , wxWindow* pParent
720 , const wxChar* zWclass
721 , wxWindow* pWxWin
722 , const wxChar* zTitle
723 , int nX
724 , int nY
725 , int nWidth
726 , int nHeight
727 , long ulStyle
728 )
729 {
730 ULONG ulPmFlags = 0L;
731 ULONG ulExtraFlags = 0L;
732 ULONG ulTempFlags = FCF_STANDARD;
733
734 m_hDefaultIcon = (WXHICON) (wxSTD_FRAME_ICON ? wxSTD_FRAME_ICON : wxDEFAULT_FRAME_ICON);
735
736 if (ulStyle == wxDEFAULT_FRAME_STYLE)
737 ulPmFlags = FCF_STANDARD;
738 else
739 {
740 if ((ulStyle & wxCAPTION) == wxCAPTION)
741 ulPmFlags = FCF_TASKLIST;
742 else
743 ulPmFlags = FCF_NOMOVEWITHOWNER;
744
745 if (ulStyle & wxMINIMIZE_BOX)
746 ulPmFlags |= FCF_MINBUTTON;
747 if (ulStyle & wxMAXIMIZE_BOX)
748 ulPmFlags |= FCF_MAXBUTTON;
749 if (ulStyle & wxTHICK_FRAME)
750 ulPmFlags |= FCF_DLGBORDER;
751 if (ulStyle & wxSYSTEM_MENU)
752 ulPmFlags |= FCF_SYSMENU;
753 if ((ulStyle & wxMINIMIZE) || (ulStyle & wxICONIZE))
754 ulPmFlags |= WS_MINIMIZED;
755 if (ulStyle & wxMAXIMIZE)
756 ulPmFlags |= WS_MAXIMIZED;
757 if (ulStyle & wxCAPTION)
758 ulPmFlags |= FCF_TASKLIST;
759 if (ulStyle & wxCLIP_CHILDREN)
760 {
761 // Invalid for frame windows under PM
762 }
763
764 //
765 // Keep this in wxFrame because it saves recoding this function
766 // in wxTinyFrame
767 //
768 #if wxUSE_ITSY_BITSY
769 if (ulStyle & wxTINY_CAPTION_VERT)
770 ulExtraFlags |= kVertCaption;
771 if (ulStyle & wxTINY_CAPTION_HORIZ)
772 ulExtraFlags |= kHorzCaption;
773 #else
774 if (ulStyle & wxTINY_CAPTION_VERT)
775 ulPmFlags |= FCF_TASKLIST;
776 if (ulStyle & wxTINY_CAPTION_HORIZ)
777 ulPmFlags |= FCF_TASKLIST;
778 #endif
779 if ((ulStyle & wxTHICK_FRAME) == 0)
780 ulPmFlags |= FCF_BORDER;
781 if (ulStyle & wxFRAME_TOOL_WINDOW)
782 ulExtraFlags = kFrameToolWindow;
783
784 if (ulStyle & wxSTAY_ON_TOP)
785 ulPmFlags |= FCF_SYSMODAL;
786 }
787 //
788 // Clear the visible flag, we always call show
789 //
790 ulPmFlags &= (unsigned long)~WS_VISIBLE;
791 m_bIconized = FALSE;
792 if ( !wxWindow::OS2Create( nId
793 ,pParent
794 ,zWclass
795 ,pWxWin
796 ,zTitle
797 ,nX
798 ,nY
799 ,nWidth
800 ,nHeight
801 ,ulPmFlags
802 ,NULL
803 ,ulExtraFlags))
804 {
805 return FALSE;
806 }
807 return TRUE;
808 } // end of wxFrame::OS2Create
809
810 //
811 // Default activation behaviour - set the focus for the first child
812 // subwindow found.
813 //
814 void wxFrame::OnActivate(
815 wxActivateEvent& rEvent
816 )
817 {
818 for (wxWindowList::Node* pNode = GetChildren().GetFirst();
819 pNode;
820 pNode = pNode->GetNext())
821 {
822 // FIXME all this is totally bogus - we need to do the same as wxPanel,
823 // but how to do it without duplicating the code?
824
825 // restore focus
826 wxWindow* pChild = pNode->GetData();
827
828 if (!pChild->IsTopLevel()
829 #if wxUSE_TOOLBAR
830 && !wxDynamicCast(pChild, wxToolBar)
831 #endif // wxUSE_TOOLBAR
832 #if wxUSE_STATUSBAR
833 && !wxDynamicCast(pChild, wxStatusBar)
834 #endif // wxUSE_STATUSBAR
835 )
836 {
837 pChild->SetFocus();
838 return;
839 }
840 }
841 } // end of wxFrame::OnActivate
842
843 // ----------------------------------------------------------------------------
844 // wxFrame size management: we exclude the areas taken by menu/status/toolbars
845 // from the client area, so the client area is what's really available for the
846 // frame contents
847 // ----------------------------------------------------------------------------
848
849 // Checks if there is a toolbar, and returns the first free client position
850 wxPoint wxFrame::GetClientAreaOrigin() const
851 {
852 wxPoint vPoint(0, 0);
853
854 if (GetToolBar())
855 {
856 int nWidth;
857 int nHeight;
858
859 GetToolBar()->GetSize( &nWidth
860 ,&nHeight
861 );
862
863 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL)
864 {
865 vPoint.x += nWidth;
866 }
867 else
868 {
869 // PM is backwards from windows
870 vPoint.y += nHeight;
871 }
872 }
873 return vPoint;
874 } // end of wxFrame::GetClientAreaOrigin
875
876 // ----------------------------------------------------------------------------
877 // tool/status bar stuff
878 // ----------------------------------------------------------------------------
879
880 #if wxUSE_TOOLBAR
881
882 wxToolBar* wxFrame::CreateToolBar(
883 long lStyle
884 , wxWindowID vId
885 , const wxString& rName
886 )
887 {
888 if (wxFrameBase::CreateToolBar( lStyle
889 ,vId
890 ,rName
891 ))
892 {
893 PositionToolBar();
894 }
895 return m_frameToolBar;
896 } // end of wxFrame::CreateToolBar
897
898 void wxFrame::PositionToolBar()
899 {
900 HWND hWndClient;
901 RECTL vRect;
902
903 hWndClient = ::WinWindowFromID(GetHwnd(), FID_CLIENT);
904 ::WinQueryWindowRect(hWndClient, &vRect);
905
906 #if wxUSE_STATUSBAR
907 if (GetStatusBar())
908 {
909 int nStatusX;
910 int nStatusY;
911
912 GetStatusBar()->GetClientSize( &nStatusX
913 ,&nStatusY
914 );
915 // PM is backwards from windows
916 vRect.yBottom += nStatusY;
917 }
918 #endif // wxUSE_STATUSBAR
919
920 if ( GetToolBar() )
921 {
922 int nToolbarWidth;
923 int nToolbarHeight;
924
925 GetToolBar()->GetSize( &nToolbarWidth
926 ,&nToolbarHeight
927 );
928
929 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL)
930 {
931 nToolbarHeight = vRect.yBottom;
932 }
933 else
934 {
935 nToolbarWidth = vRect.xRight;
936 }
937
938 //
939 // Use the 'real' PM position here
940 //
941 GetToolBar()->SetSize( 0
942 ,0
943 ,nToolbarWidth
944 ,nToolbarHeight
945 ,wxSIZE_NO_ADJUSTMENTS
946 );
947 }
948 } // end of wxFrame::PositionToolBar
949 #endif // wxUSE_TOOLBAR
950
951 // ----------------------------------------------------------------------------
952 // frame state (iconized/maximized/...)
953 // ----------------------------------------------------------------------------
954
955 //
956 // propagate our state change to all child frames: this allows us to emulate X
957 // Windows behaviour where child frames float independently of the parent one
958 // on the desktop, but are iconized/restored with it
959 //
960 void wxFrame::IconizeChildFrames(
961 bool bIconize
962 )
963 {
964 for (wxWindowList::Node* pNode = GetChildren().GetFirst();
965 pNode;
966 pNode = pNode->GetNext() )
967 {
968 wxWindow* pWin = pNode->GetData();
969
970 if (pWin->IsKindOf(CLASSINFO(wxFrame)) )
971 {
972 ((wxFrame *)pWin)->Iconize(bIconize);
973 }
974 }
975 } // end of wxFrame::IconizeChildFrames
976
977 // ===========================================================================
978 // message processing
979 // ===========================================================================
980
981 // ---------------------------------------------------------------------------
982 // preprocessing
983 // ---------------------------------------------------------------------------
984 bool wxFrame::OS2TranslateMessage(
985 WXMSG* pMsg
986 )
987 {
988 if (wxWindow::OS2TranslateMessage(pMsg))
989 return TRUE;
990 //
991 // try the menu bar accels
992 //
993 wxMenuBar* pMenuBar = GetMenuBar();
994
995 if (!pMenuBar )
996 return FALSE;
997
998 const wxAcceleratorTable& rAcceleratorTable = pMenuBar->GetAccelTable();
999 return rAcceleratorTable.Translate(this, pMsg);
1000 } // end of wxFrame::OS2TranslateMessage
1001
1002 // ---------------------------------------------------------------------------
1003 // our private (non virtual) message handlers
1004 // ---------------------------------------------------------------------------
1005 bool wxFrame::HandlePaint()
1006 {
1007 RECTL vRect;
1008
1009 if (::WinQueryUpdateRect(GetHwnd(), &vRect))
1010 {
1011 if (m_bIconized)
1012 {
1013 //
1014 // Icons in PM are the same as "pointers"
1015 //
1016 HPOINTER hIcon;
1017
1018 if (m_icon.Ok())
1019 hIcon = (HPOINTER)::WinSendMsg(GetHwnd(), WM_QUERYICON, 0L, 0L);
1020 else
1021 hIcon = (HPOINTER)m_hDefaultIcon;
1022
1023 //
1024 // Hold a pointer to the dc so long as the OnPaint() message
1025 // is being processed
1026 //
1027 RECTL vRect2;
1028 HPS hPs = ::WinBeginPaint(GetHwnd(), NULLHANDLE, &vRect2);
1029
1030 //
1031 // Erase background before painting or we get white background
1032 //
1033 OS2DefWindowProc(WM_ERASEBACKGROUND, (MPARAM)hPs, (MPARAM)&vRect2);
1034
1035 if (hIcon)
1036 {
1037 HWND hWndClient;
1038 RECTL vRect3;
1039
1040 hWndClient = ::WinWindowFromID(GetHwnd(), FID_CLIENT);
1041 ::WinQueryWindowRect(hWndClient, &vRect3);
1042
1043 static const int nIconWidth = 32;
1044 static const int nIconHeight = 32;
1045 int nIconX = (int)((vRect3.xRight - nIconWidth)/2);
1046 int nIconY = (int)((vRect3.yBottom + nIconHeight)/2);
1047
1048 ::WinDrawPointer(hPs, nIconX, nIconY, hIcon, DP_NORMAL);
1049 }
1050 ::WinEndPaint(hPs);
1051 return TRUE;
1052 }
1053 else
1054 {
1055 return wxWindow::HandlePaint();
1056 }
1057 }
1058 else
1059 {
1060 // nothing to paint - processed
1061 return TRUE;
1062 }
1063 return FALSE;
1064 } // end of wxFrame::HandlePaint
1065
1066 bool wxFrame::HandleSize(
1067 int nX
1068 , int nY
1069 , WXUINT nId
1070 )
1071 {
1072 bool bProcessed = FALSE;
1073
1074 switch (nId)
1075 {
1076 case kSizeNormal:
1077 //
1078 // Only do it it if we were iconized before, otherwise resizing the
1079 // parent frame has a curious side effect of bringing it under it's
1080 // children
1081 if (!m_bIconized )
1082 break;
1083
1084 //
1085 // restore all child frames too
1086 //
1087 IconizeChildFrames(FALSE);
1088
1089 //
1090 // fall through
1091 //
1092
1093 case kSizeMax:
1094 m_bIconized = FALSE;
1095 break;
1096
1097 case kSizeMin:
1098 //
1099 // Iconize all child frames too
1100 //
1101 IconizeChildFrames(TRUE);
1102 m_bIconized = TRUE;
1103 break;
1104 }
1105
1106 if (!m_bIconized)
1107 {
1108 //
1109 // forward WM_SIZE to status bar control
1110 //
1111 #if wxUSE_NATIVE_STATUSBAR
1112 if (m_frameStatusBar && m_frameStatusBar->IsKindOf(CLASSINFO(wxStatusBar95)))
1113 {
1114 wxSizeEvent vEvent( wxSize( nX
1115 ,nY
1116 )
1117 ,m_frameStatusBar->GetId()
1118 );
1119
1120 vEvent.SetEventObject(m_frameStatusBar);
1121 m_frameStatusBar->OnSize(vEvent);
1122 }
1123 #endif // wxUSE_NATIVE_STATUSBAR
1124
1125 PositionStatusBar();
1126 PositionToolBar();
1127 wxSizeEvent vEvent( wxSize( nX
1128 ,nY
1129 )
1130 ,m_windowId
1131 );
1132
1133 vEvent.SetEventObject(this);
1134 bProcessed = GetEventHandler()->ProcessEvent(vEvent);
1135 }
1136 return bProcessed;
1137 } // end of wxFrame::HandleSize
1138
1139 bool wxFrame::HandleCommand(
1140 WXWORD nId
1141 , WXWORD nCmd
1142 , WXHWND hControl
1143 )
1144 {
1145 if (hControl)
1146 {
1147 //
1148 // In case it's e.g. a toolbar.
1149 //
1150 wxWindow* pWin = wxFindWinFromHandle(hControl);
1151
1152 if (pWin)
1153 return pWin->OS2Command( nCmd
1154 ,nId
1155 );
1156 }
1157
1158 //
1159 // Handle here commands from menus and accelerators
1160 //
1161 if (nCmd == 0 || nCmd == 1)
1162 {
1163 if (wxCurrentPopupMenu)
1164 {
1165 wxMenu* pPopupMenu = wxCurrentPopupMenu;
1166
1167 wxCurrentPopupMenu = NULL;
1168
1169 return pPopupMenu->OS2Command( nCmd
1170 ,nId
1171 );
1172 }
1173
1174 if (ProcessCommand(nId))
1175 {
1176 return TRUE;
1177 }
1178 }
1179 return FALSE;
1180 } // end of wxFrame::HandleCommand
1181
1182 bool wxFrame::HandleMenuSelect(
1183 WXWORD nItem
1184 , WXWORD nFlags
1185 , WXHMENU hMenu
1186 )
1187 {
1188 int nMenuItem;
1189
1190 if (nFlags == 0xFFFF && hMenu == 0)
1191 {
1192 //
1193 // Menu was removed from screen
1194 //
1195 nMenuItem = -1;
1196 }
1197 else if (!(nFlags & MIS_SUBMENU) && !(nFlags & MIS_SEPARATOR))
1198 {
1199 nMenuItem = nItem;
1200 }
1201 else
1202 {
1203 //
1204 // Don't give hints for separators (doesn't make sense) nor for the
1205 // items opening popup menus (they don't have them anyhow)
1206 //
1207 return FALSE;
1208 }
1209 wxMenuEvent vEvent(wxEVT_MENU_HIGHLIGHT, nMenuItem);
1210
1211 vEvent.SetEventObject(this);
1212 return GetEventHandler()->ProcessEvent(vEvent);
1213 } // end of wxFrame::HandleMenuSelect
1214
1215 // ---------------------------------------------------------------------------
1216 // the window proc for wxFrame
1217 // ---------------------------------------------------------------------------
1218
1219 MRESULT wxFrame::OS2WindowProc(
1220 WXUINT uMessage
1221 , WXWPARAM wParam
1222 , WXLPARAM lParam
1223 )
1224 {
1225 MRESULT mRc = 0L;
1226 bool bProcessed = FALSE;
1227
1228 switch (uMessage)
1229 {
1230 case WM_CLOSE:
1231 //
1232 // If we can't close, tell the system that we processed the
1233 // message - otherwise it would close us
1234 //
1235 bProcessed = !Close();
1236 break;
1237
1238 case WM_COMMAND:
1239 {
1240 WORD wId;
1241 WORD wCmd;
1242 WXHWND hWnd;
1243
1244 UnpackCommand( (WXWPARAM)wParam
1245 ,(WXLPARAM)lParam
1246 ,&wId
1247 ,&hWnd
1248 ,&wCmd
1249 );
1250 bProcessed = HandleCommand( wId
1251 ,wCmd
1252 ,(WXHWND)hWnd
1253 );
1254 }
1255 break;
1256
1257 case WM_MENUSELECT:
1258 {
1259 WXWORD wItem;
1260 WXWORD wFlags;
1261 WXHMENU hMenu;
1262
1263 UnpackMenuSelect( wParam
1264 ,lParam
1265 ,&wItem
1266 ,&wFlags
1267 ,&hMenu
1268 );
1269 bProcessed = HandleMenuSelect( wItem
1270 ,wFlags
1271 ,hMenu
1272 );
1273 }
1274 break;
1275
1276 case WM_PAINT:
1277 bProcessed = HandlePaint();
1278 break;
1279
1280 case CM_QUERYDRAGIMAGE:
1281 {
1282 HPOINTER hIcon;
1283
1284 if (m_icon.Ok())
1285 hIcon = (HPOINTER)::WinSendMsg(GetHwnd(), WM_QUERYICON, 0L, 0L);
1286 else
1287 hIcon = (HPOINTER)m_hDefaultIcon;
1288 mRc = (MRESULT)hIcon;
1289 bProcessed = mRc != 0;
1290 }
1291 break;
1292
1293 case WM_SIZE:
1294 bProcessed = HandleSize(LOWORD(lParam), HIWORD(lParam), (WXUINT)wParam);
1295 break;
1296 }
1297
1298 if (!bProcessed )
1299 mRc = wxWindow::OS2WindowProc( uMessage
1300 ,wParam
1301 ,lParam
1302 );
1303 return (MRESULT)0;
1304 } // wxFrame::OS2WindowProc
1305