]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/xrc/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" | |
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 | #if WXWIN_COMPATIBILITY_2_6 | |
34 | XRC_ADD_STYLE(wxNO_3D); | |
35 | #endif // WXWIN_COMPATIBILITY_2_6 | |
36 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); | |
37 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
38 | ||
39 | AddWindowStyles(); | |
40 | } | |
41 | ||
42 | wxObject *wxScrolledWindowXmlHandler::DoCreateResource() | |
43 | { | |
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); | |
53 | CreateChildren(control); | |
54 | ||
55 | return control; | |
56 | } | |
57 | ||
58 | bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode *node) | |
59 | { | |
60 | return IsOfClass(node, wxT("wxScrolledWindow")); | |
61 | } | |
62 | ||
63 | #endif // wxUSE_XRC |