]>
Commit | Line | Data |
---|---|---|
d33a1e8b VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_bmp.h | |
3 | // Purpose: XML resource handler for wxBitmap and wxIcon | |
4 | // Author: Vaclav Slavik | |
5 | // Created: 2000/09/00 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Vaclav Slavik | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_XH_BMP_H_ | |
12 | #define _WX_XH_BMP_H_ | |
13 | ||
ab7ce33c | 14 | #if defined(__GNUG__) && !defined(__APPLE__) |
d33a1e8b VS |
15 | #pragma interface "xh_bmp.h" |
16 | #endif | |
17 | ||
999d9a9f | 18 | #include "wx/xrc/xmlres.h" |
d33a1e8b VS |
19 | |
20 | ||
30dc3455 | 21 | class WXDLLIMPEXP_XRC wxBitmapXmlHandler : public wxXmlResourceHandler |
d33a1e8b | 22 | { |
854e189f | 23 | DECLARE_DYNAMIC_CLASS(wxBitmapXmlHandler) |
eb8671f2 VS |
24 | public: |
25 | wxBitmapXmlHandler(); | |
26 | virtual wxObject *DoCreateResource(); | |
27 | virtual bool CanHandle(wxXmlNode *node); | |
d33a1e8b VS |
28 | }; |
29 | ||
30dc3455 | 30 | class WXDLLIMPEXP_XRC wxIconXmlHandler : public wxXmlResourceHandler |
d33a1e8b | 31 | { |
854e189f | 32 | DECLARE_DYNAMIC_CLASS(wxIconXmlHandler) |
eb8671f2 VS |
33 | public: |
34 | wxIconXmlHandler(); | |
35 | virtual wxObject *DoCreateResource(); | |
36 | virtual bool CanHandle(wxXmlNode *node); | |
d33a1e8b VS |
37 | }; |
38 | ||
39 | ||
40 | #endif // _WX_XH_BMP_H_ |