1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC resource for wxScrolledWindow
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2002 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
20 #include "wx/xrc/xh_scwin.h"
21 #include "wx/scrolwin.h"
22 #include "wx/frame.h" // to get wxNO_3D
24 IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindowXmlHandler
, wxXmlResourceHandler
)
26 wxScrolledWindowXmlHandler::wxScrolledWindowXmlHandler()
27 : wxXmlResourceHandler()
29 XRC_ADD_STYLE(wxHSCROLL
);
30 XRC_ADD_STYLE(wxVSCROLL
);
33 XRC_ADD_STYLE(wxNO_3D
);
34 XRC_ADD_STYLE(wxTAB_TRAVERSAL
);
35 XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY
);
40 wxObject
*wxScrolledWindowXmlHandler::DoCreateResource()
42 XRC_MAKE_INSTANCE(control
, wxScrolledWindow
)
44 control
->Create(m_parentAsWindow
,
46 GetPosition(), GetSize(),
47 GetStyle(wxT("style"), wxHSCROLL
| wxVSCROLL
),
51 CreateChildren(control
);
56 bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode
*node
)
58 return IsOfClass(node
, wxT("wxScrolledWindow"));