]>
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 | 20 | #include "wx/xrc/xh_scwin.h" |
76b49cf4 WS |
21 | |
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/frame.h" | |
24 | #endif | |
25 | ||
2b5f62a0 VZ |
26 | #include "wx/scrolwin.h" |
27 | ||
854e189f | 28 | IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindowXmlHandler, wxXmlResourceHandler) |
2b5f62a0 | 29 | |
f80ea77b WS |
30 | wxScrolledWindowXmlHandler::wxScrolledWindowXmlHandler() |
31 | : wxXmlResourceHandler() | |
2b5f62a0 VZ |
32 | { |
33 | XRC_ADD_STYLE(wxHSCROLL); | |
34 | XRC_ADD_STYLE(wxVSCROLL); | |
ffdf1b49 RD |
35 | |
36 | // wxPanel styles | |
1c067fe3 | 37 | #if WXWIN_COMPATIBILITY_2_6 |
ffdf1b49 | 38 | XRC_ADD_STYLE(wxNO_3D); |
1c067fe3 | 39 | #endif // WXWIN_COMPATIBILITY_2_6 |
ffdf1b49 RD |
40 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); |
41 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
42 | ||
2b5f62a0 VZ |
43 | AddWindowStyles(); |
44 | } | |
45 | ||
46 | wxObject *wxScrolledWindowXmlHandler::DoCreateResource() | |
f80ea77b | 47 | { |
2b5f62a0 VZ |
48 | XRC_MAKE_INSTANCE(control, wxScrolledWindow) |
49 | ||
50 | control->Create(m_parentAsWindow, | |
51 | GetID(), | |
52 | GetPosition(), GetSize(), | |
53 | GetStyle(wxT("style"), wxHSCROLL | wxVSCROLL), | |
54 | GetName()); | |
55 | ||
56 | SetupWindow(control); | |
ace1785b | 57 | CreateChildren(control); |
f80ea77b | 58 | |
2b5f62a0 VZ |
59 | return control; |
60 | } | |
61 | ||
62 | bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode *node) | |
63 | { | |
64 | return IsOfClass(node, wxT("wxScrolledWindow")); | |
65 | } | |
a1e4ec87 | 66 | |
621be1ec | 67 | #endif // wxUSE_XRC |