]> git.saurik.com Git - wxWidgets.git/commitdiff
SetSelection() for generic wxSpinCtrl (forgot to commit before)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 31 Aug 2002 22:52:24 +0000 (22:52 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 31 Aug 2002 22:52:24 +0000 (22:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16898 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/spinctlg.h
src/generic/spinctlg.cpp

index 1175f102d03d5eeb41c158e25881c384a0a45310..d6d9a4043bc28645c51f3383e418a4fe04a65387 100644 (file)
@@ -20,7 +20,7 @@
 // without tons of #ifdefs.
 // ----------------------------------------------------------------------------
 
-#if wxUSE_SPINBTN 
+#if wxUSE_SPINBTN
 
 #if defined(__GNUG__) && !defined(__APPLE__)
     #pragma interface "spinctlg.h"
@@ -66,6 +66,7 @@ public:
     void SetValue(int val);
     void SetValue(const wxString& text);
     void SetRange(int min, int max);
+    void SetSelection(long from, long to);
 
     // accessors
     int GetValue() const;
@@ -102,7 +103,7 @@ private:
     // the subcontrols
     wxTextCtrl *m_text;
     wxSpinButton *m_btn;
-    
+
 private:
     DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
 };
index 548025594a684e8f20fbea221717d313fc568e21..eb52e041a22763019f76c8390cb88ee60dc00fd8 100644 (file)
@@ -134,7 +134,7 @@ BEGIN_EVENT_TABLE(wxSpinCtrlButton, wxSpinButton)
 END_EVENT_TABLE()
 
 IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl, wxControl)
-    
+
 // ============================================================================
 // implementation
 // ============================================================================
@@ -366,5 +366,12 @@ void wxSpinCtrl::SetRange(int min, int max)
     m_btn->SetRange(min, max);
 }
 
+void wxSpinCtrl::SetSelection(long from, long to)
+{
+    wxCHECK_RET( m_text, _T("invalid call to wxSpinCtrl::SetSelection") );
+
+    m_text->SetSelection(from, to);
+}
+
 #endif // wxUSE_SPINCTRL
 #endif // !wxPort-with-native-spinctrl