]>
Commit | Line | Data |
---|---|---|
0e3c83a7 | 1 | ///////////////////////////////////////////////////////////////////////////// |
e8a793f0 | 2 | // Name: wx/xrc/xh_grid.h |
dd47af27 | 3 | // Purpose: XML resource handler for wxGrid |
0e3c83a7 JS |
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 | { | |
dd47af27 VZ |
20 | DECLARE_DYNAMIC_CLASS(wxGridXmlHandler) |
21 | ||
0e3c83a7 | 22 | public: |
f5e3d946 VZ |
23 | wxGridXmlHandler(); |
24 | ||
0e3c83a7 JS |
25 | virtual wxObject *DoCreateResource(); |
26 | virtual bool CanHandle(wxXmlNode *node); | |
f5e3d946 | 27 | }; |
0e3c83a7 | 28 | |
f5e3d946 | 29 | #endif // wxUSE_XRC && wxUSE_GRID |
0e3c83a7 JS |
30 | |
31 | #endif // _WX_XH_GRD_H_ |