]>
Commit | Line | Data |
---|---|---|
0e3c83a7 | 1 | ///////////////////////////////////////////////////////////////////////////// |
f5e3d946 | 2 | // Name: wx/xh_grid.h |
0e3c83a7 JS |
3 | // Purpose: XML resource handler for the grid control |
4 | // Author: Agron Selimaj | |
5 | // Created: 2005/08/11 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2005 Agron Selimaj, Freepour Controls Inc. | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_XH_GRD_H_ | |
12 | #define _WX_XH_GRD_H_ | |
13 | ||
0e3c83a7 JS |
14 | #include "wx/xrc/xmlres.h" |
15 | ||
f5e3d946 | 16 | #if wxUSE_XRC && wxUSE_GRID |
0e3c83a7 JS |
17 | |
18 | class WXDLLIMPEXP_XRC wxGridXmlHandler : public wxXmlResourceHandler | |
19 | { | |
0e3c83a7 | 20 | public: |
f5e3d946 VZ |
21 | wxGridXmlHandler(); |
22 | ||
0e3c83a7 JS |
23 | virtual wxObject *DoCreateResource(); |
24 | virtual bool CanHandle(wxXmlNode *node); | |
0e3c83a7 | 25 | |
f5e3d946 VZ |
26 | private: |
27 | DECLARE_DYNAMIC_CLASS(wxGridXmlHandler) | |
28 | }; | |
0e3c83a7 | 29 | |
f5e3d946 | 30 | #endif // wxUSE_XRC && wxUSE_GRID |
0e3c83a7 JS |
31 | |
32 | #endif // _WX_XH_GRD_H_ |