]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: xh_slidr.cpp | |
3 | // Purpose: XRC resource for wxSlider | |
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 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
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 | ||
22 | #if wxUSE_XRC && wxUSE_SLIDER | |
23 | ||
24 | #include "wx/xrc/xh_slidr.h" | |
25 | #include "wx/slider.h" | |
26 | ||
27 | IMPLEMENT_DYNAMIC_CLASS(wxSliderXmlHandler, wxXmlResourceHandler) | |
28 | ||
29 | wxSliderXmlHandler::wxSliderXmlHandler() | |
30 | : wxXmlResourceHandler() | |
31 | { | |
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); | |
42 | XRC_ADD_STYLE(wxSL_INVERSE); | |
43 | AddWindowStyles(); | |
44 | } | |
45 | ||
46 | wxObject *wxSliderXmlHandler::DoCreateResource() | |
47 | { | |
48 | XRC_MAKE_INSTANCE(control, wxSlider) | |
49 | ||
50 | control->Create(m_parentAsWindow, | |
51 | GetID(), | |
52 | GetLong(wxT("value"), wxSL_DEFAULT_VALUE), | |
53 | GetLong(wxT("min"), wxSL_DEFAULT_MIN), | |
54 | GetLong(wxT("max"), wxSL_DEFAULT_MAX), | |
55 | GetPosition(), GetSize(), | |
56 | GetStyle(), | |
57 | wxDefaultValidator, | |
58 | GetName()); | |
59 | ||
60 | if( HasParam(wxT("tickfreq"))) | |
61 | { | |
62 | control->SetTickFreq(GetLong(wxT("tickfreq")), 0); | |
63 | } | |
64 | if( HasParam(wxT("pagesize"))) | |
65 | { | |
66 | control->SetPageSize(GetLong(wxT("pagesize"))); | |
67 | } | |
68 | if( HasParam(wxT("linesize"))) | |
69 | { | |
70 | control->SetLineSize(GetLong(wxT("linesize"))); | |
71 | } | |
72 | if( HasParam(wxT("thumb"))) | |
73 | { | |
74 | control->SetThumbLength(GetLong(wxT("thumb"))); | |
75 | } | |
76 | if( HasParam(wxT("tick"))) | |
77 | { | |
78 | control->SetTick(GetLong(wxT("tick"))); | |
79 | } | |
80 | if( HasParam(wxT("selmin")) && HasParam(wxT("selmax"))) | |
81 | { | |
82 | control->SetSelection(GetLong(wxT("selmin")), GetLong(wxT("selmax"))); | |
83 | } | |
84 | ||
85 | SetupWindow(control); | |
86 | ||
87 | return control; | |
88 | } | |
89 | ||
90 | bool wxSliderXmlHandler::CanHandle(wxXmlNode *node) | |
91 | { | |
92 | return IsOfClass(node, wxT("wxSlider")); | |
93 | } | |
94 | ||
95 | #endif // wxUSE_XRC && wxUSE_SLIDER |