]>
Commit | Line | Data |
---|---|---|
2b5f62a0 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1c067fe3 | 2 | // Name: src/xrc/xh_scwin.cpp |
2b5f62a0 VZ |
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 | ///////////////////////////////////////////////////////////////////////////// | |
f80ea77b | 10 | |
2b5f62a0 VZ |
11 | // For compilers that support precompilation, includes "wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
621be1ec | 18 | #if wxUSE_XRC |
a1e4ec87 | 19 | |
2b5f62a0 VZ |
20 | #include "wx/xrc/xh_scwin.h" |
21 | #include "wx/scrolwin.h" | |
1c067fe3 | 22 | #include "wx/frame.h" |
2b5f62a0 | 23 | |
854e189f | 24 | IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindowXmlHandler, wxXmlResourceHandler) |
2b5f62a0 | 25 | |
f80ea77b WS |
26 | wxScrolledWindowXmlHandler::wxScrolledWindowXmlHandler() |
27 | : wxXmlResourceHandler() | |
2b5f62a0 VZ |
28 | { |
29 | XRC_ADD_STYLE(wxHSCROLL); | |
30 | XRC_ADD_STYLE(wxVSCROLL); | |
ffdf1b49 RD |
31 | |
32 | // wxPanel styles | |
1c067fe3 | 33 | #if WXWIN_COMPATIBILITY_2_6 |
ffdf1b49 | 34 | XRC_ADD_STYLE(wxNO_3D); |
1c067fe3 | 35 | #endif // WXWIN_COMPATIBILITY_2_6 |
ffdf1b49 RD |
36 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); |
37 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
38 | ||
2b5f62a0 VZ |
39 | AddWindowStyles(); |
40 | } | |
41 | ||
42 | wxObject *wxScrolledWindowXmlHandler::DoCreateResource() | |
f80ea77b | 43 | { |
2b5f62a0 VZ |
44 | XRC_MAKE_INSTANCE(control, wxScrolledWindow) |
45 | ||
46 | control->Create(m_parentAsWindow, | |
47 | GetID(), | |
48 | GetPosition(), GetSize(), | |
49 | GetStyle(wxT("style"), wxHSCROLL | wxVSCROLL), | |
50 | GetName()); | |
51 | ||
52 | SetupWindow(control); | |
ace1785b | 53 | CreateChildren(control); |
f80ea77b | 54 | |
2b5f62a0 VZ |
55 | return control; |
56 | } | |
57 | ||
58 | bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode *node) | |
59 | { | |
60 | return IsOfClass(node, wxT("wxScrolledWindow")); | |
61 | } | |
a1e4ec87 | 62 | |
621be1ec | 63 | #endif // wxUSE_XRC |