xh_filectrl.h 839 B

123456789101112131415161718192021222324252627282930
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/xrc/xh_filectrl.h
  3. // Purpose: XML resource handler for wxFileCtrl
  4. // Author: Kinaou Hervé
  5. // Created: 2009-05-11
  6. // Copyright: (c) 2009 wxWidgets development team
  7. // Licence: wxWindows licence
  8. /////////////////////////////////////////////////////////////////////////////
  9. #ifndef _WX_XH_FILECTRL_H_
  10. #define _WX_XH_FILECTRL_H_
  11. #include "wx/xrc/xmlres.h"
  12. #if wxUSE_XRC && wxUSE_FILECTRL
  13. class WXDLLIMPEXP_XRC wxFileCtrlXmlHandler : public wxXmlResourceHandler
  14. {
  15. public:
  16. wxFileCtrlXmlHandler();
  17. virtual wxObject *DoCreateResource();
  18. virtual bool CanHandle(wxXmlNode *node);
  19. private:
  20. DECLARE_DYNAMIC_CLASS(wxFileCtrlXmlHandler)
  21. };
  22. #endif // wxUSE_XRC && wxUSE_FILECTRL
  23. #endif // _WX_XH_FILEPICKERCTRL_H_