]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: xh_spin.cpp | |
3 | // Purpose: XRC resource for wxSpinButton | |
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_spin.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 | |
23 | ||
24 | #include "wx/xrc/xh_spin.h" | |
25 | ||
26 | #if wxUSE_SPINBTN | |
27 | ||
28 | #include "wx/spinbutt.h" | |
29 | ||
30 | IMPLEMENT_DYNAMIC_CLASS(wxSpinButtonXmlHandler, wxXmlResourceHandler) | |
31 | ||
32 | wxSpinButtonXmlHandler::wxSpinButtonXmlHandler() | |
33 | : wxXmlResourceHandler() | |
34 | { | |
35 | XRC_ADD_STYLE(wxSP_HORIZONTAL); | |
36 | XRC_ADD_STYLE(wxSP_VERTICAL); | |
37 | XRC_ADD_STYLE(wxSP_ARROW_KEYS); | |
38 | XRC_ADD_STYLE(wxSP_WRAP); | |
39 | AddWindowStyles(); | |
40 | } | |
41 | ||
42 | wxObject *wxSpinButtonXmlHandler::DoCreateResource() | |
43 | { | |
44 | XRC_MAKE_INSTANCE(control, wxSpinButton) | |
45 | ||
46 | control->Create(m_parentAsWindow, | |
47 | GetID(), | |
48 | GetPosition(), GetSize(), | |
49 | GetStyle(wxT("style"), wxSP_VERTICAL | wxSP_ARROW_KEYS), | |
50 | GetName()); | |
51 | ||
52 | control->SetValue(GetLong( wxT("value"), wxSP_DEFAULT_VALUE)); | |
53 | control->SetRange(GetLong( wxT("min"), wxSP_DEFAULT_MIN), | |
54 | GetLong(wxT("max"), wxSP_DEFAULT_MAX)); | |
55 | SetupWindow(control); | |
56 | ||
57 | return control; | |
58 | } | |
59 | ||
60 | bool wxSpinButtonXmlHandler::CanHandle(wxXmlNode *node) | |
61 | { | |
62 | return IsOfClass(node, wxT("wxSpinButton")); | |
63 | } | |
64 | ||
65 | #endif // wxUSE_SPINBTN | |
66 | ||
67 | #if wxUSE_SPINCTRL | |
68 | ||
69 | #include "wx/spinctrl.h" | |
70 | ||
71 | IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrlXmlHandler, wxXmlResourceHandler) | |
72 | ||
73 | wxSpinCtrlXmlHandler::wxSpinCtrlXmlHandler() | |
74 | : wxXmlResourceHandler() | |
75 | { | |
76 | XRC_ADD_STYLE(wxSP_HORIZONTAL); | |
77 | XRC_ADD_STYLE(wxSP_VERTICAL); | |
78 | XRC_ADD_STYLE(wxSP_ARROW_KEYS); | |
79 | XRC_ADD_STYLE(wxSP_WRAP); | |
80 | } | |
81 | ||
82 | wxObject *wxSpinCtrlXmlHandler::DoCreateResource() | |
83 | { | |
84 | XRC_MAKE_INSTANCE(control, wxSpinCtrl) | |
85 | ||
86 | control->Create(m_parentAsWindow, | |
87 | GetID(), | |
88 | GetText(wxT("value")), | |
89 | GetPosition(), GetSize(), | |
90 | GetStyle(wxT("style"), wxSP_ARROW_KEYS), | |
91 | GetLong(wxT("min"), wxSP_DEFAULT_MIN), | |
92 | GetLong(wxT("max"), wxSP_DEFAULT_MAX), | |
93 | GetLong(wxT("value"), wxSP_DEFAULT_VALUE), | |
94 | GetName()); | |
95 | ||
96 | SetupWindow(control); | |
97 | ||
98 | return control; | |
99 | } | |
100 | ||
101 | bool wxSpinCtrlXmlHandler::CanHandle(wxXmlNode *node) | |
102 | { | |
103 | return IsOfClass(node, wxT("wxSpinCtrl")); | |
104 | } | |
105 | ||
106 | #endif // wxUSE_SPINCTRL | |
107 | ||
108 | #endif // wxUSE_XRC |