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.
36 lines
936 B
C++
36 lines
936 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/xrc/xh_toolbk.h
|
|
// Purpose: XML resource handler for wxToolbook
|
|
// Author: Andrea Zanellato
|
|
// Created: 2009/12/12
|
|
// Copyright: (c) 2010 wxWidgets development team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_XH_TOOLBK_H_
|
|
#define _WX_XH_TOOLBK_H_
|
|
|
|
#include "wx/xrc/xh_bookctrlbase.h"
|
|
|
|
#if wxUSE_XRC && wxUSE_TOOLBOOK
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxToolbook;
|
|
|
|
class WXDLLIMPEXP_XRC wxToolbookXmlHandler : public wxBookCtrlXmlHandlerBase
|
|
{
|
|
public:
|
|
wxToolbookXmlHandler();
|
|
|
|
virtual wxObject *DoCreateResource() wxOVERRIDE;
|
|
virtual bool CanHandle(wxXmlNode *node) wxOVERRIDE;
|
|
|
|
private:
|
|
wxToolbook *m_toolbook;
|
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxToolbookXmlHandler);
|
|
};
|
|
|
|
#endif // wxUSE_XRC && wxUSE_TOOLBOOK
|
|
|
|
#endif // _WX_XH_TOOLBK_H_
|