SetSelection() for generic wxSpinCtrl (forgot to commit before)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16898 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-08-31 22:52:24 +00:00
parent 27f35b6674
commit 739555e321
2 changed files with 11 additions and 3 deletions

View File

@ -20,7 +20,7 @@
// without tons of #ifdefs. // without tons of #ifdefs.
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#if wxUSE_SPINBTN #if wxUSE_SPINBTN
#if defined(__GNUG__) && !defined(__APPLE__) #if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "spinctlg.h" #pragma interface "spinctlg.h"
@ -66,6 +66,7 @@ public:
void SetValue(int val); void SetValue(int val);
void SetValue(const wxString& text); void SetValue(const wxString& text);
void SetRange(int min, int max); void SetRange(int min, int max);
void SetSelection(long from, long to);
// accessors // accessors
int GetValue() const; int GetValue() const;
@ -102,7 +103,7 @@ private:
// the subcontrols // the subcontrols
wxTextCtrl *m_text; wxTextCtrl *m_text;
wxSpinButton *m_btn; wxSpinButton *m_btn;
private: private:
DECLARE_DYNAMIC_CLASS(wxSpinCtrl) DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
}; };

View File

@ -134,7 +134,7 @@ BEGIN_EVENT_TABLE(wxSpinCtrlButton, wxSpinButton)
END_EVENT_TABLE() END_EVENT_TABLE()
IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl, wxControl) IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl, wxControl)
// ============================================================================ // ============================================================================
// implementation // implementation
// ============================================================================ // ============================================================================
@ -366,5 +366,12 @@ void wxSpinCtrl::SetRange(int min, int max)
m_btn->SetRange(min, 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 // wxUSE_SPINCTRL
#endif // !wxPort-with-native-spinctrl #endif // !wxPort-with-native-spinctrl