]> git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_gauge.cpp
uninitialized variable warning fixed (modified patch 1434065)
[wxWidgets.git] / src / xrc / xh_gauge.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xh_gauge.cpp
3 // Purpose: XRC 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 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
13
14 #ifdef __BORLANDC__
15 #pragma hdrstop
16 #endif
17
18 #if wxUSE_XRC && wxUSE_GAUGE
19
20 #include "wx/xrc/xh_gauge.h"
21 #include "wx/gauge.h"
22
23 IMPLEMENT_DYNAMIC_CLASS(wxGaugeXmlHandler, wxXmlResourceHandler)
24
25 wxGaugeXmlHandler::wxGaugeXmlHandler()
26 : wxXmlResourceHandler()
27 {
28 XRC_ADD_STYLE(wxGA_HORIZONTAL);
29 XRC_ADD_STYLE(wxGA_VERTICAL);
30 XRC_ADD_STYLE(wxGA_PROGRESSBAR);
31 XRC_ADD_STYLE(wxGA_SMOOTH); // windows only
32 AddWindowStyles();
33 }
34
35 wxObject *wxGaugeXmlHandler::DoCreateResource()
36 {
37 XRC_MAKE_INSTANCE(control, wxGauge)
38
39 control->Create(m_parentAsWindow,
40 GetID(),
41 GetLong(wxT("range"), wxGAUGE_DEFAULT_RANGE),
42 GetPosition(), GetSize(),
43 GetStyle(),
44 wxDefaultValidator,
45 GetName());
46
47 if( HasParam(wxT("value")))
48 {
49 control->SetValue(GetLong(wxT("value")));
50 }
51 if( HasParam(wxT("shadow")))
52 {
53 control->SetShadowWidth(GetDimension(wxT("shadow")));
54 }
55 if( HasParam(wxT("bezel")))
56 {
57 control->SetBezelFace(GetDimension(wxT("bezel")));
58 }
59
60 SetupWindow(control);
61
62 return control;
63 }
64
65 bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node)
66 {
67 return IsOfClass(node, wxT("wxGauge"));
68 }
69
70 #endif // wxUSE_XRC && wxUSE_GAUGE