1999-10-15 21:00:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: msw/spinctrl.h
|
|
|
|
// Purpose: wxSpinCtrl class declaration for Win32
|
|
|
|
// Author: David Webster
|
|
|
|
// Modified by:
|
|
|
|
// Created: 10/15/99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) David Webster
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MSW_SPINCTRL_H_
|
|
|
|
#define _WX_MSW_SPINCTRL_H_
|
|
|
|
|
|
|
|
#include "wx/spinbutt.h" // the base class
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
1999-10-28 22:38:37 +00:00
|
|
|
// Under Win32 and OS2 PM, wxSpinCtrl is a wxSpinButton with a buddy
|
1999-10-15 21:00:38 +00:00
|
|
|
// text window whose contents is automatically updated when the spin
|
|
|
|
// control is clicked.
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxSpinCtrl : public wxSpinButton
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxSpinCtrl() { }
|
|
|
|
|
|
|
|
wxSpinCtrl(wxWindow *parent,
|
|
|
|
wxWindowID id = -1,
|
1999-10-28 22:38:37 +00:00
|
|
|
const wxString& value = wxEmptyString,
|
1999-10-15 21:00:38 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxSP_ARROW_KEYS,
|
|
|
|
int min = 0, int max = 100, int initial = 0,
|
|
|
|
const wxString& name = _T("wxSpinCtrl"))
|
|
|
|
{
|
1999-10-28 22:38:37 +00:00
|
|
|
Create(parent, id, value, pos, size, style, min, max, initial, name);
|
1999-10-15 21:00:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id = -1,
|
1999-10-28 22:38:37 +00:00
|
|
|
const wxString& value = wxEmptyString,
|
1999-10-15 21:00:38 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxSP_ARROW_KEYS,
|
|
|
|
int min = 0, int max = 100, int initial = 0,
|
|
|
|
const wxString& name = _T("wxSpinCtrl"));
|
|
|
|
|
2000-01-05 14:07:15 +00:00
|
|
|
// a wxTextCtrl-like method (but we can't have GetValue returning wxString
|
|
|
|
// because the base class already has one returning int!)
|
|
|
|
void SetValue(const wxString& text);
|
|
|
|
|
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
|
|
|
|
|
|
|
virtual void SetValue(int val) { wxSpinButton::SetValue(val); }
|
|
|
|
virtual int GetValue() const;
|
|
|
|
virtual bool SetFont(const wxFont &font);
|
|
|
|
|
|
|
|
virtual bool Enable(bool enable = TRUE);
|
|
|
|
virtual bool Show(bool show = TRUE);
|
1999-10-15 21:00:38 +00:00
|
|
|
protected:
|
|
|
|
void DoMoveWindow(int x, int y, int width, int height);
|
|
|
|
|
2000-01-05 14:07:15 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
|
|
|
// the handler for wxSpinButton events
|
|
|
|
void OnSpinChange(wxSpinEvent& event);
|
|
|
|
|
1999-10-15 21:00:38 +00:00
|
|
|
WXHWND m_hwndBuddy;
|
|
|
|
|
2000-01-05 14:07:15 +00:00
|
|
|
private:
|
1999-10-15 21:00:38 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
|
2000-01-05 14:07:15 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
1999-10-15 21:00:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_MSW_SPINCTRL_H_
|
|
|
|
|
|
|
|
|