1999-01-01 11:05:26 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: spinbutt.h
|
|
|
|
// Purpose: wxSpinButton class
|
2003-02-28 16:54:04 -05:00
|
|
|
// Author: Stefan Csomor
|
1999-01-01 11:05:26 -05:00
|
|
|
// Modified by:
|
2003-02-28 16:54:04 -05:00
|
|
|
// Created: 1998-01-01
|
1999-01-01 11:05:26 -05:00
|
|
|
// RCS-ID: $Id$
|
2003-02-28 16:54:04 -05:00
|
|
|
// Copyright: (c) Stefan Csomor
|
2003-02-28 18:48:13 -05:00
|
|
|
// Licence: wxWindows licence
|
1999-01-01 11:05:26 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_SPINBUTT_H_
|
|
|
|
#define _WX_SPINBUTT_H_
|
|
|
|
|
2002-08-31 07:29:13 -04:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
1999-01-01 11:05:26 -05:00
|
|
|
#pragma interface "spinbutt.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
#include "wx/event.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
The wxSpinButton is like a small scrollbar than is often placed next
|
|
|
|
to a text control.
|
|
|
|
|
|
|
|
wxSP_HORIZONTAL: horizontal spin button
|
|
|
|
wxSP_VERTICAL: vertical spin button (the default)
|
|
|
|
wxSP_ARROW_KEYS: arrow keys increment/decrement value
|
|
|
|
wxSP_WRAP: value wraps at either end
|
|
|
|
*/
|
|
|
|
|
1999-11-09 10:24:52 -05:00
|
|
|
class WXDLLEXPORT wxSpinButton : public wxSpinButtonBase
|
1999-01-01 11:05:26 -05:00
|
|
|
{
|
1999-11-09 10:24:52 -05:00
|
|
|
public:
|
|
|
|
// construction
|
2001-02-15 16:51:14 -05:00
|
|
|
wxSpinButton();
|
1999-11-09 10:24:52 -05:00
|
|
|
|
|
|
|
wxSpinButton(wxWindow *parent,
|
|
|
|
wxWindowID id = -1,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxSP_VERTICAL | wxSP_ARROW_KEYS,
|
2003-03-27 15:14:39 -05:00
|
|
|
const wxString& name = wxT("wxSpinButton"))
|
1999-11-09 10:24:52 -05:00
|
|
|
{
|
|
|
|
Create(parent, id, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~wxSpinButton();
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id = -1,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxSP_VERTICAL | wxSP_ARROW_KEYS,
|
2003-03-27 15:14:39 -05:00
|
|
|
const wxString& name = wxT("wxSpinButton"));
|
1999-11-09 10:24:52 -05:00
|
|
|
|
|
|
|
|
|
|
|
// accessors
|
2001-02-15 16:51:14 -05:00
|
|
|
virtual int GetMin() const;
|
|
|
|
virtual int GetMax() const;
|
1999-11-09 10:24:52 -05:00
|
|
|
virtual int GetValue() const;
|
|
|
|
virtual void SetValue(int val);
|
|
|
|
virtual void SetRange(int minVal, int maxVal);
|
|
|
|
|
|
|
|
// implementation
|
|
|
|
|
2003-06-07 16:29:57 -04:00
|
|
|
virtual void MacHandleControlClick( WXWidget control , wxInt16 controlpart , bool mouseStillDown ) ;
|
1999-01-01 11:05:26 -05:00
|
|
|
|
|
|
|
protected:
|
2002-05-11 02:38:53 -04:00
|
|
|
void MacHandleValueChanged( int inc ) ;
|
2000-01-13 02:57:22 -05:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
1999-11-09 10:24:52 -05:00
|
|
|
int m_value ;
|
1999-01-01 11:05:26 -05:00
|
|
|
|
1999-11-09 10:24:52 -05:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxSpinButton)
|
1999-01-01 11:05:26 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_SPINBUTT_H_
|