{
if (!m_pClientWindow)
return NULL;
-
+
return m_pClientWindow->GetArtProvider();
}
if (m_pLastEvt == &event)
return false;
m_pLastEvt = &event;
-
+
// let the active child (if any) process the event first.
bool res = false;
if (m_pActiveChild &&
{
return; // failure
}
- else
- {
- delete m_pActiveChild;
- m_pActiveChild = NULL;
- }
}
break;
case wxWINDOWNEXT:
{
wxAuiMDIClientWindow* client_window = GetClientWindow();
wxASSERT_MSG(client_window, wxT("Missing MDI Client Window"));
-
+
int cur_idx = client_window->GetSelection();
if (cur_idx == -1)
return;
-
+
if (orient == wxVERTICAL)
{
client_window->Split(cur_idx, wxLEFT);
const wxString& name)
{
Init();
-
+
// There are two ways to create an tabbed mdi child fram without
// making it the active document. Either Show(false) can be called
// before Create() (as is customary on some ports with wxFrame-type
// onto the panel underneath.
if (style & wxMINIMIZE)
m_activate_on_create = false;
-
+
Create(parent, id, title, wxDefaultPosition, size, 0, name);
}
pParentFrame->SetActiveChild(NULL);
pParentFrame->SetChildMenuBar(NULL);
}
-
+
#if wxUSE_MENUS
wxDELETE(m_pMenuBar);
#endif // wxUSE_MENUS
pClientWindow->AddPage(this, title, m_activate_on_create);
pClientWindow->Refresh();
-
+
return true;
}
wxActivateEvent event(wxEVT_ACTIVATE, false, GetId());
event.SetEventObject(this);
GetEventHandler()->ProcessEvent(event);
-
+
pParentFrame->SetActiveChild(NULL);
pParentFrame->SetChildMenuBar(NULL);
}
wxASSERT_MSG(pParentFrame, wxT("Missing MDI Parent Frame"));
m_icon = icon;
-
+
wxBitmap bmp;
bmp.CopyFromIcon(m_icon);
-
+
wxAuiMDIClientWindow* pClientWindow = pParentFrame->GetClientWindow();
if (pClientWindow != NULL)
{
int idx = pClientWindow->GetPageIndex(this);
-
+
if (idx != -1)
{
pClientWindow->SetPageBitmap((size_t)idx, bmp);
{
return m_icon;
}
-
-
+
+
void wxAuiMDIChildFrame::Activate()
{
wxAuiMDIParentFrame* pParentFrame = GetMDIParentFrame();
bool wxAuiMDIChildFrame::Show(bool show)
{
m_activate_on_create = show;
-
+
// do nothing
return true;
}
{
SetWindowStyleFlag(style);
- wxSize caption_icon_size =
+ wxSize caption_icon_size =
wxSize(wxSystemSettings::GetMetric(wxSYS_SMALLICON_X),
wxSystemSettings::GetMetric(wxSYS_SMALLICON_Y));
SetUniformBitmapSize(caption_icon_size);
-
+
if (!wxAuiNotebook::Create(parent,
wxID_ANY,
wxPoint(0,0),
// 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)
if (child->GetMDIParentFrame()->GetActiveChild() == child)
return;
}*/
-
-
+
+
// notify old active child that it has been deactivated
if (old_selection != -1)
{
event.SetEventObject(old_child);
old_child->GetEventHandler()->ProcessEvent(event);
}
-
+
// notify new active child that it has been activated
if (new_selection != -1)
{
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);
-
+
if (active_child->GetMDIParentFrame())
{
active_child->GetMDIParentFrame()->SetActiveChild(active_child);
active_child->GetMDIParentFrame()->SetChildMenuBar(active_child);
}
}
-
+
}
{
wxAuiMDIChildFrame* wnd;
wnd = static_cast<wxAuiMDIChildFrame*>(GetPage(evt.GetSelection()));
-
+
wnd->Close();
-
+
// regardless of the result of wnd->Close(), we've
// already taken care of the close operations, so
// suppress further processing