]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: xh_scwin.cpp | |
3 | // Purpose: XRC resource for wxScrolledWindow | |
4 | // Author: Vaclav Slavik | |
5 | // Created: 2002/10/18 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2002 Vaclav Slavik | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // For compilers that support precompilation, includes "wx.h". | |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
18 | #if wxUSE_XRC | |
19 | ||
20 | #include "wx/xrc/xh_scwin.h" | |
21 | #include "wx/scrolwin.h" | |
22 | #include "wx/frame.h" // to get wxNO_3D | |
23 | ||
24 | IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindowXmlHandler, wxXmlResourceHandler) | |
25 | ||
26 | wxScrolledWindowXmlHandler::wxScrolledWindowXmlHandler() | |
27 | : wxXmlResourceHandler() | |
28 | { | |
29 | XRC_ADD_STYLE(wxHSCROLL); | |
30 | XRC_ADD_STYLE(wxVSCROLL); | |
31 | ||
32 | // wxPanel styles | |
33 | XRC_ADD_STYLE(wxNO_3D); | |
34 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); | |
35 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
36 | ||
37 | AddWindowStyles(); | |
38 | } | |
39 | ||
40 | wxObject *wxScrolledWindowXmlHandler::DoCreateResource() | |
41 | { | |
42 | XRC_MAKE_INSTANCE(control, wxScrolledWindow) | |
43 | ||
44 | control->Create(m_parentAsWindow, | |
45 | GetID(), | |
46 | GetPosition(), GetSize(), | |
47 | GetStyle(wxT("style"), wxHSCROLL | wxVSCROLL), | |
48 | GetName()); | |
49 | ||
50 | SetupWindow(control); | |
51 | CreateChildren(control); | |
52 | ||
53 | return control; | |
54 | } | |
55 | ||
56 | bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode *node) | |
57 | { | |
58 | return IsOfClass(node, wxT("wxScrolledWindow")); | |
59 | } | |
60 | ||
61 | #endif // wxUSE_XRC |