accessor functions for wxAuiMDIParentFrame
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43190 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -114,6 +114,30 @@ bool wxAuiMDIParentFrame::Create(wxWindow *parent,
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
void wxAuiMDIParentFrame::SetArtProvider(wxAuiTabArt* provider)
|
||||
{
|
||||
if (m_pClientWindow)
|
||||
{
|
||||
m_pClientWindow->SetArtProvider(provider);
|
||||
}
|
||||
}
|
||||
|
||||
wxAuiTabArt* wxAuiMDIParentFrame::GetArtProvider()
|
||||
{
|
||||
if (!m_pClientWindow)
|
||||
return NULL;
|
||||
|
||||
return m_pClientWindow->GetArtProvider();
|
||||
}
|
||||
|
||||
wxAuiNotebook* wxAuiMDIParentFrame::GetNotebook() const
|
||||
{
|
||||
return static_cast<wxAuiNotebook*>(m_pClientWindow);
|
||||
}
|
||||
|
||||
|
||||
|
||||
#if wxUSE_MENUS
|
||||
void wxAuiMDIParentFrame::SetWindowMenu(wxMenu* pMenu)
|
||||
{
|
||||
|
Reference in New Issue
Block a user