]>
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 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
12 | #pragma implementation "xh_scwin.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 | |
23 | ||
24 | #include "wx/xrc/xh_scwin.h" | |
25 | #include "wx/scrolwin.h" | |
26 | #include "wx/frame.h" // to get wxNO_3D | |
27 | ||
28 | IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindowXmlHandler, wxXmlResourceHandler) | |
29 | ||
30 | wxScrolledWindowXmlHandler::wxScrolledWindowXmlHandler() | |
31 | : wxXmlResourceHandler() | |
32 | { | |
33 | XRC_ADD_STYLE(wxHSCROLL); | |
34 | XRC_ADD_STYLE(wxVSCROLL); | |
35 | ||
36 | // wxPanel styles | |
37 | XRC_ADD_STYLE(wxNO_3D); | |
38 | XRC_ADD_STYLE(wxTAB_TRAVERSAL); | |
39 | XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); | |
40 | ||
41 | AddWindowStyles(); | |
42 | } | |
43 | ||
44 | wxObject *wxScrolledWindowXmlHandler::DoCreateResource() | |
45 | { | |
46 | XRC_MAKE_INSTANCE(control, wxScrolledWindow) | |
47 | ||
48 | control->Create(m_parentAsWindow, | |
49 | GetID(), | |
50 | GetPosition(), GetSize(), | |
51 | GetStyle(wxT("style"), wxHSCROLL | wxVSCROLL), | |
52 | GetName()); | |
53 | ||
54 | SetupWindow(control); | |
55 | CreateChildren(control); | |
56 | ||
57 | return control; | |
58 | } | |
59 | ||
60 | bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode *node) | |
61 | { | |
62 | return IsOfClass(node, wxT("wxScrolledWindow")); | |
63 | } | |
64 | ||
65 | #endif // wxUSE_XRC |