Add support for wxAuiNotebook to XRC.
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
This commit is contained in:
36
include/wx/xrc/xh_auinotbk.h
Normal file
36
include/wx/xrc/xh_auinotbk.h
Normal file
@@ -0,0 +1,36 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// 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_
|
Reference in New Issue
Block a user