1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/xrc/xh_srchctl.h
3 // Purpose: XRC resource handler for wxSearchCtrl
4 // Author: Sander Berents
7 // Copyright: (c) 2007 Sander Berents
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_XH_SRCH_H_
12 #define _WX_XH_SRCH_H_
14 #include "wx/xrc/xmlres.h"
16 #if wxUSE_XRC && wxUSE_SEARCHCTRL
18 class WXDLLIMPEXP_XRC wxSearchCtrlXmlHandler
: public wxXmlResourceHandler
21 wxSearchCtrlXmlHandler();
23 virtual wxObject
*DoCreateResource();
24 virtual bool CanHandle(wxXmlNode
*node
);
26 DECLARE_DYNAMIC_CLASS(wxSearchCtrlXmlHandler
)
29 #endif // wxUSE_XRC && wxUSE_SEARCHCTRL
31 #endif // _WX_XH_SRCH_H_