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"
22 #include "wx/xrc/xh_scwin.h"
23 #include "wx/scrolwin.h"
24 #include "wx/frame.h" // to get wxNO_3D
26 IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindowXmlHandler
, wxXmlResourceHandler
)
28 wxScrolledWindowXmlHandler::wxScrolledWindowXmlHandler()
29 : wxXmlResourceHandler()
31 XRC_ADD_STYLE(wxHSCROLL
);
32 XRC_ADD_STYLE(wxVSCROLL
);
35 XRC_ADD_STYLE(wxNO_3D
);
36 XRC_ADD_STYLE(wxTAB_TRAVERSAL
);
37 XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY
);
42 wxObject
*wxScrolledWindowXmlHandler::DoCreateResource()
44 XRC_MAKE_INSTANCE(control
, wxScrolledWindow
)
46 control
->Create(m_parentAsWindow
,
48 GetPosition(), GetSize(),
49 GetStyle(wxT("style"), wxHSCROLL
| wxVSCROLL
),
53 CreateChildren(control
);
58 bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode
*node
)
60 return IsOfClass(node
, wxT("wxScrolledWindow"));