]>
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 | ||
854e189f | 25 | IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindowXmlHandler, wxXmlResourceHandler) |
2b5f62a0 VZ |
26 | |
27 | wxScrolledWindowXmlHandler::wxScrolledWindowXmlHandler() | |
28 | : wxXmlResourceHandler() | |
29 | { | |
30 | XRC_ADD_STYLE(wxHSCROLL); | |
31 | XRC_ADD_STYLE(wxVSCROLL); | |
32 | AddWindowStyles(); | |
33 | } | |
34 | ||
35 | wxObject *wxScrolledWindowXmlHandler::DoCreateResource() | |
36 | { | |
37 | XRC_MAKE_INSTANCE(control, wxScrolledWindow) | |
38 | ||
39 | control->Create(m_parentAsWindow, | |
40 | GetID(), | |
41 | GetPosition(), GetSize(), | |
42 | GetStyle(wxT("style"), wxHSCROLL | wxVSCROLL), | |
43 | GetName()); | |
44 | ||
45 | SetupWindow(control); | |
46 | ||
47 | return control; | |
48 | } | |
49 | ||
50 | bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode *node) | |
51 | { | |
52 | return IsOfClass(node, wxT("wxScrolledWindow")); | |
53 | } |