]>
Commit | Line | Data |
---|---|---|
95a46303 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/xrc/xh_bmpcbox.h | |
3 | // Purpose: XML resource handler for wxBitmapComboBox | |
4 | // Author: Jaakko Salli | |
5 | // Created: Sep-10-2006 | |
95a46303 RR |
6 | // Copyright: (c) 2006 Jaakko Salli |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_XH_BMPCBOX_H_ | |
11 | #define _WX_XH_BMPCBOX_H_ | |
12 | ||
13 | #include "wx/xrc/xmlres.h" | |
14 | ||
dd47af27 | 15 | #if wxUSE_XRC && wxUSE_BITMAPCOMBOBOX |
95a46303 | 16 | |
b5dbe15d | 17 | class WXDLLIMPEXP_FWD_ADV wxBitmapComboBox; |
95a46303 RR |
18 | |
19 | class WXDLLIMPEXP_XRC wxBitmapComboBoxXmlHandler : public wxXmlResourceHandler | |
20 | { | |
21 | DECLARE_DYNAMIC_CLASS(wxBitmapComboBoxXmlHandler) | |
dd47af27 | 22 | |
95a46303 RR |
23 | public: |
24 | wxBitmapComboBoxXmlHandler(); | |
25 | virtual wxObject *DoCreateResource(); | |
26 | virtual bool CanHandle(wxXmlNode *node); | |
dd47af27 | 27 | |
95a46303 RR |
28 | private: |
29 | wxBitmapComboBox* m_combobox; | |
30 | bool m_isInside; | |
31 | }; | |
32 | ||
dd47af27 | 33 | #endif // wxUSE_XRC && wxUSE_BITMAPCOMBOBOX |
95a46303 RR |
34 | |
35 | #endif // _WX_XH_BMPCBOX_H_ |