]>
Commit | Line | Data |
---|---|---|
78d14f80 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/xrc/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 | |
34 | AddWindowStyles(); | |
35 | } | |
36 | ||
37 | wxObject *wxGaugeXmlHandler::DoCreateResource() | |
38 | { | |
39 | wxGauge *control = new wxGauge(m_parentAsWindow, | |
40 | GetID(), | |
41 | GetLong( wxT("range"), wxGAUGE_DEFAULT_RANGE), | |
42 | GetPosition(), GetSize(), | |
43 | GetStyle(), | |
44 | wxDefaultValidator, | |
45 | GetName() | |
46 | ); | |
47 | ||
48 | if( HasParam( wxT("value") )) | |
49 | { | |
50 | control->SetValue( GetLong( wxT("value") )); | |
51 | } | |
52 | if( HasParam( wxT("shadow") )) | |
53 | { | |
54 | control->SetShadowWidth( GetDimension( wxT("shadow") )); | |
55 | } | |
56 | if( HasParam( wxT("bezel") )) | |
57 | { | |
58 | control->SetBezelFace( GetDimension( wxT("bezel") )); | |
59 | } | |
60 | ||
61 | SetupWindow(control); | |
62 | ||
63 | return control; | |
64 | } | |
65 | ||
66 | ||
67 | ||
68 | bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node) | |
69 | { | |
70 | return IsOfClass(node, wxT("wxGauge")); | |
71 | } | |
72 | ||
73 | ||
74 | #endif // wxUSE_GAUGE |