]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_gauge.cpp | |
b5d6954b | 3 | // Purpose: XRC resource for wxGauge |
78d14f80 VS |
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 | ///////////////////////////////////////////////////////////////////////////// | |
f80ea77b | 10 | |
c575e45a | 11 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
78d14f80 VS |
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 | ||
621be1ec | 22 | #if wxUSE_XRC && wxUSE_GAUGE |
a1e4ec87 | 23 | |
78d14f80 VS |
24 | #include "wx/xrc/xh_gauge.h" |
25 | #include "wx/gauge.h" | |
26 | ||
854e189f VS |
27 | IMPLEMENT_DYNAMIC_CLASS(wxGaugeXmlHandler, wxXmlResourceHandler) |
28 | ||
f80ea77b WS |
29 | wxGaugeXmlHandler::wxGaugeXmlHandler() |
30 | : wxXmlResourceHandler() | |
78d14f80 | 31 | { |
544fee32 VS |
32 | XRC_ADD_STYLE(wxGA_HORIZONTAL); |
33 | XRC_ADD_STYLE(wxGA_VERTICAL); | |
34 | XRC_ADD_STYLE(wxGA_PROGRESSBAR); | |
35 | XRC_ADD_STYLE(wxGA_SMOOTH); // windows only | |
78d14f80 VS |
36 | AddWindowStyles(); |
37 | } | |
38 | ||
39 | wxObject *wxGaugeXmlHandler::DoCreateResource() | |
f80ea77b | 40 | { |
544fee32 | 41 | XRC_MAKE_INSTANCE(control, wxGauge) |
f2588180 VS |
42 | |
43 | control->Create(m_parentAsWindow, | |
44 | GetID(), | |
f80ea77b | 45 | GetLong(wxT("range"), wxGAUGE_DEFAULT_RANGE), |
f2588180 VS |
46 | GetPosition(), GetSize(), |
47 | GetStyle(), | |
48 | wxDefaultValidator, | |
49 | GetName()); | |
78d14f80 | 50 | |
544fee32 | 51 | if( HasParam(wxT("value"))) |
78d14f80 | 52 | { |
544fee32 | 53 | control->SetValue(GetLong(wxT("value"))); |
78d14f80 | 54 | } |
544fee32 | 55 | if( HasParam(wxT("shadow"))) |
78d14f80 | 56 | { |
544fee32 | 57 | control->SetShadowWidth(GetDimension(wxT("shadow"))); |
78d14f80 | 58 | } |
544fee32 | 59 | if( HasParam(wxT("bezel"))) |
78d14f80 | 60 | { |
544fee32 | 61 | control->SetBezelFace(GetDimension(wxT("bezel"))); |
78d14f80 VS |
62 | } |
63 | ||
64 | SetupWindow(control); | |
544fee32 | 65 | |
78d14f80 VS |
66 | return control; |
67 | } | |
68 | ||
78d14f80 VS |
69 | bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node) |
70 | { | |
71 | return IsOfClass(node, wxT("wxGauge")); | |
72 | } | |
73 | ||
621be1ec | 74 | #endif // wxUSE_XRC && wxUSE_GAUGE |