]> git.saurik.com Git - wxWidgets.git/blame - contrib/include/wx/xrc/xh_notbk.h
Changed WXDLLEXPORT --> GIZMOSDLLEXPORT (and added it where is wasn't
[wxWidgets.git] / contrib / include / wx / xrc / xh_notbk.h
CommitLineData
56d2f750
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xh_notbk.h
3// Purpose: XML resource handler for wxNotebook
4// Author: Vaclav Slavik
5// RCS-ID: $Id$
6// Copyright: (c) 2000 Vaclav Slavik
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_XH_NOTBK_H_
11#define _WX_XH_NOTBK_H_
12
13#ifdef __GNUG__
14#pragma interface "xh_notbk.h"
15#endif
16
999d9a9f 17#include "wx/xrc/xmlres.h"
56d2f750
VS
18
19#if wxUSE_NOTEBOOK
20
1ad83f6b 21class WXDLLEXPORT wxNotebook;
56d2f750 22
ea89ec17 23class WXXMLDLLEXPORT wxNotebookXmlHandler : public wxXmlResourceHandler
56d2f750 24{
eb8671f2
VS
25public:
26 wxNotebookXmlHandler();
27 virtual wxObject *DoCreateResource();
28 virtual bool CanHandle(wxXmlNode *node);
29
30private:
31 bool m_isInside;
32 wxNotebook *m_notebook;
56d2f750
VS
33};
34
35#endif
36
37#endif // _WX_XH_NOTBK_H_