Changes to the XRC library:
[wxWidgets.git] / src / xrc / xh_slidr.cpp
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 #ifdef __GNUG__
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 #include "wx/xrc/xh_slidr.h"
23 #include "wx/slider.h"
24
25 #if wxUSE_SLIDER
26
27 wxSliderXmlHandler::wxSliderXmlHandler()
28 : wxXmlResourceHandler()
29 {
30 ADD_STYLE( wxSL_HORIZONTAL );
31 ADD_STYLE( wxSL_VERTICAL );
32 ADD_STYLE( wxSL_AUTOTICKS );
33 ADD_STYLE( wxSL_LABELS );
34 ADD_STYLE( wxSL_LEFT );
35 ADD_STYLE( wxSL_TOP );
36 ADD_STYLE( wxSL_RIGHT );
37 ADD_STYLE( wxSL_BOTTOM );
38 ADD_STYLE( wxSL_BOTH );
39 ADD_STYLE( wxSL_SELRANGE );
40 AddWindowStyles();
41 }
42
43 wxObject *wxSliderXmlHandler::DoCreateResource()
44 {
45 wxSlider *control = wxStaticCast(m_instance, wxSlider);
46
47 if (!control)
48 control = new 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
91
92 bool wxSliderXmlHandler::CanHandle(wxXmlNode *node)
93 {
94 return IsOfClass(node, wxT("wxSlider"));
95 }
96
97
98 #endif