]>
Commit | Line | Data |
---|---|---|
995c1788 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_gdctl.h | |
3 | // Purpose: XML resource handler for wxGenericDirCtrl | |
4 | // Author: Markus Greither | |
5 | // Created: 2002/01/20 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2002 Markus Greither | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_XH_GDCTL_H_ | |
12 | #define _WX_XH_GDCTL_H_ | |
13 | ||
ab7ce33c | 14 | #if defined(__GNUG__) && !defined(__APPLE__) |
995c1788 VS |
15 | #pragma interface "xh_gdctl.h" |
16 | #endif | |
17 | ||
18 | #include "wx/xrc/xmlres.h" | |
19 | ||
20 | #if wxUSE_DIRDLG | |
21 | ||
30dc3455 | 22 | class WXDLLIMPEXP_XRC wxGenericDirCtrlXmlHandler : public wxXmlResourceHandler |
995c1788 | 23 | { |
854e189f | 24 | DECLARE_DYNAMIC_CLASS(wxGenericDirCtrlXmlHandler) |
995c1788 VS |
25 | public: |
26 | wxGenericDirCtrlXmlHandler(); | |
27 | virtual wxObject *DoCreateResource(); | |
28 | virtual bool CanHandle(wxXmlNode *node); | |
29 | }; | |
30 | ||
31 | #endif | |
32 | ||
33 | #endif // _WX_XH_GDCTL_H_ |