1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "frame.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
29 #include "wx/dialog.h"
30 #include "wx/settings.h"
31 #include "wx/dcclient.h"
34 #include "wx/msw/private.h"
35 #include "wx/statusbr.h"
36 #include "wx/toolbar.h"
37 #include "wx/menuitem.h"
40 #ifdef LoadAccelerators
41 #undef LoadAccelerators
44 #if wxUSE_NATIVE_STATUSBAR
45 #include <wx/msw/statbr95.h>
48 extern wxList wxModelessWindows
;
49 extern wxList WXDLLEXPORT wxPendingDelete
;
50 extern char wxFrameClassName
[];
51 extern wxMenu
*wxCurrentPopupMenu
;
53 #if !USE_SHARED_LIBRARY
54 BEGIN_EVENT_TABLE(wxFrame
, wxWindow
)
55 EVT_SIZE(wxFrame::OnSize
)
56 EVT_ACTIVATE(wxFrame::OnActivate
)
57 EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight
)
58 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged
)
59 EVT_IDLE(wxFrame::OnIdle
)
60 EVT_CLOSE(wxFrame::OnCloseWindow
)
63 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxWindow
)
66 #if wxUSE_NATIVE_STATUSBAR
67 bool wxFrame::m_useNativeStatusBar
= TRUE
;
69 bool wxFrame::m_useNativeStatusBar
= FALSE
;
74 m_frameToolBar
= NULL
;
75 m_frameMenuBar
= NULL
;
76 m_frameStatusBar
= NULL
;
78 m_windowParent
= NULL
;
82 bool wxFrame::Create(wxWindow
*parent
,
84 const wxString
& title
,
95 wxTopLevelWindows
.Append(this);
98 // m_modalShowing = FALSE;
99 m_windowStyle
= style
;
100 m_frameMenuBar
= NULL
;
101 m_frameToolBar
= NULL
;
102 m_frameStatusBar
= NULL
;
104 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
110 m_windowId
= (int)NewControlId();
112 if (parent
) parent
->AddChild(this);
121 // we pass NULL as parent to MSWCreate because frames with parents behave
122 // very strangely under Win95 shell
123 // Alteration by JACS: keep normal Windows behaviour (float on top of parent)
125 if ((m_windowStyle
& wxFRAME_FLOAT_ON_PARENT
) == 0)
128 MSWCreate(m_windowId
, parent
, wxFrameClassName
, this, title
,
129 x
, y
, width
, height
, style
);
131 wxModelessWindows
.Append(this);
137 m_isBeingDeleted
= TRUE
;
138 wxTopLevelWindows
.DeleteObject(this);
140 if (m_frameStatusBar
)
141 delete m_frameStatusBar
;
143 delete m_frameMenuBar
;
145 /* New behaviour March 1998: check if it's the last top-level window */
146 // if (wxTheApp && (this == wxTheApp->GetTopWindow()))
148 if (wxTheApp
&& (wxTopLevelWindows
.Number() == 0))
150 wxTheApp
->SetTopWindow(NULL
);
152 if (wxTheApp
->GetExitOnFrameDelete())
158 wxModelessWindows
.DeleteObject(this);
160 // For some reason, wxWindows can activate another task altogether
161 // when a frame is destroyed after a modal dialog has been invoked.
162 // Try to bring the parent to the top.
163 if (GetParent() && GetParent()->GetHWND())
164 ::BringWindowToTop((HWND
) GetParent()->GetHWND());
167 WXHMENU
wxFrame::GetWinMenu() const
172 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
173 void wxFrame::GetClientSize(int *x
, int *y
) const
176 ::GetClientRect((HWND
) GetHWND(), &rect
);
178 if ( GetStatusBar() )
180 int statusX
, statusY
;
181 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
182 rect
.bottom
-= statusY
;
185 wxPoint
pt(GetClientAreaOrigin());
193 // Set the client size (i.e. leave the calculation of borders etc.
195 void wxFrame::DoSetClientSize(int width
, int height
)
197 HWND hWnd
= (HWND
) GetHWND();
200 ::GetClientRect(hWnd
, &rect
);
203 GetWindowRect(hWnd
, &rect2
);
205 // Find the difference between the entire window (title bar and all)
206 // and the client area; add this to the new client size to move the
208 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
209 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
211 if ( GetStatusBar() )
213 int statusX
, statusY
;
214 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
215 actual_height
+= statusY
;
218 wxPoint
pt(GetClientAreaOrigin());
219 actual_width
+= pt
.y
;
220 actual_height
+= pt
.x
;
223 point
.x
= rect2
.left
;
226 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)TRUE
);
228 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
229 event
.SetEventObject( this );
230 GetEventHandler()->ProcessEvent(event
);
233 void wxFrame::GetSize(int *width
, int *height
) const
236 GetWindowRect((HWND
) GetHWND(), &rect
);
237 *width
= rect
.right
- rect
.left
;
238 *height
= rect
.bottom
- rect
.top
;
241 void wxFrame::GetPosition(int *x
, int *y
) const
244 GetWindowRect((HWND
) GetHWND(), &rect
);
253 void wxFrame::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
255 int currentX
, currentY
;
261 GetPosition(¤tX
, ¤tY
);
262 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
264 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
269 if (width
== -1) w1
= ww
;
270 if (height
==-1) h1
= hh
;
272 MoveWindow((HWND
) GetHWND(), x1
, y1
, w1
, h1
, (BOOL
)TRUE
);
274 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
275 event
.SetEventObject( this );
276 GetEventHandler()->ProcessEvent(event
);
279 bool wxFrame::Show(bool show
)
289 // Try to highlight the correct window (the parent)
293 hWndParent
= (HWND
) GetParent()->GetHWND();
295 ::BringWindowToTop(hWndParent
);
299 ShowWindow((HWND
) GetHWND(), (BOOL
)cshow
);
302 BringWindowToTop((HWND
) GetHWND());
304 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, m_windowId
);
305 event
.SetEventObject( this );
306 GetEventHandler()->ProcessEvent(event
);
311 void wxFrame::Iconize(bool iconize
)
321 ShowWindow((HWND
) GetHWND(), (BOOL
)cshow
);
322 m_iconized
= iconize
;
325 // Equivalent to maximize/restore in Windows
326 void wxFrame::Maximize(bool maximize
)
334 ShowWindow((HWND
) GetHWND(), cshow
);
338 bool wxFrame::IsIconized() const
340 ((wxFrame
*)this)->m_iconized
= (::IsIconic((HWND
) GetHWND()) != 0);
345 bool wxFrame::IsMaximized() const
347 return (::IsZoomed((HWND
) GetHWND()) != 0) ;
350 void wxFrame::SetTitle(const wxString
& title
)
352 SetWindowText((HWND
) GetHWND(), (const char *)title
);
355 wxString
wxFrame::GetTitle() const
357 GetWindowText((HWND
) GetHWND(), wxBuffer
, 1000);
358 return wxString(wxBuffer
);
361 void wxFrame::SetIcon(const wxIcon
& icon
)
364 #if defined(__WIN95__)
366 SendMessage((HWND
) GetHWND(), WM_SETICON
,
367 (WPARAM
)TRUE
, (LPARAM
)(HICON
) m_icon
.GetHICON());
371 wxStatusBar
*wxFrame::OnCreateStatusBar(int number
, long style
, wxWindowID id
,
372 const wxString
& name
)
374 wxStatusBar
*statusBar
= NULL
;
376 #if wxUSE_NATIVE_STATUSBAR
377 if (UsesNativeStatusBar())
379 statusBar
= new wxStatusBar95(this, id
, style
);
384 statusBar
= new wxStatusBar(this, id
, wxPoint(0, 0), wxSize(100, 20),
387 // Set the height according to the font and the border size
388 wxClientDC
dc(statusBar
);
389 dc
.SetFont(statusBar
->GetFont());
392 dc
.GetTextExtent("X", &x
, &y
);
394 int height
= (int)( (y
* 1.1) + 2* statusBar
->GetBorderY());
396 statusBar
->SetSize(-1, -1, 100, height
);
399 statusBar
->SetFieldsCount(number
);
403 wxStatusBar
* wxFrame::CreateStatusBar(int number
, long style
, wxWindowID id
,
404 const wxString
& name
)
406 // VZ: calling CreateStatusBar twice is an error - why anyone would do it?
407 wxCHECK_MSG( m_frameStatusBar
== NULL
, FALSE
,
408 "recreating status bar in wxFrame" );
410 m_frameStatusBar
= OnCreateStatusBar(number
, style
, id
,
412 if ( m_frameStatusBar
)
415 return m_frameStatusBar
;
421 void wxFrame::SetStatusText(const wxString
& text
, int number
)
423 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set text for" );
425 m_frameStatusBar
->SetStatusText(text
, number
);
428 void wxFrame::SetStatusWidths(int n
, const int widths_field
[])
430 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set widths for" );
432 m_frameStatusBar
->SetStatusWidths(n
, widths_field
);
436 void wxFrame::PositionStatusBar()
438 // native status bar positions itself
440 #if wxUSE_NATIVE_STATUSBAR
441 && !m_frameStatusBar
->IsKindOf(CLASSINFO(wxStatusBar95
))
446 GetClientSize(&w
, &h
);
448 m_frameStatusBar
->GetSize(&sw
, &sh
);
450 // Since we wish the status bar to be directly under the client area,
451 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
452 m_frameStatusBar
->SetSize(0, h
, w
, sh
);
456 void wxFrame::SetMenuBar(wxMenuBar
*menu_bar
)
460 m_frameMenuBar
= NULL
;
464 wxCHECK_RET( !menu_bar
->GetFrame(), "this menubar is already attached" );
467 delete m_frameMenuBar
;
469 m_hMenu
= menu_bar
->Create();
474 if ( !::SetMenu((HWND
)GetHWND(), (HMENU
)m_hMenu
) )
476 wxLogLastError("SetMenu");
479 m_frameMenuBar
= menu_bar
;
480 menu_bar
->Attach(this);
484 bool wxFrame::LoadAccelerators(const wxString
& table
)
486 m_acceleratorTable
= (WXHANDLE
)
489 ::LoadAcceleratorsW(wxGetInstance(), (const char *)table
);
491 ::LoadAcceleratorsA(wxGetInstance(), (const char *)table
);
494 ::LoadAccelerators(wxGetInstance(), (const char *)table
);
497 // The above is necessary because LoadAccelerators is a macro
498 // which we have undefed earlier in the file to avoid confusion
499 // with wxFrame::LoadAccelerators. Ugh!
501 return (m_acceleratorTable
!= (WXHANDLE
) NULL
);
507 // Work out max. size
508 wxNode
*node
= GetChildren().First();
513 // Find a child that's a subwindow, but not a dialog box.
514 wxWindow
*win
= (wxWindow
*)node
->Data();
516 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) &&
517 !win
->IsKindOf(CLASSINFO(wxDialog
)))
521 win
->GetSize(&width
, &height
);
522 win
->GetPosition(&x
, &y
);
524 if ((x
+ width
) > max_width
)
525 max_width
= x
+ width
;
526 if ((y
+ height
) > max_height
)
527 max_height
= y
+ height
;
531 SetClientSize(max_width
, max_height
);
534 // Responds to colour changes, and passes event on to children.
535 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
537 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
540 if ( m_frameStatusBar
)
542 wxSysColourChangedEvent event2
;
543 event2
.SetEventObject( m_frameStatusBar
);
544 m_frameStatusBar
->GetEventHandler()->ProcessEvent(event2
);
547 // Propagate the event to the non-top-level children
548 wxWindow::OnSysColourChanged(event
);
556 void wxFrame::MSWCreate(int id
, wxWindow
*parent
, const char *wclass
, wxWindow
*wx_win
, const char *title
,
557 int x
, int y
, int width
, int height
, long style
)
560 m_defaultIcon
= (WXHICON
) (wxSTD_FRAME_ICON
? wxSTD_FRAME_ICON
: wxDEFAULT_FRAME_ICON
);
562 // If child windows aren't properly drawn initially, WS_CLIPCHILDREN
563 // could be the culprit. But without it, you can get a lot of flicker.
566 if ((style
& wxCAPTION
) == wxCAPTION
)
567 msflags
= WS_OVERLAPPED
;
571 if (style
& wxMINIMIZE_BOX
)
572 msflags
|= WS_MINIMIZEBOX
;
573 if (style
& wxMAXIMIZE_BOX
)
574 msflags
|= WS_MAXIMIZEBOX
;
575 if (style
& wxTHICK_FRAME
)
576 msflags
|= WS_THICKFRAME
;
577 if (style
& wxSYSTEM_MENU
)
578 msflags
|= WS_SYSMENU
;
579 if ((style
& wxMINIMIZE
) || (style
& wxICONIZE
))
580 msflags
|= WS_MINIMIZE
;
581 if (style
& wxMAXIMIZE
)
582 msflags
|= WS_MAXIMIZE
;
583 if (style
& wxCAPTION
)
584 msflags
|= WS_CAPTION
;
585 if (style
& wxCLIP_CHILDREN
)
586 msflags
|= WS_CLIPCHILDREN
;
588 // Keep this in wxFrame because it saves recoding this function
591 if (style
& wxTINY_CAPTION_VERT
)
592 msflags
|= IBS_VERTCAPTION
;
593 if (style
& wxTINY_CAPTION_HORIZ
)
594 msflags
|= IBS_HORZCAPTION
;
596 if (style
& wxTINY_CAPTION_VERT
)
597 msflags
|= WS_CAPTION
;
598 if (style
& wxTINY_CAPTION_HORIZ
)
599 msflags
|= WS_CAPTION
;
601 if ((style
& wxTHICK_FRAME
) == 0)
602 msflags
|= WS_BORDER
;
604 WXDWORD extendedStyle
= MakeExtendedStyle(style
);
606 #if !defined(__WIN16__) && !defined(__SC__)
607 if (style
& wxFRAME_TOOL_WINDOW
)
608 extendedStyle
|= WS_EX_TOOLWINDOW
;
611 if (style
& wxSTAY_ON_TOP
)
612 extendedStyle
|= WS_EX_TOPMOST
;
615 wxWindow::MSWCreate(id
, parent
, wclass
, wx_win
, title
, x
, y
, width
, height
,
616 msflags
, NULL
, extendedStyle
);
617 // Seems to be necessary if we use WS_POPUP
618 // style instead of WS_OVERLAPPED
619 if (width
> -1 && height
> -1)
620 ::PostMessage((HWND
) GetHWND(), WM_SIZE
, SIZE_RESTORED
, MAKELPARAM(width
, height
));
623 bool wxFrame::MSWOnPaint()
626 if (GetUpdateRect((HWND
) GetHWND(), &rect
, FALSE
))
632 the_icon
= (HICON
) m_icon
.GetHICON();
634 the_icon
= (HICON
) m_defaultIcon
;
637 // Hold a pointer to the dc so long as the OnPaint() message
638 // is being processed
639 HDC cdc
= BeginPaint((HWND
) GetHWND(), &ps
);
641 // Erase background before painting or we get white background
642 this->MSWDefWindowProc(WM_ICONERASEBKGND
,(WORD
)(LONG
) ps
.hdc
,0L);
647 ::GetClientRect((HWND
) GetHWND(), &rect
);
649 int icon_height
= 32;
650 int icon_x
= (int)((rect
.right
- icon_width
)/2);
651 int icon_y
= (int)((rect
.bottom
- icon_height
)/2);
652 DrawIcon(cdc
, icon_x
, icon_y
, the_icon
);
655 EndPaint((HWND
) GetHWND(), &ps
);
659 wxPaintEvent
event(m_windowId
);
660 event
.m_eventObject
= this;
661 if (!GetEventHandler()->ProcessEvent(event
))
669 WXHICON
wxFrame::MSWOnQueryDragIcon()
671 if (m_icon
.Ok() && (m_icon
.GetHICON() != 0))
672 return m_icon
.GetHICON();
674 return m_defaultIcon
;
677 void wxFrame::MSWOnSize(int x
, int y
, WXUINT id
)
682 // only do it it if we were iconized before, otherwise resizing the
683 // parent frame has a curious side effect of bringing it under it's
688 // restore all child frames too
689 IconizeChildFrames(FALSE
);
698 // iconize all child frames too
699 IconizeChildFrames(TRUE
);
707 // forward WM_SIZE to status bar control
708 #if wxUSE_NATIVE_STATUSBAR
709 if (m_frameStatusBar
&& m_frameStatusBar
->IsKindOf(CLASSINFO(wxStatusBar95
)))
711 wxSizeEvent
event(wxSize(x
, y
), m_frameStatusBar
->GetId());
712 event
.SetEventObject( m_frameStatusBar
);
714 ((wxStatusBar95
*)m_frameStatusBar
)->OnSize(event
);
721 wxSizeEvent
event(wxSize(x
, y
), m_windowId
);
722 event
.SetEventObject( this );
723 if (!GetEventHandler()->ProcessEvent(event
))
728 bool wxFrame::MSWOnClose()
733 bool wxFrame::MSWOnCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
735 if (cmd
== 0 || cmd
== 1 ) // Can be either a menu command or an accelerator.
737 // In case it's e.g. a toolbar.
738 wxWindow
*win
= wxFindWinFromHandle(control
);
740 return win
->MSWCommand(cmd
, id
);
742 if (wxCurrentPopupMenu
)
744 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
745 wxCurrentPopupMenu
= NULL
;
746 if (popupMenu
->MSWCommand(cmd
, id
))
750 if (GetMenuBar() && GetMenuBar()->FindItemForId(id
))
759 return wxWindow::MSWOnCommand(id
, cmd
, control
);
762 void wxFrame::MSWOnMenuHighlight(WXWORD nItem
, WXWORD nFlags
, WXHMENU hSysMenu
)
764 if (nFlags
== 0xFFFF && hSysMenu
== 0)
766 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, -1);
767 event
.SetEventObject( this );
768 GetEventHandler()->ProcessEvent(event
);
770 else if ((nFlags
!= MF_SEPARATOR
) && (nItem
!= 0) && (nItem
!= 65535))
772 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, nItem
);
773 event
.SetEventObject( this );
774 GetEventHandler()->ProcessEvent(event
);
778 bool wxFrame::MSWProcessMessage(WXMSG
* pMsg
)
783 bool wxFrame::MSWTranslateMessage(WXMSG
* pMsg
)
785 if (m_acceleratorTable
.Ok() &&
786 ::TranslateAccelerator((HWND
) GetHWND(), (HACCEL
) m_acceleratorTable
.GetHACCEL(), (MSG
*)pMsg
))
792 // Default resizing behaviour - if only ONE subwindow,
793 // resize to client rectangle size
794 void wxFrame::OnSize(wxSizeEvent
& event
)
796 // if we're using constraints - do use them
797 #if wxUSE_CONSTRAINTS
798 if ( GetAutoLayout() ) {
804 // do we have _exactly_ one child?
805 wxWindow
*child
= NULL
;
806 for ( wxNode
*node
= GetChildren().First(); node
; node
= node
->Next() )
808 wxWindow
*win
= (wxWindow
*)node
->Data();
809 if ( !win
->IsKindOf(CLASSINFO(wxFrame
)) &&
810 !win
->IsKindOf(CLASSINFO(wxDialog
)) &&
811 (win
!= GetStatusBar()) &&
812 (win
!= GetToolBar()) )
815 return; // it's our second subwindow - nothing to do
821 // we have exactly one child - set it's size to fill the whole frame
822 int clientW
, clientH
;
823 GetClientSize(&clientW
, &clientH
);
828 child
->SetSize(x
, y
, clientW
, clientH
);
832 // Default activation behaviour - set the focus for the first child
834 void wxFrame::OnActivate(wxActivateEvent
& event
)
836 for(wxNode
*node
= GetChildren().First(); node
; node
= node
->Next())
838 // Find a child that's a subwindow, but not a dialog box.
839 wxWindow
*child
= (wxWindow
*)node
->Data();
840 if (!child
->IsKindOf(CLASSINFO(wxFrame
)) &&
841 !child
->IsKindOf(CLASSINFO(wxDialog
)))
849 // The default implementation for the close window event.
850 void wxFrame::OnCloseWindow(wxCloseEvent
& event
)
855 // Destroy the window (delayed, if a managed window)
856 bool wxFrame::Destroy()
858 if (!wxPendingDelete
.Member(this))
859 wxPendingDelete
.Append(this);
863 // Default menu selection behaviour - display a help string
864 void wxFrame::OnMenuHighlight(wxMenuEvent
& event
)
868 int menuId
= event
.GetMenuId();
871 wxMenuBar
*menuBar
= GetMenuBar();
872 if (menuBar
&& menuBar
->FindItem(menuId
))
874 // set status text even if the string is empty - this will at
875 // least remove the string from the item which was previously
877 SetStatusText(menuBar
->GetHelpString(menuId
));
883 wxMenuBar
*wxFrame::GetMenuBar() const
885 return m_frameMenuBar
;
888 void wxFrame::Centre(int direction
)
890 int display_width
, display_height
, width
, height
, x
, y
;
891 wxDisplaySize(&display_width
, &display_height
);
893 GetSize(&width
, &height
);
896 if (direction
& wxHORIZONTAL
)
897 x
= (int)((display_width
- width
)/2);
898 if (direction
& wxVERTICAL
)
899 y
= (int)((display_height
- height
)/2);
901 SetSize(x
, y
, width
, height
);
904 // Call this to simulate a menu command
905 void wxFrame::Command(int id
)
910 void wxFrame::ProcessCommand(int id
)
912 wxCommandEvent
commandEvent(wxEVT_COMMAND_MENU_SELECTED
, id
);
913 commandEvent
.SetInt( id
);
914 commandEvent
.SetEventObject( this );
916 wxMenuBar
*bar
= GetMenuBar() ;
920 wxMenuItem
*item
= bar
->FindItemForId(id
) ;
921 if (item
&& item
->IsCheckable())
923 bar
->Check(id
,!bar
->Checked(id
)) ;
927 // Process events starting with the window with the focus, if any.
928 wxWindow* focusWin = wxFindFocusDescendant(this);
930 wxEvtHandler* evtHandler = focusWin ? focusWin->GetEventHandler() : GetEventHandler();
933 wxEvtHandler
* evtHandler
= GetEventHandler();
934 evtHandler
->ProcessEvent(commandEvent
);
937 // Checks if there is a toolbar, and returns the first free client position
938 wxPoint
wxFrame::GetClientAreaOrigin() const
944 GetToolBar()->GetSize(& w
, & h
);
946 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
958 void wxFrame::ScreenToClient(int *x
, int *y
) const
960 wxWindow::ScreenToClient(x
, y
);
962 // We may be faking the client origin.
963 // So a window that's really at (0, 30) may appear
964 // (to wxWin apps) to be at (0, 0).
965 wxPoint
pt(GetClientAreaOrigin());
970 void wxFrame::ClientToScreen(int *x
, int *y
) const
972 // We may be faking the client origin.
973 // So a window that's really at (0, 30) may appear
974 // (to wxWin apps) to be at (0, 0).
975 wxPoint
pt1(GetClientAreaOrigin());
979 wxWindow::ClientToScreen(x
, y
);
982 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
984 wxCHECK_MSG( m_frameToolBar
== NULL
, FALSE
,
985 "recreating toolbar in wxFrame" );
987 wxToolBar
* toolBar
= OnCreateToolBar(style
, id
, name
);
1000 wxToolBar
* wxFrame::OnCreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
1002 return new wxToolBar(this, id
, wxDefaultPosition
, wxDefaultSize
, style
, name
);
1005 void wxFrame::PositionToolBar()
1008 ::GetClientRect((HWND
) GetHWND(), &rect
);
1010 if ( GetStatusBar() )
1012 int statusX
, statusY
;
1013 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
1014 rect
.bottom
-= statusY
;
1020 GetToolBar()->GetSize(& tw
, & th
);
1022 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
1024 // Use the 'real' MSW position
1025 GetToolBar()->SetSize(0, 0, tw
, rect
.bottom
, wxSIZE_NO_ADJUSTMENTS
);
1029 // Use the 'real' MSW position
1030 GetToolBar()->SetSize(0, 0, rect
.right
, th
, wxSIZE_NO_ADJUSTMENTS
);
1035 // propagate our state change to all child frames
1036 void wxFrame::IconizeChildFrames(bool bIconize
)
1038 for ( wxNode
*node
= GetChildren().First(); node
; node
= node
->Next() ) {
1039 wxWindow
*win
= (wxWindow
*)node
->Data();
1040 if ( win
->IsKindOf(CLASSINFO(wxFrame
)) ) {
1041 ((wxFrame
*)win
)->Iconize(bIconize
);