X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cd05bf23f6aec29f60a793f3ca4dfe336661fca1..ac22204b1b6013f7e53951835d2dc9168eaa004c:/src/aui/tabmdi.cpp diff --git a/src/aui/tabmdi.cpp b/src/aui/tabmdi.cpp index d57da77f66..38ced9bfe4 100644 --- a/src/aui/tabmdi.cpp +++ b/src/aui/tabmdi.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: src/generic/mdig.cpp +// Name: src/aui/tabmdi.cpp // Purpose: Generic MDI (Multiple Document Interface) classes // Author: Hans Van Leemputten // Modified by: Benjamin I. Williams / Kirix Corporation @@ -24,6 +24,7 @@ #pragma hdrstop #endif +#if wxUSE_AUI #if wxUSE_MDI #include "wx/aui/tabmdi.h" @@ -33,6 +34,7 @@ #include "wx/menu.h" #include "wx/intl.h" #include "wx/log.h" + #include "wx/settings.h" #endif //WX_PRECOMP #include "wx/stockitem.h" @@ -46,23 +48,23 @@ enum MDI_MENU_ID }; //----------------------------------------------------------------------------- -// wxTabMDIParentFrame +// wxAuiMDIParentFrame //----------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxTabMDIParentFrame, wxFrame) +IMPLEMENT_DYNAMIC_CLASS(wxAuiMDIParentFrame, wxFrame) -BEGIN_EVENT_TABLE(wxTabMDIParentFrame, wxFrame) +BEGIN_EVENT_TABLE(wxAuiMDIParentFrame, wxFrame) #if wxUSE_MENUS - EVT_MENU (wxID_ANY, wxTabMDIParentFrame::DoHandleMenu) + EVT_MENU (wxID_ANY, wxAuiMDIParentFrame::DoHandleMenu) #endif END_EVENT_TABLE() -wxTabMDIParentFrame::wxTabMDIParentFrame() +wxAuiMDIParentFrame::wxAuiMDIParentFrame() { Init(); } -wxTabMDIParentFrame::wxTabMDIParentFrame(wxWindow *parent, +wxAuiMDIParentFrame::wxAuiMDIParentFrame(wxWindow *parent, wxWindowID id, const wxString& title, const wxPoint& pos, @@ -74,7 +76,7 @@ wxTabMDIParentFrame::wxTabMDIParentFrame(wxWindow *parent, (void)Create(parent, id, title, pos, size, style, name); } -wxTabMDIParentFrame::~wxTabMDIParentFrame() +wxAuiMDIParentFrame::~wxAuiMDIParentFrame() { // Make sure the client window is destructed before the menu bars are! wxDELETE(m_pClientWindow); @@ -85,7 +87,7 @@ wxTabMDIParentFrame::~wxTabMDIParentFrame() #endif // wxUSE_MENUS } -bool wxTabMDIParentFrame::Create(wxWindow *parent, +bool wxAuiMDIParentFrame::Create(wxWindow *parent, wxWindowID id, const wxString& title, const wxPoint& pos, @@ -113,7 +115,7 @@ bool wxTabMDIParentFrame::Create(wxWindow *parent, } #if wxUSE_MENUS -void wxTabMDIParentFrame::SetWindowMenu(wxMenu* pMenu) +void wxAuiMDIParentFrame::SetWindowMenu(wxMenu* pMenu) { // Replace the window menu from the currently loaded menu bar. wxMenuBar *pMenuBar = GetMenuBar(); @@ -131,20 +133,20 @@ void wxTabMDIParentFrame::SetWindowMenu(wxMenu* pMenu) } } -void wxTabMDIParentFrame::SetMenuBar(wxMenuBar *pMenuBar) +void wxAuiMDIParentFrame::SetMenuBar(wxMenuBar* pMenuBar) { // Remove the Window menu from the old menu bar RemoveWindowMenu(GetMenuBar()); - + // Add the Window menu to the new menu bar. AddWindowMenu(pMenuBar); - + wxFrame::SetMenuBar(pMenuBar); m_pMyMenuBar = GetMenuBar(); } #endif // wxUSE_MENUS -void wxTabMDIParentFrame::SetChildMenuBar(wxTabMDIChildFrame* pChild) +void wxAuiMDIParentFrame::SetChildMenuBar(wxAuiMDIChildFrame* pChild) { #if wxUSE_MENUS if (!pChild) @@ -153,7 +155,7 @@ void wxTabMDIParentFrame::SetChildMenuBar(wxTabMDIChildFrame* pChild) SetMenuBar(m_pMyMenuBar); // Make sure we know our menu bar is in use - m_pMyMenuBar = NULL; + //m_pMyMenuBar = NULL; } else { @@ -169,7 +171,7 @@ void wxTabMDIParentFrame::SetChildMenuBar(wxTabMDIChildFrame* pChild) #endif // wxUSE_MENUS } -bool wxTabMDIParentFrame::ProcessEvent(wxEvent& event) +bool wxAuiMDIParentFrame::ProcessEvent(wxEvent& event) { // Stops the same event being processed repeatedly static wxEventType inEvent = wxEVT_NULL; @@ -206,30 +208,30 @@ bool wxTabMDIParentFrame::ProcessEvent(wxEvent& event) return res; } -wxTabMDIChildFrame *wxTabMDIParentFrame::GetActiveChild() const +wxAuiMDIChildFrame *wxAuiMDIParentFrame::GetActiveChild() const { return m_pActiveChild; } -void wxTabMDIParentFrame::SetActiveChild(wxTabMDIChildFrame* pChildFrame) +void wxAuiMDIParentFrame::SetActiveChild(wxAuiMDIChildFrame* pChildFrame) { m_pActiveChild = pChildFrame; } -wxTabMDIClientWindow *wxTabMDIParentFrame::GetClientWindow() const +wxAuiMDIClientWindow *wxAuiMDIParentFrame::GetClientWindow() const { return m_pClientWindow; } -wxTabMDIClientWindow *wxTabMDIParentFrame::OnCreateClient() +wxAuiMDIClientWindow *wxAuiMDIParentFrame::OnCreateClient() { - m_pClientWindow = new wxTabMDIClientWindow( this ); + m_pClientWindow = new wxAuiMDIClientWindow( this ); return m_pClientWindow; } -void wxTabMDIParentFrame::ActivateNext() +void wxAuiMDIParentFrame::ActivateNext() { - if (m_pClientWindow && m_pClientWindow->GetSelection() != -1) + if (m_pClientWindow && m_pClientWindow->GetSelection() != wxNOT_FOUND) { size_t active = m_pClientWindow->GetSelection() + 1; if (active >= m_pClientWindow->GetPageCount()) @@ -239,9 +241,9 @@ void wxTabMDIParentFrame::ActivateNext() } } -void wxTabMDIParentFrame::ActivatePrevious() +void wxAuiMDIParentFrame::ActivatePrevious() { - if (m_pClientWindow && m_pClientWindow->GetSelection() != -1) + if (m_pClientWindow && m_pClientWindow->GetSelection() != wxNOT_FOUND) { int active = m_pClientWindow->GetSelection() - 1; if (active < 0) @@ -251,7 +253,7 @@ void wxTabMDIParentFrame::ActivatePrevious() } } -void wxTabMDIParentFrame::Init() +void wxAuiMDIParentFrame::Init() { m_pClientWindow = NULL; m_pActiveChild = NULL; @@ -262,7 +264,7 @@ void wxTabMDIParentFrame::Init() } #if wxUSE_MENUS -void wxTabMDIParentFrame::RemoveWindowMenu(wxMenuBar* pMenuBar) +void wxAuiMDIParentFrame::RemoveWindowMenu(wxMenuBar* pMenuBar) { if (pMenuBar && m_pWindowMenu) { @@ -277,11 +279,11 @@ void wxTabMDIParentFrame::RemoveWindowMenu(wxMenuBar* pMenuBar) } } -void wxTabMDIParentFrame::AddWindowMenu(wxMenuBar *pMenuBar) +void wxAuiMDIParentFrame::AddWindowMenu(wxMenuBar *pMenuBar) { if (pMenuBar && m_pWindowMenu) { - int pos = pMenuBar->FindMenu(wxGetStockLabel(wxID_HELP,false)); + int pos = pMenuBar->FindMenu(wxGetStockLabel(wxID_HELP,wxSTOCK_NOFLAGS)); if (pos == wxNOT_FOUND) pMenuBar->Append(m_pWindowMenu, _("&Window")); else @@ -289,7 +291,7 @@ void wxTabMDIParentFrame::AddWindowMenu(wxMenuBar *pMenuBar) } } -void wxTabMDIParentFrame::DoHandleMenu(wxCommandEvent& event) +void wxAuiMDIParentFrame::DoHandleMenu(wxCommandEvent& event) { switch (event.GetId()) { @@ -323,29 +325,29 @@ void wxTabMDIParentFrame::DoHandleMenu(wxCommandEvent& event) } #endif // wxUSE_MENUS -void wxTabMDIParentFrame::DoGetClientSize(int* width, int* height) const +void wxAuiMDIParentFrame::DoGetClientSize(int* width, int* height) const { wxFrame::DoGetClientSize(width, height); } //----------------------------------------------------------------------------- -// wxTabMDIChildFrame +// wxAuiMDIChildFrame //----------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxTabMDIChildFrame, wxPanel) +IMPLEMENT_DYNAMIC_CLASS(wxAuiMDIChildFrame, wxPanel) -BEGIN_EVENT_TABLE(wxTabMDIChildFrame, wxPanel) - EVT_MENU_HIGHLIGHT_ALL(wxTabMDIChildFrame::OnMenuHighlight) - EVT_ACTIVATE(wxTabMDIChildFrame::OnActivate) - EVT_CLOSE(wxTabMDIChildFrame::OnCloseWindow) +BEGIN_EVENT_TABLE(wxAuiMDIChildFrame, wxPanel) + EVT_MENU_HIGHLIGHT_ALL(wxAuiMDIChildFrame::OnMenuHighlight) + EVT_ACTIVATE(wxAuiMDIChildFrame::OnActivate) + EVT_CLOSE(wxAuiMDIChildFrame::OnCloseWindow) END_EVENT_TABLE() -wxTabMDIChildFrame::wxTabMDIChildFrame() +wxAuiMDIChildFrame::wxAuiMDIChildFrame() { Init(); } -wxTabMDIChildFrame::wxTabMDIChildFrame(wxTabMDIParentFrame *parent, +wxAuiMDIChildFrame::wxAuiMDIChildFrame(wxAuiMDIParentFrame *parent, wxWindowID id, const wxString& title, const wxPoint& WXUNUSED(pos), @@ -357,14 +359,14 @@ wxTabMDIChildFrame::wxTabMDIChildFrame(wxTabMDIParentFrame *parent, Create(parent, id, title, wxDefaultPosition, size, style, name); } -wxTabMDIChildFrame::~wxTabMDIChildFrame() +wxAuiMDIChildFrame::~wxAuiMDIChildFrame() { #if wxUSE_MENUS wxDELETE(m_pMenuBar); #endif // wxUSE_MENUS } -bool wxTabMDIChildFrame::Create(wxTabMDIParentFrame* parent, +bool wxAuiMDIChildFrame::Create(wxAuiMDIParentFrame* parent, wxWindowID id, const wxString& title, const wxPoint& WXUNUSED(pos), @@ -372,7 +374,7 @@ bool wxTabMDIChildFrame::Create(wxTabMDIParentFrame* parent, long style, const wxString& name) { - wxTabMDIClientWindow* pClientWindow = parent->GetClientWindow(); + wxAuiMDIClientWindow* pClientWindow = parent->GetClientWindow(); wxASSERT_MSG((pClientWindow != (wxWindow*) NULL), wxT("Missing MDI client window.")); wxPanel::Create(pClientWindow, id, wxDefaultPosition, size, style|wxNO_BORDER, name); @@ -390,90 +392,39 @@ bool wxTabMDIChildFrame::Create(wxTabMDIParentFrame* parent, return true; } -bool wxTabMDIChildFrame::Destroy() +bool wxAuiMDIChildFrame::Destroy() { - wxTabMDIParentFrame* pParentFrame = GetMDIParentFrame(); + wxAuiMDIParentFrame* pParentFrame = GetMDIParentFrame(); wxASSERT_MSG(pParentFrame, wxT("Missing MDI Parent Frame")); - - wxTabMDIClientWindow* pClientWindow = pParentFrame->GetClientWindow(); + + wxAuiMDIClientWindow* pClientWindow = pParentFrame->GetClientWindow(); wxASSERT_MSG(pClientWindow, wxT("Missing MDI Client Window")); - - bool bActive = false; - if (pParentFrame->GetActiveChild() == this) - { - pParentFrame->SetActiveChild(NULL); - pParentFrame->SetChildMenuBar(NULL); - bActive = true; - } - - size_t pos, page_count = pClientWindow->GetPageCount(); - for (pos = 0; pos < page_count; pos++) - { - if (pClientWindow->GetPage(pos) == this) - return pClientWindow->DeletePage(pos); - } - - return false; -} -/* - wxTabMDIParentFrame* pParentFrame = GetMDIParentFrame(); - wxASSERT_MSG(pParentFrame, wxT("Missing MDI Parent Frame")); - - bool bActive = false; if (pParentFrame->GetActiveChild() == this) { pParentFrame->SetActiveChild(NULL); pParentFrame->SetChildMenuBar(NULL); - bActive = true; } - wxTabMDIClientWindow* pClientWindow = pParentFrame->GetClientWindow(); - - // remove page if it is still there - size_t pos; - for (pos = 0; pos < pClientWindow->GetPageCount(); pos++) + const size_t page_count = pClientWindow->GetPageCount(); + for (size_t pos = 0; pos < page_count; pos++) { if (pClientWindow->GetPage(pos) == this) - { - if (pClientWindow->RemovePage(pos)) - pClientWindow->Refresh(); - break; - } - } - - if (bActive) - { - // Set the new selection to the a remaining page - if (pos < pClientWindow->GetPageCount()) - { - pClientWindow->SetSelection(pos); - } - else - { - if (pClientWindow->GetPageCount() >= 1) - pClientWindow->SetSelection(pClientWindow->GetPageCount() - 1); - } + return pClientWindow->DeletePage(pos); } - // delete the child frame with pending delete, as is - // customary with frame windows - if (!wxPendingDelete.Member(this)) - wxPendingDelete.Append(this); - - return true; -*/ - + return false; +} #if wxUSE_MENUS -void wxTabMDIChildFrame::SetMenuBar(wxMenuBar *menu_bar) +void wxAuiMDIChildFrame::SetMenuBar(wxMenuBar *menu_bar) { wxMenuBar *pOldMenuBar = m_pMenuBar; m_pMenuBar = menu_bar; if (m_pMenuBar) { - wxTabMDIParentFrame* pParentFrame = GetMDIParentFrame(); + wxAuiMDIParentFrame* pParentFrame = GetMDIParentFrame(); wxASSERT_MSG(pParentFrame, wxT("Missing MDI Parent Frame")); m_pMenuBar->SetParent(pParentFrame); @@ -487,20 +438,20 @@ void wxTabMDIChildFrame::SetMenuBar(wxMenuBar *menu_bar) } } -wxMenuBar *wxTabMDIChildFrame::GetMenuBar() const +wxMenuBar *wxAuiMDIChildFrame::GetMenuBar() const { return m_pMenuBar; } #endif // wxUSE_MENUS -void wxTabMDIChildFrame::SetTitle(const wxString& title) +void wxAuiMDIChildFrame::SetTitle(const wxString& title) { m_title = title; - wxTabMDIParentFrame* pParentFrame = GetMDIParentFrame(); + wxAuiMDIParentFrame* pParentFrame = GetMDIParentFrame(); wxASSERT_MSG(pParentFrame, wxT("Missing MDI Parent Frame")); - wxTabMDIClientWindow* pClientWindow = pParentFrame->GetClientWindow(); + wxAuiMDIClientWindow* pClientWindow = pParentFrame->GetClientWindow(); if (pClientWindow != NULL) { size_t pos; @@ -515,17 +466,17 @@ void wxTabMDIChildFrame::SetTitle(const wxString& title) } } -wxString wxTabMDIChildFrame::GetTitle() const +wxString wxAuiMDIChildFrame::GetTitle() const { return m_title; } -void wxTabMDIChildFrame::Activate() +void wxAuiMDIChildFrame::Activate() { - wxTabMDIParentFrame* pParentFrame = GetMDIParentFrame(); + wxAuiMDIParentFrame* pParentFrame = GetMDIParentFrame(); wxASSERT_MSG(pParentFrame, wxT("Missing MDI Parent Frame")); - wxTabMDIClientWindow* pClientWindow = pParentFrame->GetClientWindow(); + wxAuiMDIClientWindow* pClientWindow = pParentFrame->GetClientWindow(); if (pClientWindow != NULL) { @@ -541,7 +492,7 @@ void wxTabMDIChildFrame::Activate() } } -void wxTabMDIChildFrame::OnMenuHighlight(wxMenuEvent& event) +void wxAuiMDIChildFrame::OnMenuHighlight(wxMenuEvent& event) { #if wxUSE_STATUSBAR if (m_pMDIParentFrame) @@ -555,27 +506,27 @@ void wxTabMDIChildFrame::OnMenuHighlight(wxMenuEvent& event) #endif // wxUSE_STATUSBAR } -void wxTabMDIChildFrame::OnActivate(wxActivateEvent& WXUNUSED(event)) +void wxAuiMDIChildFrame::OnActivate(wxActivateEvent& WXUNUSED(event)) { // do nothing } -void wxTabMDIChildFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) +void wxAuiMDIChildFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) { Destroy(); } -void wxTabMDIChildFrame::SetMDIParentFrame(wxTabMDIParentFrame* parentFrame) +void wxAuiMDIChildFrame::SetMDIParentFrame(wxAuiMDIParentFrame* parentFrame) { m_pMDIParentFrame = parentFrame; } -wxTabMDIParentFrame* wxTabMDIChildFrame::GetMDIParentFrame() const +wxAuiMDIParentFrame* wxAuiMDIChildFrame::GetMDIParentFrame() const { return m_pMDIParentFrame; } -void wxTabMDIChildFrame::Init() +void wxAuiMDIChildFrame::Init() { m_pMDIParentFrame = NULL; #if wxUSE_MENUS @@ -583,28 +534,33 @@ void wxTabMDIChildFrame::Init() #endif // wxUSE_MENUS } -bool wxTabMDIChildFrame::Show(bool WXUNUSED(show)) +bool wxAuiMDIChildFrame::Show(bool WXUNUSED(show)) { // do nothing return true; } -void wxTabMDIChildFrame::DoShow(bool show) +void wxAuiMDIChildFrame::DoShow(bool show) { wxWindow::Show(show); } -void wxTabMDIChildFrame::DoSetSize(int x, int y, int width, int height, int WXUNUSED(sizeFlags)) +void wxAuiMDIChildFrame::DoSetSize(int x, int y, int width, int height, int sizeFlags) { m_mdi_newrect = wxRect(x, y, width, height); +#ifdef __WXGTK__ + wxPanel::DoSetSize(x,y,width, height, sizeFlags); +#else + wxUnusedVar(sizeFlags); +#endif } -void wxTabMDIChildFrame::DoMoveWindow(int x, int y, int width, int height) +void wxAuiMDIChildFrame::DoMoveWindow(int x, int y, int width, int height) { m_mdi_newrect = wxRect(x, y, width, height); } -void wxTabMDIChildFrame::ApplyMDIChildFrameRect() +void wxAuiMDIChildFrame::ApplyMDIChildFrameRect() { if (m_mdi_currect != m_mdi_newrect) { @@ -616,66 +572,66 @@ void wxTabMDIChildFrame::ApplyMDIChildFrameRect() //----------------------------------------------------------------------------- -// wxTabMDIClientWindow +// wxAuiMDIClientWindow //----------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxTabMDIClientWindow, wxAuiMultiNotebook) +IMPLEMENT_DYNAMIC_CLASS(wxAuiMDIClientWindow, wxAuiNotebook) -BEGIN_EVENT_TABLE(wxTabMDIClientWindow, wxAuiMultiNotebook) - EVT_AUINOTEBOOK_PAGE_CHANGED(-1, wxTabMDIClientWindow::OnPageChanged) - EVT_SIZE(wxTabMDIClientWindow::OnSize) +BEGIN_EVENT_TABLE(wxAuiMDIClientWindow, wxAuiNotebook) + EVT_AUINOTEBOOK_PAGE_CHANGED(wxID_ANY, wxAuiMDIClientWindow::OnPageChanged) + EVT_SIZE(wxAuiMDIClientWindow::OnSize) END_EVENT_TABLE() -wxTabMDIClientWindow::wxTabMDIClientWindow() +wxAuiMDIClientWindow::wxAuiMDIClientWindow() { } -wxTabMDIClientWindow::wxTabMDIClientWindow(wxTabMDIParentFrame* parent, long style) +wxAuiMDIClientWindow::wxAuiMDIClientWindow(wxAuiMDIParentFrame* parent, long style) { CreateClient(parent, style); } -wxTabMDIClientWindow::~wxTabMDIClientWindow() +wxAuiMDIClientWindow::~wxAuiMDIClientWindow() { DestroyChildren(); } -bool wxTabMDIClientWindow::CreateClient(wxTabMDIParentFrame* parent, long style) +bool wxAuiMDIClientWindow::CreateClient(wxAuiMDIParentFrame* parent, long style) { SetWindowStyleFlag(style); - if (!wxAuiMultiNotebook::Create(parent, - -1, - wxPoint(0,0), - wxSize(100, 100), - wxNO_BORDER)) + if (!wxAuiNotebook::Create(parent, + wxID_ANY, + wxPoint(0,0), + wxSize(100, 100), + wxAUI_NB_DEFAULT_STYLE | wxNO_BORDER)) { return false; } - + wxColour bkcolour = wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE); SetBackgroundColour(bkcolour); - + m_mgr.GetArtProvider()->SetColour(wxAUI_ART_BACKGROUND_COLOUR, bkcolour); - + return true; } -int wxTabMDIClientWindow::SetSelection(size_t nPage) +int wxAuiMDIClientWindow::SetSelection(size_t nPage) { - return wxAuiMultiNotebook::SetSelection(nPage); + return wxAuiNotebook::SetSelection(nPage); } -void wxTabMDIClientWindow::PageChanged(int old_selection, int new_selection) +void wxAuiMDIClientWindow::PageChanged(int old_selection, int new_selection) { // don't do anything if the page doesn't actually change if (old_selection == new_selection) return; - + // don't do anything if the new page is already active if (new_selection != -1) { - wxTabMDIChildFrame* child = (wxTabMDIChildFrame*)GetPage(new_selection); + wxAuiMDIChildFrame* child = (wxAuiMDIChildFrame*)GetPage(new_selection); if (child->GetMDIParentFrame()->GetActiveChild() == child) return; } @@ -683,9 +639,9 @@ void wxTabMDIClientWindow::PageChanged(int old_selection, int new_selection) // notify old active child that it has been deactivated if (old_selection != -1) { - wxTabMDIChildFrame* old_child = (wxTabMDIChildFrame*)GetPage(old_selection); - wxASSERT_MSG(old_child, wxT("wxTabMDIClientWindow::PageChanged - null page pointer")); - + wxAuiMDIChildFrame* old_child = (wxAuiMDIChildFrame*)GetPage(old_selection); + wxASSERT_MSG(old_child, wxT("wxAuiMDIClientWindow::PageChanged - null page pointer")); + wxActivateEvent event(wxEVT_ACTIVATE, false, old_child->GetId()); event.SetEventObject(old_child); old_child->GetEventHandler()->ProcessEvent(event); @@ -694,9 +650,9 @@ void wxTabMDIClientWindow::PageChanged(int old_selection, int new_selection) // notify new active child that it has been activated if (new_selection != -1) { - wxTabMDIChildFrame* active_child = (wxTabMDIChildFrame*)GetPage(new_selection); - wxASSERT_MSG(active_child, wxT("wxTabMDIClientWindow::PageChanged - null page pointer")); - + wxAuiMDIChildFrame* active_child = (wxAuiMDIChildFrame*)GetPage(new_selection); + wxASSERT_MSG(active_child, wxT("wxAuiMDIClientWindow::PageChanged - null page pointer")); + wxActivateEvent event(wxEVT_ACTIVATE, true, active_child->GetId()); event.SetEventObject(active_child); active_child->GetEventHandler()->ProcessEvent(event); @@ -709,18 +665,19 @@ void wxTabMDIClientWindow::PageChanged(int old_selection, int new_selection) } } -void wxTabMDIClientWindow::OnPageChanged(wxAuiNotebookEvent& evt) +void wxAuiMDIClientWindow::OnPageChanged(wxAuiNotebookEvent& evt) { PageChanged(evt.GetOldSelection(), evt.GetSelection()); evt.Skip(); } -void wxTabMDIClientWindow::OnSize(wxSizeEvent& evt) -{ - wxAuiMultiNotebook::OnSize(evt); +void wxAuiMDIClientWindow::OnSize(wxSizeEvent& evt) +{ + wxAuiNotebook::OnSize(evt); for (size_t pos = 0; pos < GetPageCount(); pos++) - ((wxTabMDIChildFrame *)GetPage(pos))->ApplyMDIChildFrameRect(); + ((wxAuiMDIChildFrame *)GetPage(pos))->ApplyMDIChildFrameRect(); } +#endif //wxUSE_AUI #endif // wxUSE_MDI