#include "wx/spinbutt.h" // the base class
#include "wx/dynarray.h"
+
class WXDLLEXPORT wxSpinCtrl;
WX_DEFINE_EXPORTED_ARRAY(wxSpinCtrl *, wxArraySpins);
// because the base class already has one returning int!)
void SetValue(const wxString& text);
+ // another wxTextCtrl-like method
+ void SetSelection(long from, long to);
+
// implementation only from now on
// -------------------------------
// Handle processing of special keys
void OnChar(wxKeyEvent& event);
+ void OnSetFocus(wxFocusEvent& event);
// the data for the "buddy" text ctrl
WXHWND m_hwndBuddy;
private:
DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
DECLARE_EVENT_TABLE()
+ DECLARE_NO_COPY_CLASS(wxSpinCtrl)
};
#endif // _WX_MSW_SPINCTRL_H_