X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a85245b1c2c2b3f49658b2b49f3cbfc5ff9efdd4..6d7b547184bfdcdf67790755deb0122050b1d728:/src/mac/carbon/frame.cpp diff --git a/src/mac/carbon/frame.cpp b/src/mac/carbon/frame.cpp index 8bc1e3bdc9..64a2eea64b 100644 --- a/src/mac/carbon/frame.cpp +++ b/src/mac/carbon/frame.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: frame.cpp +// Name: src/mac/carbon/frame.cpp // Purpose: wxFrame // Author: Stefan Csomor // Modified by: @@ -9,26 +9,24 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "frame.h" -#endif - #include "wx/wxprec.h" #include "wx/frame.h" -#include "wx/statusbr.h" -#include "wx/toolbar.h" -#include "wx/menuitem.h" -#include "wx/menu.h" -#include "wx/dcclient.h" -#include "wx/dialog.h" -#include "wx/settings.h" -#include "wx/app.h" + +#ifndef WX_PRECOMP + #include "wx/app.h" + #include "wx/dcclient.h" + #include "wx/menu.h" + #include "wx/dialog.h" + #include "wx/settings.h" + #include "wx/toolbar.h" + #include "wx/statusbr.h" + #include "wx/menuitem.h" +#endif // WX_PRECOMP #include "wx/mac/uma.h" extern wxWindowList wxModelessWindows; -extern wxList wxPendingDelete; BEGIN_EVENT_TABLE(wxFrame, wxFrameBase) EVT_ACTIVATE(wxFrame::OnActivate) @@ -41,6 +39,7 @@ END_EVENT_TABLE() IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxTopLevelWindow) #define WX_MAC_STATUSBAR_HEIGHT 18 + // ---------------------------------------------------------------------------- // creation/destruction // ---------------------------------------------------------------------------- @@ -48,18 +47,19 @@ IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxTopLevelWindow) void wxFrame::Init() { m_frameMenuBar = NULL; + m_frameStatusBar = NULL; + m_winLastFocused = NULL; #if wxUSE_TOOLBAR - m_frameToolBar = NULL ; + m_frameToolBar = NULL; #endif - m_frameStatusBar = NULL; - m_winLastFocused = NULL ; - - m_iconized = false; #if wxUSE_TOOLTIPS - m_hwndToolTip = 0; + // NB: is this used anywhere? + m_hwndToolTip = NULL; #endif + + m_iconized = false; } bool wxFrame::Create(wxWindow *parent, @@ -89,14 +89,14 @@ wxFrame::~wxFrame() wxPoint wxFrame::GetClientAreaOrigin() const { wxPoint pt = wxTopLevelWindow::GetClientAreaOrigin(); - + #if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) wxToolBar *toolbar = GetToolBar(); if ( toolbar && toolbar->IsShown() ) { int w, h; toolbar->GetSize(&w, &h); - + if ( toolbar->GetWindowStyleFlag() & wxTB_VERTICAL ) { pt.x += w; @@ -108,8 +108,8 @@ wxPoint wxFrame::GetClientAreaOrigin() const #endif } } -#endif // wxUSE_TOOLBAR - +#endif + return pt; } @@ -120,7 +120,7 @@ bool wxFrame::Enable(bool enable) if ( m_frameMenuBar && m_frameMenuBar == wxMenuBar::MacGetInstalledMenuBar() ) { - int iMaxMenu = m_frameMenuBar->GetMenuCount(); + int iMaxMenu = m_frameMenuBar->GetMenuCount(); for ( int i = 0 ; i < iMaxMenu ; ++ i ) { m_frameMenuBar->EnableTop( i , enable ) ; @@ -133,12 +133,12 @@ bool wxFrame::Enable(bool enable) wxStatusBar *wxFrame::OnCreateStatusBar(int number, long style, wxWindowID id, const wxString& name) { - wxStatusBar *statusBar = NULL; + wxStatusBar *statusBar; - statusBar = new wxStatusBar(this, id, - style, name); - statusBar->SetSize( 100 , WX_MAC_STATUSBAR_HEIGHT ) ; + statusBar = new wxStatusBar(this, id, style, name); + statusBar->SetSize(100, WX_MAC_STATUSBAR_HEIGHT); statusBar->SetFieldsCount(number); + return statusBar; } @@ -164,6 +164,7 @@ void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event) if ( m_frameStatusBar ) { wxSysColourChangedEvent event2; + event2.SetEventObject( m_frameStatusBar ); m_frameStatusBar->ProcessEvent(event2); } @@ -172,7 +173,6 @@ void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event) wxWindow::OnSysColourChanged(event); } - // Default activation behaviour - set the focus for the first child // subwindow found. void wxFrame::OnActivate(wxActivateEvent& event) @@ -189,9 +189,7 @@ void wxFrame::OnActivate(wxActivateEvent& event) if ( win->IsTopLevel() ) { if ( win != this ) - { m_winLastFocused = NULL; - } break; } @@ -204,58 +202,70 @@ void wxFrame::OnActivate(wxActivateEvent& event) else { // restore focus to the child which was last focused - wxWindow *parent = m_winLastFocused ? m_winLastFocused->GetParent() - : NULL; - if ( !parent ) - { + wxWindow *parent = m_winLastFocused + ? m_winLastFocused->GetParent() + : NULL; + + if (parent == NULL) parent = this; - } wxSetFocusToChild(parent, &m_winLastFocused); - if ( m_frameMenuBar != NULL ) + if (m_frameMenuBar != NULL) { - m_frameMenuBar->MacInstallMenuBar() ; + m_frameMenuBar->MacInstallMenuBar(); } - else if (wxTheApp->GetTopWindow() && wxTheApp->GetTopWindow()->IsKindOf(CLASSINFO(wxFrame))) + else { - // Trying toplevel frame menbar - if( ((wxFrame*)wxTheApp->GetTopWindow())->GetMenuBar() ) - ((wxFrame*)wxTheApp->GetTopWindow())->GetMenuBar()->MacInstallMenuBar(); - } + wxFrame *tlf = wxDynamicCast( wxTheApp->GetTopWindow(), wxFrame ); + if (tlf != NULL) + { + // Trying top-level frame membar + if (tlf->GetMenuBar()) + tlf->GetMenuBar()->MacInstallMenuBar(); + } + } } } void wxFrame::DetachMenuBar() { if ( m_frameMenuBar ) - { m_frameMenuBar->UnsetInvokingWindow(); - } wxFrameBase::DetachMenuBar(); } void wxFrame::AttachMenuBar( wxMenuBar *menuBar ) { - wxFrameBase::AttachMenuBar(menuBar); + wxFrame* tlf = wxDynamicCast( wxFindWinFromMacWindow( FrontNonFloatingWindow() ) , wxFrame ); + bool makeCurrent = false; + + // if this is already the current menubar or we are the frontmost window + if ( (tlf == this) || (m_frameMenuBar == wxMenuBar::MacGetInstalledMenuBar()) ) + makeCurrent = true; + // or there is an app-level menubar like MDI + else if ( tlf && (tlf->GetMenuBar() == NULL) && (((wxFrame*)wxTheApp->GetTopWindow()) == this) ) + makeCurrent = true; + + wxFrameBase::AttachMenuBar( menuBar ); if (m_frameMenuBar) { m_frameMenuBar->SetInvokingWindow( this ); + if (makeCurrent) + m_frameMenuBar->MacInstallMenuBar(); } } void wxFrame::DoGetClientSize(int *x, int *y) const { - wxTopLevelWindow::DoGetClientSize( x , y ) ; + wxTopLevelWindow::DoGetClientSize( x , y ); #if wxUSE_STATUSBAR if ( GetStatusBar() && GetStatusBar()->IsShown() && y ) - { *y -= WX_MAC_STATUSBAR_HEIGHT; - } -#endif // wxUSE_STATUSBAR +#endif #if wxUSE_TOOLBAR wxToolBar *toolbar = GetToolBar(); @@ -266,16 +276,18 @@ void wxFrame::DoGetClientSize(int *x, int *y) const if ( toolbar->GetWindowStyleFlag() & wxTB_VERTICAL ) { - if ( x ) *x -= w; + if ( x ) + *x -= w; } else { #if !wxMAC_USE_NATIVE_TOOLBAR - if ( y ) *y -= h; + if ( y ) + *y -= h; #endif } } -#endif // wxUSE_TOOLBAR +#endif } bool wxFrame::MacIsChildOfClientArea( const wxWindow* child ) const @@ -283,12 +295,12 @@ bool wxFrame::MacIsChildOfClientArea( const wxWindow* child ) const #if wxUSE_STATUSBAR if ( child == GetStatusBar() ) return false ; -#endif // wxUSE_STATUSBAR +#endif #if wxUSE_TOOLBAR if ( child == GetToolBar() ) return false ; -#endif // wxUSE_TOOLBAR +#endif return wxFrameBase::MacIsChildOfClientArea( child ) ; } @@ -307,27 +319,25 @@ void wxFrame::DoSetClientSize(int clientwidth, int clientheight) // find the current client size - // Find the difference between the entire window (title bar and all) - // and the client area; add this to the new client size to move the - // window - + // Find the difference between the entire window (title bar and all) and + // the client area; add this to the new client size to move the window DoSetSize( -1 , -1 , currentwidth + clientwidth - currentclientwidth , currentheight + clientheight - currentclientheight , wxSIZE_USE_EXISTING ) ; } - #if wxUSE_TOOLBAR void wxFrame::SetToolBar(wxToolBar *toolbar) { if ( m_frameToolBar == toolbar ) return ; - + #if wxMAC_USE_NATIVE_TOOLBAR if ( m_frameToolBar ) - m_frameToolBar->MacInstallNativeToolbar(false) ; + m_frameToolBar->MacInstallNativeToolbar( false ) ; #endif - + m_frameToolBar = toolbar ; + #if wxMAC_USE_NATIVE_TOOLBAR if ( toolbar ) toolbar->MacInstallNativeToolbar( true ) ; @@ -337,9 +347,7 @@ void wxFrame::SetToolBar(wxToolBar *toolbar) wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name) { if ( wxFrameBase::CreateToolBar(style, id, name) ) - { PositionToolBar(); - } return m_frameToolBar; } @@ -350,19 +358,20 @@ void wxFrame::PositionToolBar() GetSize( &cw , &ch ) ; - if ( GetStatusBar() && GetStatusBar()->IsShown()) + if (GetStatusBar() && GetStatusBar()->IsShown()) { - int statusX, statusY; - GetStatusBar()->GetClientSize(&statusX, &statusY); - ch -= statusY; + int statusX, statusY; + + GetStatusBar()->GetClientSize(&statusX, &statusY); + ch -= statusY; } if (GetToolBar()) { int tx, ty, tw, th; - tx = ty = 0 ; - GetToolBar()->GetSize(& tw, & th); + tx = ty = 0 ; + GetToolBar()->GetSize(&tw, &th); if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL) { // Use the 'real' position. wxSIZE_NO_ADJUSTMENTS @@ -379,4 +388,15 @@ void wxFrame::PositionToolBar() } } } + +void wxFrame::PositionBars() +{ +#if wxUSE_STATUSBAR + PositionStatusBar(); +#endif +#if wxUSE_TOOLBAR + PositionToolBar(); +#endif +} + #endif