]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/spinctrl.h
gtk spinctrl code simplification
[wxWidgets.git] / include / wx / gtk / spinctrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: spinctrl.h
3 // Purpose: wxSpinCtrl class
4 // Author: Robert Roebling
5 // Modified by:
6 // RCS-ID: $Id$
7 // Copyright: (c) Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef __GTKSPINCTRLH__
12 #define __GTKSPINCTRLH__
13
14 #include "wx/defs.h"
15
16 #if wxUSE_SPINCTRL
17
18 #include "wx/control.h"
19
20 //-----------------------------------------------------------------------------
21 // wxSpinCtrl
22 //-----------------------------------------------------------------------------
23
24 class WXDLLIMPEXP_CORE wxSpinCtrl : public wxControl
25 {
26 public:
27 wxSpinCtrl();
28 wxSpinCtrl(wxWindow *parent,
29 wxWindowID id = -1,
30 const wxString& value = wxEmptyString,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
33 long style = wxSP_ARROW_KEYS,
34 int min = 0, int max = 100, int initial = 0,
35 const wxString& name = _T("wxSpinCtrl"))
36 {
37 Create(parent, id, value, pos, size, style, min, max, initial, name);
38 }
39
40 bool Create(wxWindow *parent,
41 wxWindowID id = -1,
42 const wxString& value = wxEmptyString,
43 const wxPoint& pos = wxDefaultPosition,
44 const wxSize& size = wxDefaultSize,
45 long style = wxSP_ARROW_KEYS,
46 int min = 0, int max = 100, int initial = 0,
47 const wxString& name = _T("wxSpinCtrl"));
48
49 void SetValue(const wxString& text);
50 void SetSelection(long from, long to);
51
52 virtual int GetValue() const;
53 virtual void SetValue( int value );
54 virtual void SetRange( int minVal, int maxVal );
55 virtual int GetMin() const;
56 virtual int GetMax() const;
57
58 static wxVisualAttributes
59 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
60
61 // implementation
62 void OnChar( wxKeyEvent &event );
63
64 bool IsOwnGtkWindow( GdkWindow *window );
65 void GtkDisableEvents();
66 void GtkEnableEvents();
67
68 int m_pos;
69
70 protected:
71 virtual wxSize DoGetBestSize() const;
72
73 // Widgets that use the style->base colour for the BG colour should
74 // override this and return true.
75 virtual bool UseGTKStyleBase() const { return true; }
76
77 private:
78 DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
79 DECLARE_EVENT_TABLE()
80 };
81
82 #endif
83 // wxUSE_SPINCTRL
84
85 #endif
86 // __GTKSPINCTRLH__