]> git.saurik.com Git - wxWidgets.git/blame - src/os2/frame.cpp
1. more corrections for ref counted editors/renderers (doesn't crash any more,
[wxWidgets.git] / src / os2 / frame.cpp
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: frame.cpp
3// Purpose: wxFrame
f0a56ab0 4// Author: David Webster
0e320a79 5// Modified by:
29435d81 6// Created: 10/27/99
0e320a79 7// RCS-ID: $Id$
f0a56ab0 8// Copyright: (c) David Webster
0e320a79
DW
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
21802234
DW
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"
f38374d0
DW
27
28#if wxUSE_STATUSBAR
29 #include "wx/statusbr.h"
ea51d98d 30 #include "wx/generic/statusbr.h"
f38374d0
DW
31#endif // wxUSE_STATUSBAR
32
33#if wxUSE_TOOLBAR
34 #include "wx/toolbar.h"
35#endif // wxUSE_TOOLBAR
36
0e320a79 37#include "wx/menuitem.h"
21802234 38#include "wx/log.h"
0e320a79 39
f38374d0
DW
40// ----------------------------------------------------------------------------
41// globals
42// ----------------------------------------------------------------------------
43
21802234
DW
44extern wxWindowList wxModelessWindows;
45extern wxList WXDLLEXPORT wxPendingDelete;
46extern wxChar wxFrameClassName[];
47extern wxMenu *wxCurrentPopupMenu;
0e320a79 48
f38374d0
DW
49// ----------------------------------------------------------------------------
50// event tables
51// ----------------------------------------------------------------------------
52
f38374d0
DW
53BEGIN_EVENT_TABLE(wxFrame, wxFrameBase)
54 EVT_ACTIVATE(wxFrame::OnActivate)
55 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged)
0e320a79
DW
56END_EVENT_TABLE()
57
58IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
0e320a79 59
f38374d0
DW
60// ============================================================================
61// implementation
62// ============================================================================
0e320a79 63
f38374d0
DW
64// ----------------------------------------------------------------------------
65// static class members
66// ----------------------------------------------------------------------------
0e320a79 67
f38374d0 68#if wxUSE_NATIVE_STATUSBAR
a885d89a 69 bool wxFrame::m_bUseNativeStatusBar = TRUE;
f38374d0 70#else
a885d89a 71 bool wxFrame::m_bUseNativeStatusBar = FALSE;
f38374d0 72#endif
0e320a79 73
f38374d0
DW
74// ----------------------------------------------------------------------------
75// creation/destruction
76// ----------------------------------------------------------------------------
77
78void wxFrame::Init()
0e320a79 79{
80d83cbc 80 m_bIconized = FALSE;
f38374d0 81
21802234 82#if wxUSE_TOOLTIPS
a885d89a 83 m_hWndToolTip = 0;
21802234 84#endif
ea51d98d
DW
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
95bool wxFrame::Create(
96 wxWindow* pParent
97, wxWindowID vId
98, const wxString& rsTitle
99, const wxPoint& rPos
100, const wxSize& rSize
a885d89a 101, long lulStyle
ea51d98d
DW
102, const wxString& rsName
103)
f38374d0 104{
ea51d98d
DW
105 int nX = rPos.x;
106 int nY = rPos.y;
107 int nWidth = rSize.x;
108 int nHeight = rSize.y;
ea51d98d
DW
109
110 SetName(rsName);
a885d89a 111 m_windowStyle = lulStyle;
ea51d98d
DW
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
80d83cbc 123 if (pParent)
ea51d98d
DW
124 pParent->AddChild(this);
125
126 m_bIconized = FALSE;
127
128 //
129 // We pass NULL as parent to MSWCreate because frames with parents behave
80d83cbc 130 // very strangely under Win95 shell.
ea51d98d 131 // Alteration by JACS: keep normal Windows behaviour (float on top of parent)
a885d89a 132 // with this ulStyle.
ea51d98d
DW
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
a885d89a 149 ,lulStyle
ea51d98d
DW
150 );
151
152 wxModelessWindows.Append(this);
153 return TRUE;
154} // end of wxFrame::Create
0e320a79
DW
155
156wxFrame::~wxFrame()
157{
ea51d98d
DW
158 m_isBeingDeleted = TRUE;
159 wxTopLevelWindows.DeleteObject(this);
0e320a79 160
ea51d98d 161 DeleteAllBars();
29435d81 162
ea51d98d
DW
163 if (wxTheApp && (wxTopLevelWindows.Number() == 0))
164 {
165 wxTheApp->SetTopWindow(NULL);
0e320a79 166
ea51d98d
DW
167 if (wxTheApp->GetExitOnFrameDelete())
168 {
80d83cbc 169 ::WinPostMsg(GetHwnd(), WM_QUIT, 0, 0);
ea51d98d
DW
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)
0e320a79 183 {
ea51d98d
DW
184 if (GetParent() && GetParent()->GetHWND())
185 {
ea51d98d
DW
186 ::WinSetWindowPos( (HWND) GetParent()->GetHWND()
187 ,HWND_TOP
80d83cbc
DW
188 ,0
189 ,0
190 ,0
191 ,0
192 ,SWP_ZORDER
ea51d98d
DW
193 );
194 }
0e320a79 195 }
ea51d98d 196} // end of wxFrame::~wxFrame
0e320a79 197
ea51d98d 198//
0e320a79 199// Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
ea51d98d 200//
80d83cbc
DW
201void wxFrame::DoGetClientSize(
202 int* pX
203, int* pY
204) const
0e320a79 205{
80d83cbc 206 //
a885d89a 207 // OS/2 PM's coordinates go from bottom-left not
80d83cbc
DW
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 //
a885d89a 217 hWndClient = ::WinWindowFromID(GetHwnd(), FID_CLIENT);
80d83cbc 218 ::WinQueryWindowRect(hWndClient, &vRect);
21802234 219
f38374d0 220#if wxUSE_STATUSBAR
80d83cbc
DW
221 if ( GetStatusBar() )
222 {
a885d89a 223 int nStatusX;
80d83cbc
DW
224 int nStatusY;
225
226 GetStatusBar()->GetClientSize( &nStatusX
227 ,&nStatusY
228 );
229 vRect.yBottom += nStatusY;
230 }
f38374d0 231#endif // wxUSE_STATUSBAR
21802234 232
80d83cbc 233 wxPoint vPoint(GetClientAreaOrigin());
a885d89a
DW
234
235 vRect.yBottom += vPoint.y;
236 vRect.xRight -= vPoint.x;
21802234 237
80d83cbc
DW
238 if (pX)
239 *pX = vRect.xRight;
240 if (pY)
241 *pY = vRect.yBottom;
242} // end of wxFrame::DoGetClientSize
0e320a79 243
a885d89a 244//
0e320a79
DW
245// Set the client size (i.e. leave the calculation of borders etc.
246// to wxWindows)
80d83cbc
DW
247//
248void wxFrame::DoSetClientSize(
249 int nWidth
250, int nHeight
251)
0e320a79 252{
80d83cbc
DW
253 HWND hWnd = GetHwnd();
254 HWND hWndClient;
255 RECTL vRect;
a7ef993c 256 RECTL vRect2;
0e320a79 257
a885d89a 258 hWndClient = ::WinWindowFromID(GetHwnd(), FID_CLIENT);
80d83cbc 259 ::WinQueryWindowRect(hWndClient, &vRect);
21802234 260
80d83cbc 261 ::WinQueryWindowRect(hWnd, &vRect2);
21802234 262
80d83cbc
DW
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;
29435d81 270
f38374d0 271#if wxUSE_STATUSBAR
80d83cbc
DW
272 if ( GetStatusBar() )
273 {
274 int nStatusX;
275 int nStatusY;
276
277 GetStatusBar()->GetClientSize( &nStatusX
278 ,&nStatusY
279 );
280 nActualHeight += nStatusY;
281 }
f38374d0 282#endif // wxUSE_STATUSBAR
29435d81 283
80d83cbc
DW
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
311void wxFrame::DoGetSize(
312 int* pWidth
313, int* pHeight
314) const
315{
316 RECTL vRect;
21802234 317
80d83cbc
DW
318 ::WinQueryWindowRect(GetHwnd(), &vRect);
319 *pWidth = vRect.xRight - vRect.xLeft;
320 *pHeight = vRect.yTop - vRect.yBottom;
321} // end of wxFrame::DoGetSize
21802234 322
80d83cbc
DW
323void wxFrame::DoGetPosition(
324 int* pX
325, int* pY
326) const
327{
328 RECTL vRect;
a885d89a 329 POINTL vPoint;
29435d81 330
80d83cbc
DW
331 ::WinQueryWindowRect(GetHwnd(), &vRect);
332 vPoint.x = vRect.xLeft;
0e320a79 333
80d83cbc
DW
334 //
335 // OS/2 is backwards [WIN32 it is vRect.yTop]
336 //
337 vPoint.y = vRect.yBottom;
0e320a79 338
80d83cbc
DW
339 *pX = vPoint.x;
340 *pY = vPoint.y;
341} // end of wxFrame::DoGetPosition
0e320a79 342
f38374d0
DW
343// ----------------------------------------------------------------------------
344// variations around ::ShowWindow()
345// ----------------------------------------------------------------------------
346
80d83cbc
DW
347void wxFrame::DoShowWindow(
348 int nShowCmd
349)
0e320a79 350{
80d83cbc
DW
351 ::WinShowWindow(GetHwnd(), nShowCmd);
352 m_bIconized = nShowCmd == SWP_MINIMIZE;
353} // end of wxFrame::DoShowWindow
21802234 354
80d83cbc
DW
355bool wxFrame::Show(
356 bool bShow
357)
0e320a79 358{
a885d89a 359 DoShowWindow(bShow ? SWP_SHOW : SWP_HIDE);
21802234 360
80d83cbc 361 if (bShow)
f38374d0 362 {
80d83cbc
DW
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);
f38374d0
DW
375 }
376 else
377 {
80d83cbc 378 //
f38374d0 379 // Try to highlight the correct window (the parent)
80d83cbc
DW
380 //
381 if (GetParent())
f38374d0 382 {
80d83cbc
DW
383 HWND hWndParent = GetHwndOf(GetParent());
384
f38374d0 385 if (hWndParent)
80d83cbc
DW
386 ::WinSetWindowPos( hWndParent
387 ,HWND_TOP
388 ,0
389 ,0
390 ,0
391 ,0
392 ,SWP_ZORDER
393 );
f38374d0
DW
394 }
395 }
f38374d0 396 return TRUE;
80d83cbc 397} // end of wxFrame::Show
f38374d0 398
80d83cbc
DW
399void wxFrame::Iconize(
400 bool bIconize
401)
f38374d0 402{
80d83cbc
DW
403 DoShowWindow(bIconize ? SWP_MINIMIZE : SWP_RESTORE);
404} // end of wxFrame::Iconize
0e320a79 405
80d83cbc
DW
406void wxFrame::Maximize(
407 bool bMaximize)
0e320a79 408{
80d83cbc
DW
409 DoShowWindow(bMaximize ? SWP_MAXIMIZE : SWP_RESTORE);
410} // end of wxFrame::Maximize
f38374d0
DW
411
412void wxFrame::Restore()
413{
80d83cbc
DW
414 DoShowWindow(SWP_RESTORE);
415} // end of wxFrame::Restore
0e320a79
DW
416
417bool wxFrame::IsIconized() const
418{
80d83cbc
DW
419 SWP vSwp;
420 bool bIconic;
421
a885d89a
DW
422 ::WinQueryWindowPos(GetHwnd(), &vSwp);
423
80d83cbc
DW
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
0e320a79 430
21802234
DW
431// Is it maximized?
432bool wxFrame::IsMaximized() const
0e320a79 433{
80d83cbc
DW
434 SWP vSwp;
435 bool bIconic;
436
a885d89a 437 ::WinQueryWindowPos(GetHwnd(), &vSwp);
80d83cbc
DW
438 return (vSwp.fl & SWP_MAXIMIZE);
439} // end of wxFrame::IsMaximized
0e320a79 440
0fe536e3
DW
441void wxFrame::SetIcon(
442 const wxIcon& rIcon
443)
0e320a79 444{
0fe536e3 445 wxFrameBase::SetIcon(rIcon);
f38374d0 446
0fe536e3 447 if (m_icon.Ok())
f38374d0 448 {
a885d89a
DW
449 WinSendMsg( GetHwnd()
450 ,WM_SETICON
451 ,(MPARAM)((HICON)m_icon.GetHICON())
452 ,NULL
453 );
f38374d0 454 }
0fe536e3 455} // end of wxFrame::SetIcon
0e320a79 456
21802234 457#if wxUSE_STATUSBAR
0fe536e3
DW
458wxStatusBar* wxFrame::OnCreateStatusBar(
459 int nNumber
a885d89a 460, long lulStyle
0fe536e3
DW
461, wxWindowID vId
462, const wxString& rName
463)
0e320a79 464{
0fe536e3 465 wxStatusBar* pStatusBar = NULL;
0e320a79 466
0fe536e3 467 pStatusBar = wxFrameBase::OnCreateStatusBar( nNumber
a885d89a 468 ,lulStyle
0fe536e3
DW
469 ,vId
470 ,rName
471 );
472 return pStatusBar;
473} // end of wxFrame::OnCreateStatusBar
0e320a79
DW
474
475void wxFrame::PositionStatusBar()
476{
0fe536e3
DW
477 //
478 // Native status bar positions itself
479 //
480 if (m_frameStatusBar)
f38374d0 481 {
a885d89a 482 int nWidth;
0fe536e3 483 int nHeight;
a885d89a 484 int nStatbarWidth;
0fe536e3
DW
485 int nStatbarHeight;
486 HWND hWndClient;
487 RECTL vRect;
488
a885d89a 489 hWndClient = ::WinWindowFromID(GetHwnd(), FID_CLIENT);
0fe536e3
DW
490 ::WinQueryWindowRect(hWndClient, &vRect);
491 nWidth = vRect.xRight - vRect.xLeft;
a885d89a
DW
492 nHeight = vRect.yTop - vRect.yBottom;
493
0fe536e3
DW
494 m_frameStatusBar->GetSize( &nStatbarWidth
495 ,&nStatbarHeight
496 );
f38374d0 497
0fe536e3 498 //
f38374d0
DW
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.
0fe536e3
DW
501 //
502 m_frameStatusBar->SetSize( 0
503 ,nHeight
504 ,nWidth
505 ,nStatbarHeight
506 );
f38374d0 507 }
0fe536e3 508} // end of wxFrame::PositionStatusBar
21802234 509#endif // wxUSE_STATUSBAR
0e320a79 510
21802234 511void wxFrame::DetachMenuBar()
0e320a79 512{
21802234 513 if (m_frameMenuBar)
0e320a79 514 {
29435d81 515 m_frameMenuBar->Detach();
0e320a79 516 m_frameMenuBar = NULL;
21802234 517 }
0fe536e3 518} // end of wxFrame::DetachMenuBar
21802234 519
0fe536e3 520void wxFrame::SetMenuBar(
a885d89a 521 wxMenuBar* pMenuBar
0fe536e3 522)
21802234 523{
0fe536e3 524 if (!pMenuBar)
21802234
DW
525 {
526 DetachMenuBar();
0e320a79
DW
527 return;
528 }
c3d43472 529
29a99be3 530 m_frameMenuBar = NULL;
0e320a79 531
29a99be3
DW
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())
0fe536e3 537 {
29a99be3 538 m_hMenu = pMenuBar->GetHMenu();
0fe536e3 539 }
29a99be3
DW
540 else
541 {
542 pMenuBar->Detach();
21802234 543
29a99be3
DW
544 m_hMenu = pMenuBar->Create();
545
546 if (!m_hMenu)
547 return;
548 }
21802234
DW
549
550 InternalSetMenuBar();
551
a885d89a
DW
552 m_frameMenuBar = pMenuBar;
553 pMenuBar->Attach(this);
0fe536e3 554} // end of wxFrame::SetMenuBar
0e320a79 555
21802234 556void wxFrame::InternalSetMenuBar()
0e320a79 557{
a885d89a 558
0fe536e3
DW
559 ::WinPostMsg( GetHwnd()
560 ,WM_UPDATEFRAME
a885d89a 561 ,(MPARAM)FCF_MENU
0fe536e3
DW
562 ,NULL
563 );
564} // end of wxFrame::InternalSetMenuBar
0e320a79 565
a885d89a
DW
566//
567// Responds to colour changes, and passes event on to children
568//
569void wxFrame::OnSysColourChanged(
570 wxSysColourChangedEvent& rEvent
571)
0e320a79
DW
572{
573 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
574 Refresh();
575
a885d89a 576 if (m_frameStatusBar)
0e320a79 577 {
a885d89a
DW
578 wxSysColourChangedEvent vEvent2;
579
580 vEvent2.SetEventObject(m_frameStatusBar);
581 m_frameStatusBar->GetEventHandler()->ProcessEvent(vEvent2);
0e320a79
DW
582 }
583
a885d89a 584 //
0e320a79 585 // Propagate the event to the non-top-level children
a885d89a
DW
586 //
587 wxWindow::OnSysColourChanged(rEvent);
588} // end of wxFrame::OnSysColourChanged
21802234 589
542875a8
DW
590// Pass TRUE to show full screen, FALSE to restore.
591bool 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
a885d89a
DW
714//
715// Frame window
716//
717bool 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)
21802234 729{
a885d89a
DW
730 ULONG ulPmFlags = 0;
731 ULONG ulExtraFlags = 0;
732 ULONG ulTempFlags = FCF_TITLEBAR |
733 FCF_SYSMENU |
734 FCF_MINBUTTON |
735 FCF_MAXBUTTON |
736 FCF_SIZEBORDER |
737 FCF_ICON |
738 FCF_MENU |
739 FCF_ACCELTABLE |
740 FCF_SHELLPOSITION |
741 FCF_TASKLIST;
742
743 m_hDefaultIcon = (WXHICON) (wxSTD_FRAME_ICON ? wxSTD_FRAME_ICON : wxDEFAULT_FRAME_ICON);
744
745 if ((ulStyle & wxCAPTION) == wxCAPTION)
746 ulPmFlags = FCF_TASKLIST;
747 else
748 ulPmFlags = FCF_NOMOVEWITHOWNER;
749
750 if (ulStyle & wxMINIMIZE_BOX)
751 ulPmFlags |= FCF_MINBUTTON;
752 if (ulStyle & wxMAXIMIZE_BOX)
753 ulPmFlags |= FCF_MAXBUTTON;
754 if (ulStyle & wxTHICK_FRAME)
755 ulPmFlags |= FCF_DLGBORDER;
756 if (ulStyle & wxSYSTEM_MENU)
757 ulPmFlags |= FCF_SYSMENU;
758 if ((ulStyle & wxMINIMIZE) || (ulStyle & wxICONIZE))
759 ulPmFlags |= WS_MINIMIZED;
760 if (ulStyle & wxMAXIMIZE)
761 ulPmFlags |= WS_MAXIMIZED;
762 if (ulStyle & wxCAPTION)
763 ulPmFlags |= FCF_TASKLIST;
764 if (ulStyle & wxCLIP_CHILDREN)
765 {
766 // Invalid for frame windows under PM
767 }
768
769 //
770 // Keep this in wxFrame because it saves recoding this function
771 // in wxTinyFrame
772 //
21802234 773#if wxUSE_ITSY_BITSY
a885d89a
DW
774 if (ulStyle & wxTINY_CAPTION_VERT)
775 ulExtraFlags |= kVertCaption;
776 if (ulStyle & wxTINY_CAPTION_HORIZ)
777 ulExtraFlags |= kHorzCaption;
21802234 778#else
a885d89a
DW
779 if (ulStyle & wxTINY_CAPTION_VERT)
780 ulPmFlags |= FCF_TASKLIST;
781 if (ulStyle & wxTINY_CAPTION_HORIZ)
782 ulPmFlags |= FCF_TASKLIST;
21802234 783#endif
a885d89a
DW
784 if ((ulStyle & wxTHICK_FRAME) == 0)
785 ulPmFlags |= FCF_BORDER;
786 if (ulStyle & wxFRAME_TOOL_WINDOW)
787 ulExtraFlags = kFrameToolWindow;
21802234 788
a885d89a
DW
789 if (ulStyle & wxSTAY_ON_TOP)
790 ulPmFlags |= FCF_SYSMODAL;
21802234 791
a885d89a
DW
792 if (ulPmFlags & ulTempFlags)
793 ulPmFlags = FCF_STANDARD;
794 //
795 // Clear the visible flag, we always call show
796 //
797 ulPmFlags &= (unsigned long)~WS_VISIBLE;
798 m_bIconized = FALSE;
799 if ( !wxWindow::OS2Create( nId
800 ,pParent
801 ,zWclass
802 ,pWxWin
803 ,zTitle
804 ,nX
805 ,nY
806 ,nWidth
807 ,nHeight
808 ,ulPmFlags
809 ,NULL
810 ,ulExtraFlags))
811 {
812 return FALSE;
813 }
814 return TRUE;
815} // end of wxFrame::OS2Create
0e320a79 816
a885d89a 817//
0e320a79
DW
818// Default activation behaviour - set the focus for the first child
819// subwindow found.
a885d89a
DW
820//
821void wxFrame::OnActivate(
822 wxActivateEvent& rEvent
823)
0e320a79 824{
a885d89a
DW
825 for (wxWindowList::Node* pNode = GetChildren().GetFirst();
826 pNode;
827 pNode = pNode->GetNext())
0e320a79 828 {
21802234
DW
829 // FIXME all this is totally bogus - we need to do the same as wxPanel,
830 // but how to do it without duplicating the code?
831
832 // restore focus
a885d89a 833 wxWindow* pChild = pNode->GetData();
21802234 834
a885d89a 835 if (!pChild->IsTopLevel()
21802234 836#if wxUSE_TOOLBAR
a885d89a 837 && !wxDynamicCast(pChild, wxToolBar)
21802234
DW
838#endif // wxUSE_TOOLBAR
839#if wxUSE_STATUSBAR
a885d89a 840 && !wxDynamicCast(pChild, wxStatusBar)
21802234
DW
841#endif // wxUSE_STATUSBAR
842 )
843 {
a885d89a 844 pChild->SetFocus();
21802234
DW
845 return;
846 }
0e320a79 847 }
a885d89a 848} // end of wxFrame::OnActivate
0e320a79 849
f38374d0
DW
850// ----------------------------------------------------------------------------
851// wxFrame size management: we exclude the areas taken by menu/status/toolbars
852// from the client area, so the client area is what's really available for the
853// frame contents
854// ----------------------------------------------------------------------------
0e320a79
DW
855
856// Checks if there is a toolbar, and returns the first free client position
857wxPoint wxFrame::GetClientAreaOrigin() const
858{
a885d89a
DW
859 wxPoint vPoint(0, 0);
860
0e320a79
DW
861 if (GetToolBar())
862 {
a885d89a
DW
863 int nWidth;
864 int nHeight;
865
866 GetToolBar()->GetSize( &nWidth
867 ,&nHeight
868 );
0e320a79
DW
869
870 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL)
871 {
a885d89a 872 vPoint.x += nWidth;
0e320a79
DW
873 }
874 else
875 {
a885d89a
DW
876 // PM is backwards from windows
877 vPoint.y += nHeight;
0e320a79
DW
878 }
879 }
a885d89a
DW
880 return vPoint;
881} // end of wxFrame::GetClientAreaOrigin
0e320a79 882
f38374d0
DW
883// ----------------------------------------------------------------------------
884// tool/status bar stuff
885// ----------------------------------------------------------------------------
886
21802234 887#if wxUSE_TOOLBAR
f38374d0 888
a885d89a
DW
889wxToolBar* wxFrame::CreateToolBar(
890 long lStyle
891, wxWindowID vId
892, const wxString& rName
893)
0e320a79 894{
a885d89a
DW
895 if (wxFrameBase::CreateToolBar( lStyle
896 ,vId
897 ,rName
898 ))
0e320a79 899 {
0e320a79 900 PositionToolBar();
0e320a79 901 }
f38374d0 902 return m_frameToolBar;
a885d89a 903} // end of wxFrame::CreateToolBar
0e320a79
DW
904
905void wxFrame::PositionToolBar()
906{
a885d89a
DW
907 HWND hWndClient;
908 RECTL vRect;
909
910 hWndClient = ::WinWindowFromID(GetHwnd(), FID_CLIENT);
911 ::WinQueryWindowRect(hWndClient, &vRect);
0e320a79 912
f38374d0 913#if wxUSE_STATUSBAR
a885d89a 914 if (GetStatusBar())
0e320a79 915 {
a885d89a
DW
916 int nStatusX;
917 int nStatusY;
918
919 GetStatusBar()->GetClientSize( &nStatusX
920 ,&nStatusY
921 );
922 // PM is backwards from windows
923 vRect.yBottom += nStatusY;
0e320a79 924 }
f38374d0 925#endif // wxUSE_STATUSBAR
0e320a79 926
f38374d0 927 if ( GetToolBar() )
0e320a79 928 {
a885d89a
DW
929 int nToolbarWidth;
930 int nToolbarHeight;
931
932 GetToolBar()->GetSize( &nToolbarWidth
933 ,&nToolbarHeight
934 );
0e320a79 935
a885d89a 936 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL)
0e320a79 937 {
a885d89a 938 nToolbarHeight = vRect.yBottom;
0e320a79
DW
939 }
940 else
941 {
a885d89a 942 nToolbarWidth = vRect.xRight;
21802234 943 }
f38374d0 944
a885d89a
DW
945 //
946 // Use the 'real' PM position here
947 //
948 GetToolBar()->SetSize( 0
949 ,0
950 ,nToolbarWidth
951 ,nToolbarHeight
952 ,wxSIZE_NO_ADJUSTMENTS
953 );
21802234 954 }
a885d89a 955} // end of wxFrame::PositionToolBar
21802234
DW
956#endif // wxUSE_TOOLBAR
957
f38374d0
DW
958// ----------------------------------------------------------------------------
959// frame state (iconized/maximized/...)
960// ----------------------------------------------------------------------------
961
a885d89a 962//
21802234
DW
963// propagate our state change to all child frames: this allows us to emulate X
964// Windows behaviour where child frames float independently of the parent one
965// on the desktop, but are iconized/restored with it
a885d89a
DW
966//
967void wxFrame::IconizeChildFrames(
968 bool bIconize
969)
21802234 970{
a885d89a
DW
971 for (wxWindowList::Node* pNode = GetChildren().GetFirst();
972 pNode;
973 pNode = pNode->GetNext() )
21802234 974 {
a885d89a 975 wxWindow* pWin = pNode->GetData();
21802234 976
a885d89a 977 if (pWin->IsKindOf(CLASSINFO(wxFrame)) )
21802234 978 {
a885d89a 979 ((wxFrame *)pWin)->Iconize(bIconize);
0e320a79
DW
980 }
981 }
a885d89a 982} // end of wxFrame::IconizeChildFrames
0e320a79 983
21802234
DW
984// ===========================================================================
985// message processing
986// ===========================================================================
987
988// ---------------------------------------------------------------------------
989// preprocessing
990// ---------------------------------------------------------------------------
a885d89a
DW
991bool wxFrame::OS2TranslateMessage(
992 WXMSG* pMsg
993)
21802234 994{
a885d89a 995 if (wxWindow::OS2TranslateMessage(pMsg))
29435d81 996 return TRUE;
a885d89a 997 //
21802234 998 // try the menu bar accels
a885d89a
DW
999 //
1000 wxMenuBar* pMenuBar = GetMenuBar();
1001
1002 if (!pMenuBar )
21802234
DW
1003 return FALSE;
1004
a885d89a
DW
1005 const wxAcceleratorTable& rAcceleratorTable = pMenuBar->GetAccelTable();
1006 return rAcceleratorTable.Translate(this, pMsg);
1007} // end of wxFrame::OS2TranslateMessage
21802234
DW
1008
1009// ---------------------------------------------------------------------------
1010// our private (non virtual) message handlers
1011// ---------------------------------------------------------------------------
21802234
DW
1012bool wxFrame::HandlePaint()
1013{
a885d89a
DW
1014 RECTL vRect;
1015
1016 if (::WinQueryUpdateRect(GetHwnd(), &vRect))
29435d81 1017 {
a885d89a 1018 if (m_bIconized)
29435d81 1019 {
a885d89a
DW
1020 //
1021 // Icons in PM are the same as "pointers"
1022 //
1023 HPOINTER hIcon;
29435d81 1024
a885d89a
DW
1025 if (m_icon.Ok())
1026 hIcon = (HPOINTER)::WinSendMsg(GetHwnd(), WM_QUERYICON, 0L, 0L);
1027 else
1028 hIcon = (HPOINTER)m_hDefaultIcon;
1029
1030 //
21802234
DW
1031 // Hold a pointer to the dc so long as the OnPaint() message
1032 // is being processed
a885d89a
DW
1033 //
1034 RECTL vRect2;
1035 HPS hPs = ::WinBeginPaint(GetHwnd(), NULLHANDLE, &vRect2);
29435d81 1036
a885d89a 1037 //
29435d81 1038 // Erase background before painting or we get white background
a885d89a
DW
1039 //
1040 OS2DefWindowProc(WM_ERASEBACKGROUND, (MPARAM)hPs, (MPARAM)&vRect2);
29435d81 1041
a885d89a 1042 if (hIcon)
29435d81 1043 {
a885d89a
DW
1044 HWND hWndClient;
1045 RECTL vRect3;
21802234 1046
a885d89a
DW
1047 hWndClient = ::WinWindowFromID(GetHwnd(), FID_CLIENT);
1048 ::WinQueryWindowRect(hWndClient, &vRect3);
29435d81 1049
a885d89a
DW
1050 static const int nIconWidth = 32;
1051 static const int nIconHeight = 32;
1052 int nIconX = (int)((vRect3.xRight - nIconWidth)/2);
1053 int nIconY = (int)((vRect3.yBottom + nIconHeight)/2);
29435d81 1054
a885d89a 1055 ::WinDrawPointer(hPs, nIconX, nIconY, hIcon, DP_NORMAL);
29435d81 1056 }
a885d89a 1057 ::WinEndPaint(hPs);
29435d81
DW
1058 return TRUE;
1059 }
1060 else
1061 {
1062 return wxWindow::HandlePaint();
1063 }
1064 }
1065 else
1066 {
1067 // nothing to paint - processed
1068 return TRUE;
1069 }
29435d81 1070 return FALSE;
a885d89a 1071} // end of wxFrame::HandlePaint
21802234 1072
a885d89a
DW
1073bool wxFrame::HandleSize(
1074 int nX
1075, int nY
1076, WXUINT nId
1077)
21802234 1078{
a885d89a 1079 bool bProcessed = FALSE;
21802234 1080
a885d89a 1081 switch (nId)
21802234 1082 {
a885d89a
DW
1083 case kSizeNormal:
1084 //
1085 // Only do it it if we were iconized before, otherwise resizing the
21802234
DW
1086 // parent frame has a curious side effect of bringing it under it's
1087 // children
a885d89a 1088 if (!m_bIconized )
21802234
DW
1089 break;
1090
a885d89a 1091 //
21802234 1092 // restore all child frames too
a885d89a 1093 //
21802234
DW
1094 IconizeChildFrames(FALSE);
1095
a885d89a 1096 //
21802234 1097 // fall through
a885d89a 1098 //
21802234 1099
a885d89a
DW
1100 case kSizeMax:
1101 m_bIconized = FALSE;
21802234
DW
1102 break;
1103
a885d89a
DW
1104 case kSizeMin:
1105 //
1106 // Iconize all child frames too
1107 //
21802234 1108 IconizeChildFrames(TRUE);
a885d89a 1109 m_bIconized = TRUE;
21802234
DW
1110 break;
1111 }
f38374d0 1112
a885d89a 1113 if (!m_bIconized)
21802234 1114 {
a885d89a 1115 //
29435d81 1116 // forward WM_SIZE to status bar control
a885d89a 1117 //
f38374d0
DW
1118#if wxUSE_NATIVE_STATUSBAR
1119 if (m_frameStatusBar && m_frameStatusBar->IsKindOf(CLASSINFO(wxStatusBar95)))
1120 {
a885d89a
DW
1121 wxSizeEvent vEvent( wxSize( nX
1122 ,nY
1123 )
1124 ,m_frameStatusBar->GetId()
1125 );
f38374d0 1126
a885d89a
DW
1127 vEvent.SetEventObject(m_frameStatusBar);
1128 m_frameStatusBar->OnSize(vEvent);
f38374d0
DW
1129 }
1130#endif // wxUSE_NATIVE_STATUSBAR
1131
21802234
DW
1132 PositionStatusBar();
1133 PositionToolBar();
a885d89a
DW
1134 wxSizeEvent vEvent( wxSize( nX
1135 ,nY
1136 )
1137 ,m_windowId
1138 );
21802234 1139
a885d89a
DW
1140 vEvent.SetEventObject(this);
1141 bProcessed = GetEventHandler()->ProcessEvent(vEvent);
21802234 1142 }
a885d89a
DW
1143 return bProcessed;
1144} // end of wxFrame::HandleSize
21802234 1145
a885d89a
DW
1146bool wxFrame::HandleCommand(
1147 WXWORD nId
1148, WXWORD nCmd
1149, WXHWND hControl
1150)
21802234 1151{
a885d89a 1152 if (hControl)
21802234 1153 {
a885d89a 1154 //
21802234 1155 // In case it's e.g. a toolbar.
a885d89a
DW
1156 //
1157 wxWindow* pWin = wxFindWinFromHandle(hControl);
1158
1159 if (pWin)
1160 return pWin->OS2Command( nCmd
1161 ,nId
1162 );
21802234
DW
1163 }
1164
a885d89a
DW
1165 //
1166 // Handle here commands from menus and accelerators
1167 //
1168 if (nCmd == 0 || nCmd == 1)
21802234 1169 {
a885d89a 1170 if (wxCurrentPopupMenu)
21802234 1171 {
a885d89a
DW
1172 wxMenu* pPopupMenu = wxCurrentPopupMenu;
1173
21802234
DW
1174 wxCurrentPopupMenu = NULL;
1175
a885d89a
DW
1176 return pPopupMenu->OS2Command( nCmd
1177 ,nId
1178 );
21802234
DW
1179 }
1180
a885d89a 1181 if (ProcessCommand(nId))
21802234
DW
1182 {
1183 return TRUE;
1184 }
1185 }
21802234 1186 return FALSE;
a885d89a 1187} // end of wxFrame::HandleCommand
21802234 1188
a885d89a
DW
1189bool wxFrame::HandleMenuSelect(
1190 WXWORD nItem
1191, WXWORD nFlags
1192, WXHMENU hMenu
1193)
21802234 1194{
a885d89a
DW
1195 int nMenuItem;
1196
1197 if (nFlags == 0xFFFF && hMenu == 0)
21802234 1198 {
a885d89a
DW
1199 //
1200 // Menu was removed from screen
1201 //
1202 nMenuItem = -1;
21802234 1203 }
a885d89a 1204 else if (!(nFlags & MIS_SUBMENU) && !(nFlags & MIS_SEPARATOR))
21802234 1205 {
a885d89a 1206 nMenuItem = nItem;
21802234 1207 }
21802234
DW
1208 else
1209 {
a885d89a
DW
1210 //
1211 // Don't give hints for separators (doesn't make sense) nor for the
21802234 1212 // items opening popup menus (they don't have them anyhow)
a885d89a 1213 //
21802234
DW
1214 return FALSE;
1215 }
a885d89a 1216 wxMenuEvent vEvent(wxEVT_MENU_HIGHLIGHT, nMenuItem);
21802234 1217
a885d89a
DW
1218 vEvent.SetEventObject(this);
1219 return GetEventHandler()->ProcessEvent(vEvent);
1220} // end of wxFrame::HandleMenuSelect
21802234
DW
1221
1222// ---------------------------------------------------------------------------
1223// the window proc for wxFrame
1224// ---------------------------------------------------------------------------
1225
a885d89a
DW
1226MRESULT wxFrame::OS2WindowProc(
1227 WXUINT uMessage
1228, WXWPARAM wParam
1229, WXLPARAM lParam
1230)
21802234 1231{
a885d89a
DW
1232 MRESULT mRc = 0L;
1233 bool bProcessed = FALSE;
21802234 1234
a885d89a 1235 switch (uMessage)
21802234
DW
1236 {
1237 case WM_CLOSE:
a885d89a
DW
1238 //
1239 // If we can't close, tell the system that we processed the
21802234 1240 // message - otherwise it would close us
a885d89a
DW
1241 //
1242 bProcessed = !Close();
21802234
DW
1243 break;
1244
1245 case WM_COMMAND:
1246 {
a885d89a
DW
1247 WORD wId;
1248 WORD wCmd;
1249 WXHWND hWnd;
1250
1251 UnpackCommand( (WXWPARAM)wParam
1252 ,(WXLPARAM)lParam
1253 ,&wId
1254 ,&hWnd
1255 ,&wCmd
1256 );
1257 bProcessed = HandleCommand( wId
1258 ,wCmd
1259 ,(WXHWND)hWnd
1260 );
21802234
DW
1261 }
1262 break;
1263
1264 case WM_MENUSELECT:
1265 {
a885d89a
DW
1266 WXWORD wItem;
1267 WXWORD wFlags;
1268 WXHMENU hMenu;
1269
1270 UnpackMenuSelect( wParam
1271 ,lParam
1272 ,&wItem
1273 ,&wFlags
1274 ,&hMenu
1275 );
1276 bProcessed = HandleMenuSelect( wItem
1277 ,wFlags
1278 ,hMenu
1279 );
21802234
DW
1280 }
1281 break;
1282
1283 case WM_PAINT:
a885d89a 1284 bProcessed = HandlePaint();
21802234
DW
1285 break;
1286
a885d89a 1287 case CM_QUERYDRAGIMAGE:
21802234 1288 {
a885d89a
DW
1289 HPOINTER hIcon;
1290
1291 if (m_icon.Ok())
1292 hIcon = (HPOINTER)::WinSendMsg(GetHwnd(), WM_QUERYICON, 0L, 0L);
1293 else
1294 hIcon = (HPOINTER)m_hDefaultIcon;
1295 mRc = (MRESULT)hIcon;
1296 bProcessed = mRc != 0;
21802234
DW
1297 }
1298 break;
1299
1300 case WM_SIZE:
a885d89a 1301 bProcessed = HandleSize(LOWORD(lParam), HIWORD(lParam), (WXUINT)wParam);
21802234
DW
1302 break;
1303 }
f38374d0 1304
a885d89a
DW
1305 if (!bProcessed )
1306 mRc = wxWindow::OS2WindowProc( uMessage
1307 ,wParam
1308 ,lParam
1309 );
f38374d0 1310 return (MRESULT)0;
a885d89a 1311} // wxFrame::OS2WindowProc
21802234 1312