]> git.saurik.com Git - wxWidgets.git/blame - contrib/src/xml/xh_gauge.cpp
documented EVT_LIST_ITEM_RIGHT_CLICK
[wxWidgets.git] / contrib / src / xml / xh_gauge.cpp
CommitLineData
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
27wxGaugeXmlHandler::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
37wxObject *wxGaugeXmlHandler::DoCreateResource()
38{
39 wxGauge *control = new wxGauge(m_ParentAsWindow,
40 GetID(),
41 GetLong( _T("range"), wxGAUGE_DEFAULT_RANGE),
42 GetPosition(), GetSize(),
43 GetStyle(),
44 wxDefaultValidator,
45 GetName()
46 );
47
48 if( HasParam( _T("value") ))
49 {
50 control->SetValue( GetLong( _T("value") ));
51 }
52 if( HasParam( _T("shadow") ))
53 {
bebb14d5 54 control->SetShadowWidth( GetDimension( _T("shadow") ));
56d2f750
VS
55 }
56 if( HasParam( _T("bezel") ))
57 {
bebb14d5 58 control->SetBezelFace( GetDimension( _T("bezel") ));
56d2f750
VS
59 }
60
61 SetupWindow(control);
62
63 return control;
64}
65
66
67
68bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node)
69{
70 return node->GetName() == _T("gauge");
71}
72
73
74#endif // wxUSE_GAUGE