xh_split.h 853 B

1234567891011121314151617181920212223242526272829
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/xrc/xh_split.h
  3. // Purpose: XRC resource for wxSplitterWindow
  4. // Author: panga@freemail.hu, Vaclav Slavik
  5. // Created: 2003/01/26
  6. // Copyright: (c) 2003 panga@freemail.hu, Vaclav Slavik
  7. // Licence: wxWindows licence
  8. /////////////////////////////////////////////////////////////////////////////
  9. #ifndef _WX_XH_SPLIT_H_
  10. #define _WX_XH_SPLIT_H_
  11. #include "wx/xrc/xmlres.h"
  12. #if wxUSE_XRC && wxUSE_SPLITTER
  13. class WXDLLIMPEXP_XRC wxSplitterWindowXmlHandler : public wxXmlResourceHandler
  14. {
  15. DECLARE_DYNAMIC_CLASS(wxSplitterWindowXmlHandler)
  16. public:
  17. wxSplitterWindowXmlHandler();
  18. virtual wxObject *DoCreateResource();
  19. virtual bool CanHandle(wxXmlNode *node);
  20. };
  21. #endif // wxUSE_XRC && wxUSE_SPLITTER
  22. #endif // _WX_XH_SPLIT_H_