| 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 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
| 15 | #pragma interface |
| 16 | #endif |
| 17 | |
| 18 | #include "wx/defs.h" |
| 19 | |
| 20 | #if wxUSE_SPINCTRL |
| 21 | |
| 22 | #include "wx/control.h" |
| 23 | |
| 24 | //----------------------------------------------------------------------------- |
| 25 | // wxSpinCtrl |
| 26 | //----------------------------------------------------------------------------- |
| 27 | |
| 28 | class wxSpinCtrl : public wxControl |
| 29 | { |
| 30 | public: |
| 31 | wxSpinCtrl() {} |
| 32 | wxSpinCtrl(wxWindow *parent, |
| 33 | wxWindowID id = -1, |
| 34 | const wxString& value = wxEmptyString, |
| 35 | const wxPoint& pos = wxDefaultPosition, |
| 36 | const wxSize& size = wxDefaultSize, |
| 37 | long style = wxSP_ARROW_KEYS, |
| 38 | int min = 0, int max = 100, int initial = 0, |
| 39 | const wxString& name = _T("wxSpinCtrl")) |
| 40 | { |
| 41 | Create(parent, id, value, pos, size, style, min, max, initial, name); |
| 42 | } |
| 43 | |
| 44 | bool Create(wxWindow *parent, |
| 45 | wxWindowID id = -1, |
| 46 | const wxString& value = wxEmptyString, |
| 47 | const wxPoint& pos = wxDefaultPosition, |
| 48 | const wxSize& size = wxDefaultSize, |
| 49 | long style = wxSP_ARROW_KEYS, |
| 50 | int min = 0, int max = 100, int initial = 0, |
| 51 | const wxString& name = _T("wxSpinCtrl")); |
| 52 | |
| 53 | void SetValue(const wxString& text); |
| 54 | void SetSelection(long from, long to); |
| 55 | |
| 56 | virtual int GetValue() const; |
| 57 | virtual void SetValue( int value ); |
| 58 | virtual void SetRange( int minVal, int maxVal ); |
| 59 | virtual int GetMin() const; |
| 60 | virtual int GetMax() const; |
| 61 | |
| 62 | static wxVisualAttributes |
| 63 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); |
| 64 | |
| 65 | // implementation |
| 66 | void OnChar( wxKeyEvent &event ); |
| 67 | |
| 68 | bool IsOwnGtkWindow( GdkWindow *window ); |
| 69 | void GtkDisableEvents(); |
| 70 | void GtkEnableEvents(); |
| 71 | |
| 72 | GtkAdjustment *m_adjust; |
| 73 | float m_oldPos; |
| 74 | |
| 75 | protected: |
| 76 | virtual wxSize DoGetBestSize() const; |
| 77 | |
| 78 | // Widgets that use the style->base colour for the BG colour should |
| 79 | // override this and return true. |
| 80 | virtual bool UseGTKStyleBase() const { return true; } |
| 81 | |
| 82 | private: |
| 83 | DECLARE_DYNAMIC_CLASS(wxSpinCtrl) |
| 84 | DECLARE_EVENT_TABLE() |
| 85 | }; |
| 86 | |
| 87 | #endif |
| 88 | // wxUSE_SPINCTRL |
| 89 | |
| 90 | #endif |
| 91 | // __GTKSPINCTRLH__ |