]> git.saurik.com Git - wxWidgets.git/blame - contrib/include/wx/xml/xh_spin.h
Added wxFrame support contributed by Aleks
[wxWidgets.git] / contrib / include / wx / xml / xh_spin.h
CommitLineData
56d2f750
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: xh_spin.h
3// Purpose: XML resource handler for wxSpinButton
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_SPIN_H_
12#define _WX_XH_SPIN_H_
13
14#ifdef __GNUG__
15#pragma interface "xh_spin.h"
16#endif
17
18#include "wx/xml/xmlres.h"
19#include "wx/defs.h"
20
21#if wxUSE_SPINBTN
1ad83f6b 22class WXDLLEXPORT wxSpinButtonXmlHandler : public wxXmlResourceHandler
56d2f750
VS
23{
24 enum
25 {
26 wxSP_DEFAULT_VALUE = 0,
27 wxSP_DEFAULT_MIN = 0,
28 wxSP_DEFAULT_MAX = 100
29 };
30
31 public:
32 wxSpinButtonXmlHandler();
33 virtual wxObject *DoCreateResource();
34 virtual bool CanHandle(wxXmlNode *node);
35};
36#endif
37
38#if wxUSE_SPINCTRL
1ad83f6b 39class WXDLLEXPORT wxSpinCtrlXmlHandler : public wxXmlResourceHandler
56d2f750
VS
40{
41 enum
42 {
43 wxSP_DEFAULT_VALUE = 0,
44 wxSP_DEFAULT_MIN = 0,
45 wxSP_DEFAULT_MAX = 100
46 };
47
48 public:
49 wxSpinCtrlXmlHandler();
50 virtual wxObject *DoCreateResource();
51 virtual bool CanHandle(wxXmlNode *node);
52};
53#endif
54
55#endif // _WX_XH_SPIN_H_