]>
Commit | Line | Data |
---|---|---|
56d2f750 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_slidr.h | |
3 | // Purpose: XML resource handler for wxSlider | |
4 | // Author: Bob Mitchell | |
5 | // Created: 2000/03/21 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Bob Mitchell and Verant Interactive | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_XH_SLIDR_H_ | |
12 | #define _WX_XH_SLIDR_H_ | |
13 | ||
999d9a9f | 14 | #include "wx/xrc/xmlres.h" |
56d2f750 VS |
15 | #include "wx/defs.h" |
16 | ||
17 | #if wxUSE_SLIDER | |
18 | ||
30dc3455 | 19 | class WXDLLIMPEXP_XRC wxSliderXmlHandler : public wxXmlResourceHandler |
56d2f750 | 20 | { |
f80ea77b | 21 | DECLARE_DYNAMIC_CLASS(wxSliderXmlHandler) |
ea89ec17 | 22 | enum |
56d2f750 VS |
23 | { |
24 | wxSL_DEFAULT_VALUE = 0, | |
25 | wxSL_DEFAULT_MIN = 0, | |
26 | wxSL_DEFAULT_MAX = 100 | |
27 | }; | |
28 | ||
eb8671f2 VS |
29 | public: |
30 | wxSliderXmlHandler(); | |
31 | virtual wxObject *DoCreateResource(); | |
32 | virtual bool CanHandle(wxXmlNode *node); | |
56d2f750 VS |
33 | }; |
34 | ||
35 | #endif | |
36 | ||
37 | #endif // _WX_XH_SLIDER_H_ |