]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/xrc/xh_gauge.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC resource for wxGauge
4 // Author: Bob Mitchell
7 // Copyright: (c) 2000 Bob Mitchell and Verant Interactive
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "xh_gauge.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
22 #include "wx/xrc/xh_gauge.h"
27 wxGaugeXmlHandler::wxGaugeXmlHandler()
28 : wxXmlResourceHandler()
30 ADD_STYLE( wxGA_HORIZONTAL
);
31 ADD_STYLE( wxGA_VERTICAL
);
32 ADD_STYLE( wxGA_PROGRESSBAR
);
33 ADD_STYLE( wxGA_SMOOTH
); // windows only
37 wxObject
*wxGaugeXmlHandler::DoCreateResource()
39 wxGauge
*control
= wxStaticCast(m_instance
, wxGauge
);
42 control
= new wxGauge
;
44 control
->Create(m_parentAsWindow
,
46 GetLong( wxT("range"), wxGAUGE_DEFAULT_RANGE
),
47 GetPosition(), GetSize(),
52 if( HasParam( wxT("value") ))
54 control
->SetValue( GetLong( wxT("value") ));
56 if( HasParam( wxT("shadow") ))
58 control
->SetShadowWidth( GetDimension( wxT("shadow") ));
60 if( HasParam( wxT("bezel") ))
62 control
->SetBezelFace( GetDimension( wxT("bezel") ));
72 bool wxGaugeXmlHandler::CanHandle(wxXmlNode
*node
)
74 return IsOfClass(node
, wxT("wxGauge"));