]>
Commit | Line | Data |
---|---|---|
56d2f750 | 1 | ///////////////////////////////////////////////////////////////////////////// |
e8a793f0 | 2 | // Name: wx/xrc/xh_gauge.h |
56d2f750 VS |
3 | // Purpose: XML resource handler for wxGauge |
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_GAUGE_H_ | |
12 | #define _WX_XH_GAUGE_H_ | |
13 | ||
56d2f750 VS |
14 | #include "wx/defs.h" |
15 | ||
16 | #if wxUSE_GAUGE | |
17 | ||
999d9a9f | 18 | #include "wx/xrc/xmlres.h" |
56d2f750 VS |
19 | |
20 | ||
30dc3455 | 21 | class WXDLLIMPEXP_XRC wxGaugeXmlHandler : public wxXmlResourceHandler |
56d2f750 | 22 | { |
f80ea77b | 23 | DECLARE_DYNAMIC_CLASS(wxGaugeXmlHandler) |
ea89ec17 | 24 | enum |
56d2f750 VS |
25 | { |
26 | wxGAUGE_DEFAULT_RANGE = 100 | |
27 | }; | |
28 | ||
eb8671f2 VS |
29 | public: |
30 | wxGaugeXmlHandler(); | |
31 | virtual wxObject *DoCreateResource(); | |
32 | virtual bool CanHandle(wxXmlNode *node); | |
56d2f750 VS |
33 | }; |
34 | ||
35 | #endif | |
36 | ||
37 | #endif // _WX_XH_GAUGE_H_ |