]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: xh_scrol.cpp | |
3 | // Purpose: XRC resource for wxScrollBar | |
4 | // Author: Brian Gavin | |
5 | // Created: 2000/09/09 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Brian Gavin | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "xh_scrol.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_SCROLLBAR | |
23 | ||
24 | #include "wx/xrc/xh_scrol.h" | |
25 | #include "wx/scrolbar.h" | |
26 | ||
27 | IMPLEMENT_DYNAMIC_CLASS(wxScrollBarXmlHandler, wxXmlResourceHandler) | |
28 | ||
29 | wxScrollBarXmlHandler::wxScrollBarXmlHandler() | |
30 | : wxXmlResourceHandler() | |
31 | { | |
32 | XRC_ADD_STYLE(wxSB_HORIZONTAL); | |
33 | XRC_ADD_STYLE(wxSB_VERTICAL); | |
34 | AddWindowStyles(); | |
35 | } | |
36 | ||
37 | wxObject *wxScrollBarXmlHandler::DoCreateResource() | |
38 | { | |
39 | XRC_MAKE_INSTANCE(control, wxScrollBar) | |
40 | ||
41 | control->Create(m_parentAsWindow, | |
42 | GetID(), | |
43 | GetPosition(), GetSize(), | |
44 | GetStyle(), | |
45 | wxDefaultValidator, | |
46 | GetName()); | |
47 | ||
48 | control->SetScrollbar(GetLong( wxT("value"), 0), | |
49 | GetLong( wxT("thumbsize"),1), | |
50 | GetLong( wxT("range"), 10), | |
51 | GetLong( wxT("pagesize"),1)); | |
52 | ||
53 | SetupWindow(control); | |
54 | CreateChildren(control); | |
55 | ||
56 | return control; | |
57 | } | |
58 | ||
59 | bool wxScrollBarXmlHandler::CanHandle(wxXmlNode *node) | |
60 | { | |
61 | return IsOfClass(node, wxT("wxScrollBar")); | |
62 | } | |
63 | ||
64 | #endif // wxUSE_XRC && wxUSE_SCROLLBAR |