1549aafdc9
Add new wxBookCtrlXmlHandlerBase and inherit the XRC handlers of all the wxBookCtrlBase-derived classes except for wxTreebookXmlHandler, which will require special handling, from it to avoid duplicating the same code in all of them. This commit is best viewed with --color-moved git option.
34 lines
917 B
C++
34 lines
917 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/xrc/xh_choicbk.h
|
|
// Purpose: XML resource handler for wxChoicebook
|
|
// Author: Vaclav Slavik
|
|
// Copyright: (c) 2000 Vaclav Slavik
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_XH_CHOICEBK_H_
|
|
#define _WX_XH_CHOICEBK_H_
|
|
|
|
#include "wx/xrc/xh_bookctrlbase.h"
|
|
|
|
#if wxUSE_XRC && wxUSE_CHOICEBOOK
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxChoicebook;
|
|
|
|
class WXDLLIMPEXP_XRC wxChoicebookXmlHandler : public wxBookCtrlXmlHandlerBase
|
|
{
|
|
wxDECLARE_DYNAMIC_CLASS(wxChoicebookXmlHandler);
|
|
|
|
public:
|
|
wxChoicebookXmlHandler();
|
|
virtual wxObject *DoCreateResource() wxOVERRIDE;
|
|
virtual bool CanHandle(wxXmlNode *node) wxOVERRIDE;
|
|
|
|
private:
|
|
wxChoicebook *m_choicebook;
|
|
};
|
|
|
|
#endif // wxUSE_XRC && wxUSE_CHOICEBOOK
|
|
|
|
#endif // _WX_XH_CHOICEBK_H_
|