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"
39 #ifdef LoadAccelerators
40 #undef LoadAccelerators
43 #if wxUSE_NATIVE_STATUSBAR
44 #include <wx/msw/statbr95.h>
47 extern wxList wxModelessWindows
;
48 extern wxList wxPendingDelete
;
49 extern char wxFrameClassName
[];
50 extern wxMenu
*wxCurrentPopupMenu
;
52 #if !USE_SHARED_LIBRARY
53 BEGIN_EVENT_TABLE(wxFrame
, wxWindow
)
54 EVT_SIZE(wxFrame::OnSize
)
55 EVT_ACTIVATE(wxFrame::OnActivate
)
56 EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight
)
57 EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged
)
58 EVT_IDLE(wxFrame::OnIdle
)
59 EVT_CLOSE(wxFrame::OnCloseWindow
)
62 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxWindow
)
65 #if wxUSE_NATIVE_STATUSBAR
66 bool wxFrame::m_useNativeStatusBar
= TRUE
;
68 bool wxFrame::m_useNativeStatusBar
= FALSE
;
71 wxFrame::wxFrame(void)
73 m_frameToolBar
= NULL
;
74 m_frameMenuBar
= NULL
;
75 m_frameStatusBar
= NULL
;
77 m_windowParent
= NULL
;
81 bool wxFrame::Create(wxWindow
*parent
,
83 const wxString
& title
,
90 wxTopLevelWindows
.Append(this);
93 // m_modalShowing = FALSE;
94 m_windowStyle
= style
;
95 m_frameMenuBar
= NULL
;
96 m_frameToolBar
= NULL
;
97 m_frameStatusBar
= NULL
;
99 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
105 m_windowId
= (int)NewControlId();
107 if (parent
) parent
->AddChild(this);
116 // we pass NULL as parent to MSWCreate because frames with parents behave
117 // very strangely under Win95 shell
118 MSWCreate(m_windowId
, NULL
, wxFrameClassName
, this, title
,
119 x
, y
, width
, height
, style
);
121 wxModelessWindows
.Append(this);
125 wxFrame::~wxFrame(void)
127 m_isBeingDeleted
= TRUE
;
128 wxTopLevelWindows
.DeleteObject(this);
130 if (m_frameStatusBar
)
131 delete m_frameStatusBar
;
133 delete m_frameMenuBar
;
135 /* New behaviour March 1998: check if it's the last top-level window */
136 // if (wxTheApp && (this == wxTheApp->GetTopWindow()))
138 if (wxTheApp
&& (wxTopLevelWindows
.Number() == 0))
140 wxTheApp
->SetTopWindow(NULL
);
142 if (wxTheApp
->GetExitOnFrameDelete())
148 wxModelessWindows
.DeleteObject(this);
150 // For some reason, wxWindows can activate another task altogether
151 // when a frame is destroyed after a modal dialog has been invoked.
152 // Try to bring the parent to the top.
153 if (GetParent() && GetParent()->GetHWND())
154 ::BringWindowToTop((HWND
) GetParent()->GetHWND());
157 WXHMENU
wxFrame::GetWinMenu(void) const
162 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
163 void wxFrame::GetClientSize(int *x
, int *y
) const
166 GetClientRect((HWND
) GetHWND(), &rect
);
168 if ( GetStatusBar() )
170 int statusX
, statusY
;
171 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
172 rect
.bottom
-= statusY
;
175 wxPoint
pt(GetClientAreaOrigin());
183 // Set the client size (i.e. leave the calculation of borders etc.
185 void wxFrame::SetClientSize(int width
, int height
)
187 HWND hWnd
= (HWND
) GetHWND();
190 GetClientRect(hWnd
, &rect
);
193 GetWindowRect(hWnd
, &rect2
);
195 // Find the difference between the entire window (title bar and all)
196 // and the client area; add this to the new client size to move the
198 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
199 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
201 if ( GetStatusBar() )
203 int statusX
, statusY
;
204 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
205 actual_height
+= statusY
;
208 wxPoint
pt(GetClientAreaOrigin());
209 actual_width
+= pt
.y
;
210 actual_height
+= pt
.x
;
213 point
.x
= rect2
.left
;
216 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)TRUE
);
218 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
219 event
.SetEventObject( this );
220 GetEventHandler()->ProcessEvent(event
);
223 void wxFrame::GetSize(int *width
, int *height
) const
226 GetWindowRect((HWND
) GetHWND(), &rect
);
227 *width
= rect
.right
- rect
.left
;
228 *height
= rect
.bottom
- rect
.top
;
231 void wxFrame::GetPosition(int *x
, int *y
) const
234 GetWindowRect((HWND
) GetHWND(), &rect
);
243 void wxFrame::SetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
245 int currentX
, currentY
;
251 GetPosition(¤tX
, ¤tY
);
252 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
254 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
259 if (width
== -1) w1
= ww
;
260 if (height
==-1) h1
= hh
;
262 MoveWindow((HWND
) GetHWND(), x1
, y1
, w1
, h1
, (BOOL
)TRUE
);
264 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
265 event
.SetEventObject( this );
266 GetEventHandler()->ProcessEvent(event
);
269 bool wxFrame::Show(bool show
)
279 // Try to highlight the correct window (the parent)
283 hWndParent
= (HWND
) GetParent()->GetHWND();
285 ::BringWindowToTop(hWndParent
);
289 ShowWindow((HWND
) GetHWND(), (BOOL
)cshow
);
292 BringWindowToTop((HWND
) GetHWND());
294 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, m_windowId
);
295 event
.SetEventObject( this );
296 GetEventHandler()->ProcessEvent(event
);
301 void wxFrame::Iconize(bool iconize
)
311 ShowWindow((HWND
) GetHWND(), (BOOL
)cshow
);
312 m_iconized
= iconize
;
315 // Equivalent to maximize/restore in Windows
316 void wxFrame::Maximize(bool maximize
)
324 ShowWindow((HWND
) GetHWND(), cshow
);
328 bool wxFrame::IsIconized(void) const
330 ((wxFrame
*)this)->m_iconized
= (::IsIconic((HWND
) GetHWND()) != 0);
334 void wxFrame::SetTitle(const wxString
& title
)
336 SetWindowText((HWND
) GetHWND(), (const char *)title
);
339 wxString
wxFrame::GetTitle(void) const
341 GetWindowText((HWND
) GetHWND(), wxBuffer
, 1000);
342 return wxString(wxBuffer
);
345 void wxFrame::SetIcon(const wxIcon
& icon
)
348 #if defined(__WIN95__)
350 SendMessage((HWND
) GetHWND(), WM_SETICON
,
351 (WPARAM
)TRUE
, (LPARAM
)(HICON
) m_icon
.GetHICON());
355 wxStatusBar
*wxFrame::OnCreateStatusBar(int number
, long style
, wxWindowID id
,
356 const wxString
& name
)
358 wxStatusBar
*statusBar
= NULL
;
360 #if wxUSE_NATIVE_STATUSBAR
361 if (UsesNativeStatusBar())
363 statusBar
= new wxStatusBar95(this, id
, style
);
368 statusBar
= new wxStatusBar(this, id
, wxPoint(0, 0), wxSize(100, 20),
371 // Set the height according to the font and the border size
372 wxClientDC
dc(statusBar
);
373 dc
.SetFont(* statusBar
->GetFont());
376 dc
.GetTextExtent("X", &x
, &y
);
378 int height
= (int)( (y
* 1.1) + 2* statusBar
->GetBorderY());
380 statusBar
->SetSize(-1, -1, 100, height
);
383 statusBar
->SetFieldsCount(number
);
387 wxStatusBar
* wxFrame::CreateStatusBar(int number
, long style
, wxWindowID id
,
388 const wxString
& name
)
390 // VZ: calling CreateStatusBar twice is an error - why anyone would do it?
391 wxCHECK_MSG( m_frameStatusBar
== NULL
, FALSE
,
392 "recreating status bar in wxFrame" );
394 m_frameStatusBar
= OnCreateStatusBar(number
, style
, id
,
396 if ( m_frameStatusBar
)
399 return m_frameStatusBar
;
405 void wxFrame::SetStatusText(const wxString
& text
, int number
)
407 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set text for" );
409 m_frameStatusBar
->SetStatusText(text
, number
);
412 void wxFrame::SetStatusWidths(int n
, const int widths_field
[])
414 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set widths for" );
416 m_frameStatusBar
->SetStatusWidths(n
, widths_field
);
420 void wxFrame::PositionStatusBar(void)
422 // native status bar positions itself
424 #if wxUSE_NATIVE_STATUSBAR
425 && !m_frameStatusBar
->IsKindOf(CLASSINFO(wxStatusBar95
))
430 GetClientSize(&w
, &h
);
432 m_frameStatusBar
->GetSize(&sw
, &sh
);
434 // Since we wish the status bar to be directly under the client area,
435 // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS.
436 m_frameStatusBar
->SetSize(0, h
, w
, sh
);
440 void wxFrame::SetMenuBar(wxMenuBar
*menu_bar
)
444 m_frameMenuBar
= NULL
;
448 if (menu_bar
->m_menuBarFrame
)
452 HMENU menu
= CreateMenu();
454 for (i
= 0; i
< menu_bar
->m_menuCount
; i
++)
456 HMENU popup
= (HMENU
)menu_bar
->m_menus
[i
]->m_hMenu
;
458 // After looking Bounds Checker result, it seems that all
459 // menus must be individually destroyed. So, don't reset m_hMenu,
460 // to allow ~wxMenu to do the job.
462 menu_bar
->m_menus
[i
]->m_savehMenu
= (WXHMENU
) popup
;
463 // Uncommenting for the moment... JACS
464 menu_bar
->m_menus
[i
]->m_hMenu
= 0;
465 AppendMenu(menu
, MF_POPUP
| MF_STRING
, (UINT
)popup
, menu_bar
->m_titles
[i
]);
468 menu_bar
->m_hMenu
= (WXHMENU
)menu
;
470 delete m_frameMenuBar
;
472 this->m_hMenu
= (WXHMENU
) menu
;
475 if (!SetMenu((HWND
) GetHWND(), menu
))
478 err
= GetLastError();
482 m_frameMenuBar
= menu_bar
;
483 menu_bar
->m_menuBarFrame
= this;
487 bool wxFrame::LoadAccelerators(const wxString
& table
)
489 m_acceleratorTable
= (WXHANDLE
)
492 ::LoadAcceleratorsW(wxGetInstance(), (const char *)table
);
494 ::LoadAcceleratorsA(wxGetInstance(), (const char *)table
);
497 ::LoadAccelerators(wxGetInstance(), (const char *)table
);
500 // The above is necessary because LoadAccelerators is a macro
501 // which we have undefed earlier in the file to avoid confusion
502 // with wxFrame::LoadAccelerators. Ugh!
504 return (m_acceleratorTable
!= (WXHANDLE
) NULL
);
508 void wxFrame::Fit(void)
510 // Work out max. size
511 wxNode
*node
= GetChildren()->First();
516 // Find a child that's a subwindow, but not a dialog box.
517 wxWindow
*win
= (wxWindow
*)node
->Data();
519 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) &&
520 !win
->IsKindOf(CLASSINFO(wxDialog
)))
524 win
->GetSize(&width
, &height
);
525 win
->GetPosition(&x
, &y
);
527 if ((x
+ width
) > max_width
)
528 max_width
= x
+ width
;
529 if ((y
+ height
) > max_height
)
530 max_height
= y
+ height
;
534 SetClientSize(max_width
, max_height
);
537 // Responds to colour changes, and passes event on to children.
538 void wxFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
540 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
543 if ( m_frameStatusBar
)
545 wxSysColourChangedEvent event2
;
546 event2
.SetEventObject( m_frameStatusBar
);
547 m_frameStatusBar
->GetEventHandler()->ProcessEvent(event2
);
550 // Propagate the event to the non-top-level children
551 wxWindow::OnSysColourChanged(event
);
559 void wxFrame::MSWCreate(int id
, wxWindow
*parent
, const char *wclass
, wxWindow
*wx_win
, const char *title
,
560 int x
, int y
, int width
, int height
, long style
)
563 m_defaultIcon
= (WXHICON
) (wxSTD_FRAME_ICON
? wxSTD_FRAME_ICON
: wxDEFAULT_FRAME_ICON
);
565 // If child windows aren't properly drawn initially, WS_CLIPCHILDREN
566 // could be the culprit. But without it, you can get a lot of flicker.
569 if ((style
& wxCAPTION
) == wxCAPTION
)
570 msflags
= WS_OVERLAPPED
;
574 if (style
& wxMINIMIZE_BOX
)
575 msflags
|= WS_MINIMIZEBOX
;
576 if (style
& wxMAXIMIZE_BOX
)
577 msflags
|= WS_MAXIMIZEBOX
;
578 if (style
& wxTHICK_FRAME
)
579 msflags
|= WS_THICKFRAME
;
580 if (style
& wxSYSTEM_MENU
)
581 msflags
|= WS_SYSMENU
;
582 if ((style
& wxMINIMIZE
) || (style
& wxICONIZE
))
583 msflags
|= WS_MINIMIZE
;
584 if (style
& wxMAXIMIZE
)
585 msflags
|= WS_MAXIMIZE
;
586 if (style
& wxCAPTION
)
587 msflags
|= WS_CAPTION
;
588 if (style
& wxCLIP_CHILDREN
)
589 msflags
|= WS_CLIPCHILDREN
;
591 // Keep this in wxFrame because it saves recoding this function
594 if (style
& wxTINY_CAPTION_VERT
)
595 msflags
|= IBS_VERTCAPTION
;
596 if (style
& wxTINY_CAPTION_HORIZ
)
597 msflags
|= IBS_HORZCAPTION
;
599 if (style
& wxTINY_CAPTION_VERT
)
600 msflags
|= WS_CAPTION
;
601 if (style
& wxTINY_CAPTION_HORIZ
)
602 msflags
|= WS_CAPTION
;
604 if ((style
& wxTHICK_FRAME
) == 0)
605 msflags
|= WS_BORDER
;
607 WXDWORD extendedStyle
= MakeExtendedStyle(style
);
609 if (style
& wxSTAY_ON_TOP
)
610 extendedStyle
|= WS_EX_TOPMOST
;
613 wxWindow::MSWCreate(id
, parent
, wclass
, wx_win
, title
, x
, y
, width
, height
,
614 msflags
, NULL
, extendedStyle
);
615 // Seems to be necessary if we use WS_POPUP
616 // style instead of WS_OVERLAPPED
617 if (width
> -1 && height
> -1)
618 ::PostMessage((HWND
) GetHWND(), WM_SIZE
, SIZE_RESTORED
, MAKELPARAM(width
, height
));
621 bool wxFrame::MSWOnPaint(void)
624 if (GetUpdateRect((HWND
) GetHWND(), &rect
, FALSE
))
630 the_icon
= (HICON
) m_icon
.GetHICON();
632 the_icon
= (HICON
) m_defaultIcon
;
635 // Hold a pointer to the dc so long as the OnPaint() message
636 // is being processed
637 HDC cdc
= BeginPaint((HWND
) GetHWND(), &ps
);
639 // Erase background before painting or we get white background
640 this->MSWDefWindowProc(WM_ICONERASEBKGND
,(WORD
)ps
.hdc
,0L);
645 GetClientRect((HWND
) GetHWND(), &rect
);
647 int icon_height
= 32;
648 int icon_x
= (int)((rect
.right
- icon_width
)/2);
649 int icon_y
= (int)((rect
.bottom
- icon_height
)/2);
650 DrawIcon(cdc
, icon_x
, icon_y
, the_icon
);
653 EndPaint((HWND
) GetHWND(), &ps
);
657 wxPaintEvent
event(m_windowId
);
658 event
.m_eventObject
= this;
659 if (!GetEventHandler()->ProcessEvent(event
))
667 WXHICON
wxFrame::MSWOnQueryDragIcon(void)
669 if (m_icon
.Ok() && (m_icon
.GetHICON() != 0))
670 return m_icon
.GetHICON();
672 return m_defaultIcon
;
675 void wxFrame::MSWOnSize(int x
, int y
, WXUINT id
)
680 // only do it it if we were iconized before, otherwise resizing the
681 // parent frame has a curious side effect of bringing it under it's
686 // restore all child frames too
687 IconizeChildFrames(FALSE
);
696 // iconize all child frames too
697 IconizeChildFrames(TRUE
);
705 // forward WM_SIZE to status bar control
706 #if wxUSE_NATIVE_STATUSBAR
707 if (m_frameStatusBar
&& m_frameStatusBar
->IsKindOf(CLASSINFO(wxStatusBar95
)))
709 wxSizeEvent
event(wxSize(x
, y
), m_frameStatusBar
->GetId());
710 event
.SetEventObject( m_frameStatusBar
);
712 ((wxStatusBar95
*)m_frameStatusBar
)->OnSize(event
);
719 wxSizeEvent
event(wxSize(x
, y
), m_windowId
);
720 event
.SetEventObject( this );
721 if (!GetEventHandler()->ProcessEvent(event
))
726 bool wxFrame::MSWOnClose(void)
731 bool wxFrame::MSWOnCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
733 if (cmd
== 0 || cmd
== 1 ) // Can be either a menu command or an accelerator.
735 // In case it's e.g. a toolbar.
736 wxWindow
*win
= wxFindWinFromHandle(control
);
738 return win
->MSWCommand(cmd
, id
);
740 if (wxCurrentPopupMenu
)
742 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
743 wxCurrentPopupMenu
= NULL
;
744 if (popupMenu
->MSWCommand(cmd
, id
))
748 if (GetMenuBar() && GetMenuBar()->FindItemForId(id
))
760 void wxFrame::MSWOnMenuHighlight(WXWORD nItem
, WXWORD nFlags
, WXHMENU hSysMenu
)
762 if (nFlags
== 0xFFFF && hSysMenu
== 0)
764 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, -1);
765 event
.SetEventObject( this );
766 GetEventHandler()->ProcessEvent(event
);
768 else if (nFlags
!= MF_SEPARATOR
)
770 wxMenuEvent
event(wxEVT_MENU_HIGHLIGHT
, nItem
);
771 event
.SetEventObject( this );
772 GetEventHandler()->ProcessEvent(event
);
776 bool wxFrame::MSWProcessMessage(WXMSG
* pMsg
)
781 bool wxFrame::MSWTranslateMessage(WXMSG
* pMsg
)
783 if (m_acceleratorTable
.Ok() &&
784 ::TranslateAccelerator((HWND
) GetHWND(), (HACCEL
) m_acceleratorTable
.GetHACCEL(), (MSG
*)pMsg
))
790 // Default resizing behaviour - if only ONE subwindow,
791 // resize to client rectangle size
792 void wxFrame::OnSize(wxSizeEvent
& event
)
794 // if we're using constraints - do use them
795 #if wxUSE_CONSTRAINTS
796 if ( GetAutoLayout() ) {
802 // do we have _exactly_ one child?
803 wxWindow
*child
= NULL
;
804 for ( wxNode
*node
= GetChildren()->First(); node
; node
= node
->Next() )
806 wxWindow
*win
= (wxWindow
*)node
->Data();
807 if ( !win
->IsKindOf(CLASSINFO(wxFrame
)) &&
808 !win
->IsKindOf(CLASSINFO(wxDialog
)) &&
809 (win
!= GetStatusBar()) &&
810 (win
!= GetToolBar()) )
813 return; // it's our second subwindow - nothing to do
819 // we have exactly one child - set it's size to fill the whole frame
820 int clientW
, clientH
;
821 GetClientSize(&clientW
, &clientH
);
826 child
->SetSize(x
, y
, clientW
, clientH
);
830 // Default activation behaviour - set the focus for the first child
832 void wxFrame::OnActivate(wxActivateEvent
& event
)
834 for(wxNode
*node
= GetChildren()->First(); node
; node
= node
->Next())
836 // Find a child that's a subwindow, but not a dialog box.
837 wxWindow
*child
= (wxWindow
*)node
->Data();
838 if (!child
->IsKindOf(CLASSINFO(wxFrame
)) &&
839 !child
->IsKindOf(CLASSINFO(wxDialog
)))
847 // The default implementation for the close window event - calls
848 // OnClose for backward compatibility.
850 void wxFrame::OnCloseWindow(wxCloseEvent
& event
)
853 if ( GetEventHandler()->OnClose() || event
.GetForce())
861 bool wxFrame::OnClose(void)
866 // Destroy the window (delayed, if a managed window)
867 bool wxFrame::Destroy(void)
869 if (!wxPendingDelete
.Member(this))
870 wxPendingDelete
.Append(this);
874 // Default menu selection behaviour - display a help string
875 void wxFrame::OnMenuHighlight(wxMenuEvent
& event
)
879 if (event
.GetMenuId() == -1)
883 wxMenuBar
*menuBar
= GetMenuBar();
886 wxString
helpString(menuBar
->GetHelpString(event
.GetMenuId()));
887 if (helpString
!= "")
888 SetStatusText(helpString
);
894 wxMenuBar
*wxFrame::GetMenuBar(void) const
896 return m_frameMenuBar
;
899 void wxFrame::Centre(int direction
)
901 int display_width
, display_height
, width
, height
, x
, y
;
902 wxDisplaySize(&display_width
, &display_height
);
904 GetSize(&width
, &height
);
907 if (direction
& wxHORIZONTAL
)
908 x
= (int)((display_width
- width
)/2);
909 if (direction
& wxVERTICAL
)
910 y
= (int)((display_height
- height
)/2);
912 SetSize(x
, y
, width
, height
);
915 // Call this to simulate a menu command
916 void wxFrame::Command(int id
)
921 void wxFrame::ProcessCommand(int id
)
923 wxCommandEvent
commandEvent(wxEVENT_TYPE_MENU_COMMAND
, id
);
924 commandEvent
.SetInt( id
);
925 commandEvent
.SetEventObject( this );
927 wxMenuBar
*bar
= GetMenuBar() ;
931 wxMenuItem
*item
= bar
->FindItemForId(id
) ;
932 if (item
&& item
->IsCheckable())
934 bar
->Check(id
,!bar
->Checked(id
)) ;
936 GetEventHandler()->ProcessEvent(commandEvent
);
939 // Checks if there is a toolbar, and returns the first free client position
940 wxPoint
wxFrame::GetClientAreaOrigin() const
946 GetToolBar()->GetSize(& w
, & h
);
948 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
960 void wxFrame::ScreenToClient(int *x
, int *y
) const
962 wxWindow::ScreenToClient(x
, y
);
964 // We may be faking the client origin.
965 // So a window that's really at (0, 30) may appear
966 // (to wxWin apps) to be at (0, 0).
967 wxPoint
pt(GetClientAreaOrigin());
972 void wxFrame::ClientToScreen(int *x
, int *y
) const
974 // We may be faking the client origin.
975 // So a window that's really at (0, 30) may appear
976 // (to wxWin apps) to be at (0, 0).
977 wxPoint
pt1(GetClientAreaOrigin());
981 wxWindow::ClientToScreen(x
, y
);
984 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
986 wxCHECK_MSG( m_frameToolBar
== NULL
, FALSE
,
987 "recreating toolbar in wxFrame" );
989 wxToolBar
* toolBar
= OnCreateToolBar(style
, id
, name
);
1002 wxToolBar
* wxFrame::OnCreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
1004 return new wxToolBar(this, id
, wxDefaultPosition
, wxDefaultSize
, style
, name
);
1007 void wxFrame::PositionToolBar(void)
1010 ::GetClientRect((HWND
) GetHWND(), &rect
);
1012 if ( GetStatusBar() )
1014 int statusX
, statusY
;
1015 GetStatusBar()->GetClientSize(&statusX
, &statusY
);
1016 rect
.bottom
-= statusY
;
1022 GetToolBar()->GetSize(& tw
, & th
);
1024 if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL
)
1026 // Use the 'real' MSW position
1027 GetToolBar()->SetSize(0, 0, tw
, rect
.bottom
, wxSIZE_NO_ADJUSTMENTS
);
1031 // Use the 'real' MSW position
1032 GetToolBar()->SetSize(0, 0, rect
.right
, th
, wxSIZE_NO_ADJUSTMENTS
);
1037 // propagate our state change to all child frames
1038 void wxFrame::IconizeChildFrames(bool bIconize
)
1040 wxWindow
*child
= NULL
;
1041 for ( wxNode
*node
= GetChildren()->First(); node
; node
= node
->Next() ) {
1042 wxWindow
*win
= (wxWindow
*)node
->Data();
1043 if ( win
->IsKindOf(CLASSINFO(wxFrame
)) ) {
1044 ((wxFrame
*)win
)->Iconize(bIconize
);