]>
Commit | Line | Data |
---|---|---|
56d2f750 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_gauge.cpp | |
3 | // Purpose: XML resource 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 | #ifdef __GNUG__ | |
12 | #pragma implementation "xh_gauge.h" | |
13 | #endif | |
14 | ||
15 | // For compilers that support precompilation, includes "wx.h". | |
16 | #include "wx/wxprec.h" | |
17 | ||
18 | #ifdef __BORLANDC__ | |
19 | #pragma hdrstop | |
20 | #endif | |
21 | ||
22 | #include "wx/xml/xh_gauge.h" | |
23 | #include "wx/gauge.h" | |
24 | ||
25 | #if wxUSE_GAUGE | |
26 | ||
27 | wxGaugeXmlHandler::wxGaugeXmlHandler() | |
28 | : wxXmlResourceHandler() | |
29 | { | |
30 | ADD_STYLE( wxGA_HORIZONTAL ); | |
31 | ADD_STYLE( wxGA_VERTICAL ); | |
32 | ADD_STYLE( wxGA_PROGRESSBAR ); | |
33 | ADD_STYLE( wxGA_SMOOTH ); // windows only | |
09dc1241 | 34 | AddWindowStyles(); |
56d2f750 VS |
35 | } |
36 | ||
37 | wxObject *wxGaugeXmlHandler::DoCreateResource() | |
38 | { | |
ab708d5d | 39 | wxGauge *control = new wxGauge(m_parentAsWindow, |
56d2f750 | 40 | GetID(), |
a559d708 | 41 | GetLong( wxT("range"), wxGAUGE_DEFAULT_RANGE), |
56d2f750 VS |
42 | GetPosition(), GetSize(), |
43 | GetStyle(), | |
44 | wxDefaultValidator, | |
45 | GetName() | |
46 | ); | |
47 | ||
a559d708 | 48 | if( HasParam( wxT("value") )) |
56d2f750 | 49 | { |
a559d708 | 50 | control->SetValue( GetLong( wxT("value") )); |
56d2f750 | 51 | } |
a559d708 | 52 | if( HasParam( wxT("shadow") )) |
56d2f750 | 53 | { |
a559d708 | 54 | control->SetShadowWidth( GetDimension( wxT("shadow") )); |
56d2f750 | 55 | } |
a559d708 | 56 | if( HasParam( wxT("bezel") )) |
56d2f750 | 57 | { |
a559d708 | 58 | control->SetBezelFace( GetDimension( wxT("bezel") )); |
56d2f750 VS |
59 | } |
60 | ||
61 | SetupWindow(control); | |
62 | ||
63 | return control; | |
64 | } | |
65 | ||
66 | ||
67 | ||
68 | bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node) | |
69 | { | |
a559d708 | 70 | return IsOfClass(node, wxT("wxGauge")); |
56d2f750 VS |
71 | } |
72 | ||
73 | ||
74 | #endif // wxUSE_GAUGE |