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// RCS-ID:      $Id: xh_slidr.h 41590 2006-10-03 14:53:40Z VZ $
7// Copyright:   (c) 2000 Bob Mitchell and Verant Interactive
8// Licence:     wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_XH_SLIDR_H_
12#define _WX_XH_SLIDR_H_
13
14#include "wx/xrc/xmlres.h"
15
16#if wxUSE_XRC && wxUSE_SLIDER
17
18class WXDLLIMPEXP_XRC wxSliderXmlHandler : public wxXmlResourceHandler
19{
20    DECLARE_DYNAMIC_CLASS(wxSliderXmlHandler)
21    enum
22    {
23        wxSL_DEFAULT_VALUE = 0,
24        wxSL_DEFAULT_MIN = 0,
25        wxSL_DEFAULT_MAX = 100
26    };
27
28public:
29    wxSliderXmlHandler();
30    virtual wxObject *DoCreateResource();
31    virtual bool CanHandle(wxXmlNode *node);
32};
33
34#endif // wxUSE_XRC && wxUSE_SLIDER
35
36#endif // _WX_XH_SLIDR_H_
37