xh_slidr.h 808 B

1234567891011121314151617181920212223242526272829
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/xrc/xh_slidr.h
  3. // Purpose: XML resource handler for wxSlider
  4. // Author: Bob Mitchell
  5. // Created: 2000/03/21
  6. // Copyright: (c) 2000 Bob Mitchell and Verant Interactive
  7. // Licence: wxWindows licence
  8. /////////////////////////////////////////////////////////////////////////////
  9. #ifndef _WX_XH_SLIDR_H_
  10. #define _WX_XH_SLIDR_H_
  11. #include "wx/xrc/xmlres.h"
  12. #if wxUSE_XRC && wxUSE_SLIDER
  13. class WXDLLIMPEXP_XRC wxSliderXmlHandler : public wxXmlResourceHandler
  14. {
  15. public:
  16. wxSliderXmlHandler();
  17. virtual wxObject *DoCreateResource();
  18. virtual bool CanHandle(wxXmlNode *node);
  19. DECLARE_DYNAMIC_CLASS(wxSliderXmlHandler)
  20. };
  21. #endif // wxUSE_XRC && wxUSE_SLIDER
  22. #endif // _WX_XH_SLIDR_H_