]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/xrc/xh_slidr.h
Implement dc mirroring for RTL.
[wxWidgets.git] / include / wx / xrc / xh_slidr.h
... / ...
CommitLineData
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$
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#include "wx/defs.h"
16
17#if wxUSE_SLIDER
18
19class WXDLLIMPEXP_XRC wxSliderXmlHandler : public wxXmlResourceHandler
20{
21 DECLARE_DYNAMIC_CLASS(wxSliderXmlHandler)
22 enum
23 {
24 wxSL_DEFAULT_VALUE = 0,
25 wxSL_DEFAULT_MIN = 0,
26 wxSL_DEFAULT_MAX = 100
27 };
28
29public:
30 wxSliderXmlHandler();
31 virtual wxObject *DoCreateResource();
32 virtual bool CanHandle(wxXmlNode *node);
33};
34
35#endif
36
37#endif // _WX_XH_SLIDER_H_