xh_scwin.h 787 B

1234567891011121314151617181920212223242526272829
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/xrc/xh_scwin.h
  3. // Purpose: XML resource handler for wxScrolledWindow
  4. // Author: Vaclav Slavik
  5. // Created: 2002/10/18
  6. // Copyright: (c) 2002 Vaclav Slavik
  7. // Licence: wxWindows licence
  8. /////////////////////////////////////////////////////////////////////////////
  9. #ifndef _WX_XH_SCWIN_H_
  10. #define _WX_XH_SCWIN_H_
  11. #include "wx/xrc/xmlres.h"
  12. #if wxUSE_XRC
  13. class WXDLLIMPEXP_XRC wxScrolledWindowXmlHandler : public wxXmlResourceHandler
  14. {
  15. DECLARE_DYNAMIC_CLASS(wxScrolledWindowXmlHandler)
  16. public:
  17. wxScrolledWindowXmlHandler();
  18. virtual wxObject *DoCreateResource();
  19. virtual bool CanHandle(wxXmlNode *node);
  20. };
  21. #endif // wxUSE_XRC
  22. #endif // _WX_XH_SCWIN_H_