00b4e7c946
Add wxAuiNotebookXmlHandler to "aui" library, now that we can do it without adding a dependency of it on "xrc" one. Closes #10889. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72728 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
37 lines
964 B
C++
37 lines
964 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/xrc/xh_auinotbk.h
|
|
// Purpose: XML resource handler for wxAuiNotebook
|
|
// Author: Steve Lamerton
|
|
// Created: 2009-06-12
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2009 Steve Lamerton
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_XRC_XH_AUINOTEBOOK_H_
|
|
#define _WX_XRC_XH_AUINOTEBOOK_H_
|
|
|
|
#include "wx/xrc/xmlres.h"
|
|
|
|
class WXDLLIMPEXP_FWD_AUI wxAuiNotebook;
|
|
|
|
#if wxUSE_XRC && wxUSE_AUI
|
|
|
|
class WXDLLIMPEXP_AUI wxAuiNotebookXmlHandler : public wxXmlResourceHandler
|
|
{
|
|
public:
|
|
wxAuiNotebookXmlHandler();
|
|
virtual wxObject *DoCreateResource();
|
|
virtual bool CanHandle(wxXmlNode *node);
|
|
|
|
private:
|
|
bool m_isInside;
|
|
wxAuiNotebook *m_notebook;
|
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxAuiNotebookXmlHandler);
|
|
};
|
|
|
|
#endif // wxUSE_XRC && wxUSE_AUI
|
|
|
|
#endif // _WX_XRC_XH_AUINOTEBOOK_H_
|