1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC resource for wxScrolledWindow
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2002 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "xh_scwin.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
24 #include "wx/xrc/xh_scwin.h"
25 #include "wx/scrolwin.h"
26 #include "wx/frame.h" // to get wxNO_3D
28 IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindowXmlHandler
, wxXmlResourceHandler
)
30 wxScrolledWindowXmlHandler::wxScrolledWindowXmlHandler()
31 : wxXmlResourceHandler()
33 XRC_ADD_STYLE(wxHSCROLL
);
34 XRC_ADD_STYLE(wxVSCROLL
);
37 XRC_ADD_STYLE(wxNO_3D
);
38 XRC_ADD_STYLE(wxTAB_TRAVERSAL
);
39 XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY
);
44 wxObject
*wxScrolledWindowXmlHandler::DoCreateResource()
46 XRC_MAKE_INSTANCE(control
, wxScrolledWindow
)
48 control
->Create(m_parentAsWindow
,
50 GetPosition(), GetSize(),
51 GetStyle(wxT("style"), wxHSCROLL
| wxVSCROLL
),
55 CreateChildren(control
);
60 bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode
*node
)
62 return IsOfClass(node
, wxT("wxScrolledWindow"));