2000-07-25 18:47:21 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-07-04 18:08:09 +00:00
|
|
|
// Name: wx/xrc/xh_slidr.h
|
2000-07-25 18:47:21 +00:00
|
|
|
// Purpose: XML resource handler for wxSlider
|
|
|
|
// Author: Bob Mitchell
|
|
|
|
// Created: 2000/03/21
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_XH_SLIDR_H_
|
|
|
|
#define _WX_XH_SLIDR_H_
|
|
|
|
|
2001-06-09 22:18:45 +00:00
|
|
|
#include "wx/xrc/xmlres.h"
|
2000-07-25 18:47:21 +00:00
|
|
|
|
2006-10-03 14:53:40 +00:00
|
|
|
#if wxUSE_XRC && wxUSE_SLIDER
|
2000-07-25 18:47:21 +00:00
|
|
|
|
2003-07-04 13:33:42 +00:00
|
|
|
class WXDLLIMPEXP_XRC wxSliderXmlHandler : public wxXmlResourceHandler
|
2000-07-25 18:47:21 +00:00
|
|
|
{
|
2004-06-11 13:14:23 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxSliderXmlHandler)
|
2001-06-05 22:03:02 +00:00
|
|
|
enum
|
2000-07-25 18:47:21 +00:00
|
|
|
{
|
|
|
|
wxSL_DEFAULT_VALUE = 0,
|
|
|
|
wxSL_DEFAULT_MIN = 0,
|
|
|
|
wxSL_DEFAULT_MAX = 100
|
|
|
|
};
|
|
|
|
|
2001-05-02 23:01:00 +00:00
|
|
|
public:
|
|
|
|
wxSliderXmlHandler();
|
|
|
|
virtual wxObject *DoCreateResource();
|
|
|
|
virtual bool CanHandle(wxXmlNode *node);
|
2000-07-25 18:47:21 +00:00
|
|
|
};
|
|
|
|
|
2006-10-03 14:53:40 +00:00
|
|
|
#endif // wxUSE_XRC && wxUSE_SLIDER
|
2000-07-25 18:47:21 +00:00
|
|
|
|
2006-10-03 14:53:40 +00:00
|
|
|
#endif // _WX_XH_SLIDR_H_
|