]>
git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_gauge.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/xrc/xh_gauge.cpp
3 // Purpose: XRC resource for wxGauge
4 // Author: Bob Mitchell
7 // Copyright: (c) 2000 Bob Mitchell and Verant Interactive
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
18 #if wxUSE_XRC && wxUSE_GAUGE
20 #include "wx/xrc/xh_gauge.h"
26 static const long DEFAULT_RANGE
= 100;
28 IMPLEMENT_DYNAMIC_CLASS(wxGaugeXmlHandler
, wxXmlResourceHandler
)
30 wxGaugeXmlHandler::wxGaugeXmlHandler()
31 :wxXmlResourceHandler()
33 XRC_ADD_STYLE(wxGA_HORIZONTAL
);
34 XRC_ADD_STYLE(wxGA_VERTICAL
);
35 #if WXWIN_COMPATIBILITY_2_6
36 XRC_ADD_STYLE(wxGA_PROGRESSBAR
);
37 #endif // WXWIN_COMPATIBILITY_2_6
38 XRC_ADD_STYLE(wxGA_SMOOTH
); // windows only
42 wxObject
*wxGaugeXmlHandler::DoCreateResource()
44 XRC_MAKE_INSTANCE(control
, wxGauge
)
46 control
->Create(m_parentAsWindow
,
48 GetLong(wxT("range"), DEFAULT_RANGE
),
49 GetPosition(), GetSize(),
54 if( HasParam(wxT("value")))
56 control
->SetValue(GetLong(wxT("value")));
58 if( HasParam(wxT("shadow")))
60 control
->SetShadowWidth(GetDimension(wxT("shadow")));
62 if( HasParam(wxT("bezel")))
64 control
->SetBezelFace(GetDimension(wxT("bezel")));
72 bool wxGaugeXmlHandler::CanHandle(wxXmlNode
*node
)
74 return IsOfClass(node
, wxT("wxGauge"));
77 #endif // wxUSE_XRC && wxUSE_GAUGE