]>
Commit | Line | Data |
---|---|---|
2b5f62a0 VZ |
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 | #ifdef __GNUG__ | |
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 | #include "wx/xrc/xh_scwin.h" | |
23 | #include "wx/scrolwin.h" | |
24 | ||
25 | ||
26 | wxScrolledWindowXmlHandler::wxScrolledWindowXmlHandler() | |
27 | : wxXmlResourceHandler() | |
28 | { | |
29 | XRC_ADD_STYLE(wxHSCROLL); | |
30 | XRC_ADD_STYLE(wxVSCROLL); | |
31 | AddWindowStyles(); | |
32 | } | |
33 | ||
34 | wxObject *wxScrolledWindowXmlHandler::DoCreateResource() | |
35 | { | |
36 | XRC_MAKE_INSTANCE(control, wxScrolledWindow) | |
37 | ||
38 | control->Create(m_parentAsWindow, | |
39 | GetID(), | |
40 | GetPosition(), GetSize(), | |
41 | GetStyle(wxT("style"), wxHSCROLL | wxVSCROLL), | |
42 | GetName()); | |
43 | ||
44 | SetupWindow(control); | |
45 | ||
46 | return control; | |
47 | } | |
48 | ||
49 | bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode *node) | |
50 | { | |
51 | return IsOfClass(node, wxT("wxScrolledWindow")); | |
52 | } |