]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: xh_slidr.cpp | |
b5d6954b | 3 | // Purpose: XRC resource for wxSlider |
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_slidr.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_SLIDER |
a1e4ec87 | 23 | |
78d14f80 VS |
24 | #include "wx/xrc/xh_slidr.h" |
25 | #include "wx/slider.h" | |
26 | ||
854e189f VS |
27 | IMPLEMENT_DYNAMIC_CLASS(wxSliderXmlHandler, wxXmlResourceHandler) |
28 | ||
f80ea77b WS |
29 | wxSliderXmlHandler::wxSliderXmlHandler() |
30 | : wxXmlResourceHandler() | |
78d14f80 | 31 | { |
544fee32 VS |
32 | XRC_ADD_STYLE(wxSL_HORIZONTAL); |
33 | XRC_ADD_STYLE(wxSL_VERTICAL); | |
34 | XRC_ADD_STYLE(wxSL_AUTOTICKS); | |
35 | XRC_ADD_STYLE(wxSL_LABELS); | |
36 | XRC_ADD_STYLE(wxSL_LEFT); | |
37 | XRC_ADD_STYLE(wxSL_TOP); | |
38 | XRC_ADD_STYLE(wxSL_RIGHT); | |
39 | XRC_ADD_STYLE(wxSL_BOTTOM); | |
40 | XRC_ADD_STYLE(wxSL_BOTH); | |
41 | XRC_ADD_STYLE(wxSL_SELRANGE); | |
12d85b0e | 42 | XRC_ADD_STYLE(wxSL_INVERSE); |
78d14f80 VS |
43 | AddWindowStyles(); |
44 | } | |
45 | ||
46 | wxObject *wxSliderXmlHandler::DoCreateResource() | |
f80ea77b | 47 | { |
544fee32 | 48 | XRC_MAKE_INSTANCE(control, wxSlider) |
f2588180 VS |
49 | |
50 | control->Create(m_parentAsWindow, | |
51 | GetID(), | |
f80ea77b | 52 | GetLong(wxT("value"), wxSL_DEFAULT_VALUE), |
f2588180 VS |
53 | GetLong(wxT("min"), wxSL_DEFAULT_MIN), |
54 | GetLong(wxT("max"), wxSL_DEFAULT_MAX), | |
55 | GetPosition(), GetSize(), | |
56 | GetStyle(), | |
57 | wxDefaultValidator, | |
58 | GetName()); | |
78d14f80 | 59 | |
544fee32 | 60 | if( HasParam(wxT("tickfreq"))) |
78d14f80 | 61 | { |
544fee32 | 62 | control->SetTickFreq(GetLong(wxT("tickfreq")), 0); |
78d14f80 | 63 | } |
544fee32 | 64 | if( HasParam(wxT("pagesize"))) |
78d14f80 | 65 | { |
544fee32 | 66 | control->SetPageSize(GetLong(wxT("pagesize"))); |
78d14f80 | 67 | } |
544fee32 | 68 | if( HasParam(wxT("linesize"))) |
78d14f80 | 69 | { |
544fee32 | 70 | control->SetLineSize(GetLong(wxT("linesize"))); |
78d14f80 | 71 | } |
544fee32 | 72 | if( HasParam(wxT("thumb"))) |
78d14f80 | 73 | { |
544fee32 | 74 | control->SetThumbLength(GetLong(wxT("thumb"))); |
78d14f80 | 75 | } |
544fee32 | 76 | if( HasParam(wxT("tick"))) |
78d14f80 | 77 | { |
544fee32 | 78 | control->SetTick(GetLong(wxT("tick"))); |
78d14f80 | 79 | } |
544fee32 | 80 | if( HasParam(wxT("selmin")) && HasParam(wxT("selmax"))) |
78d14f80 | 81 | { |
544fee32 | 82 | control->SetSelection(GetLong(wxT("selmin")), GetLong(wxT("selmax"))); |
78d14f80 VS |
83 | } |
84 | ||
85 | SetupWindow(control); | |
f80ea77b | 86 | |
78d14f80 VS |
87 | return control; |
88 | } | |
89 | ||
78d14f80 VS |
90 | bool wxSliderXmlHandler::CanHandle(wxXmlNode *node) |
91 | { | |
92 | return IsOfClass(node, wxT("wxSlider")); | |
93 | } | |
94 | ||
621be1ec | 95 | #endif // wxUSE_XRC && wxUSE_SLIDER |