2004-10-19 13:40:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-01-18 21:14:27 +00:00
|
|
|
// Name: wx/palmos/spinbutt.h
|
2004-10-19 13:40:30 +00:00
|
|
|
// Purpose: wxSpinButton class
|
2005-01-18 21:14:27 +00:00
|
|
|
// Author: William Osborne - minimal working wxPalmOS port
|
2004-10-19 13:40:30 +00:00
|
|
|
// Modified by:
|
2005-01-18 21:14:27 +00:00
|
|
|
// Created: 10/13/04
|
2004-10-19 13:40:30 +00:00
|
|
|
// RCS-ID: $Id$
|
2005-01-18 21:14:27 +00:00
|
|
|
// Copyright: (c) William Osborne
|
2004-10-19 13:40:30 +00:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_SPINBUTT_H_
|
|
|
|
#define _WX_SPINBUTT_H_
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
#include "wx/event.h"
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxSpinButton : public wxSpinButtonBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// construction
|
|
|
|
wxSpinButton() { }
|
|
|
|
|
|
|
|
wxSpinButton(wxWindow *parent,
|
2004-12-27 08:36:21 +00:00
|
|
|
wxWindowID id = wxID_ANY,
|
2004-10-19 13:40:30 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxSP_VERTICAL | wxSP_ARROW_KEYS,
|
|
|
|
const wxString& name = wxSPIN_BUTTON_NAME)
|
|
|
|
{
|
|
|
|
Create(parent, id, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~wxSpinButton();
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
2004-12-27 08:36:21 +00:00
|
|
|
wxWindowID id = wxID_ANY,
|
2004-10-19 13:40:30 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxSP_VERTICAL | wxSP_ARROW_KEYS,
|
|
|
|
const wxString& name = wxSPIN_BUTTON_NAME);
|
|
|
|
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
virtual int GetValue() const;
|
|
|
|
virtual void SetValue(int val);
|
|
|
|
virtual void SetRange(int minVal, int maxVal);
|
|
|
|
|
|
|
|
// a wxSpinButton can't do anything useful with focus, only wxSpinCtrl can
|
2004-12-27 08:36:21 +00:00
|
|
|
virtual bool AcceptsFocus() const { return false; }
|
2004-10-19 13:40:30 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxSpinButton)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_SPINBUTT_H_
|