]>
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 | |
0e3c83a7 JS |
6 | // Copyright: (c) 2005 Agron Selimaj, Freepour Controls Inc. |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_XH_GRD_H_ | |
11 | #define _WX_XH_GRD_H_ | |
12 | ||
0e3c83a7 JS |
13 | #include "wx/xrc/xmlres.h" |
14 | ||
f5e3d946 | 15 | #if wxUSE_XRC && wxUSE_GRID |
0e3c83a7 JS |
16 | |
17 | class WXDLLIMPEXP_XRC wxGridXmlHandler : public wxXmlResourceHandler | |
18 | { | |
dd47af27 VZ |
19 | DECLARE_DYNAMIC_CLASS(wxGridXmlHandler) |
20 | ||
0e3c83a7 | 21 | public: |
f5e3d946 VZ |
22 | wxGridXmlHandler(); |
23 | ||
0e3c83a7 JS |
24 | virtual wxObject *DoCreateResource(); |
25 | virtual bool CanHandle(wxXmlNode *node); | |
f5e3d946 | 26 | }; |
0e3c83a7 | 27 | |
f5e3d946 | 28 | #endif // wxUSE_XRC && wxUSE_GRID |
0e3c83a7 JS |
29 | |
30 | #endif // _WX_XH_GRD_H_ |