1999-07-23 17:03:02 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/spinbutt.h
|
|
|
|
// Purpose: wxSpinButtonBase class
|
|
|
|
// Author: Julian Smart, Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 23.07.99
|
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1999-07-23 17:03:02 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_SPINBUTT_H_BASE_
|
|
|
|
#define _WX_SPINBUTT_H_BASE_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-07-23 17:03:02 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2000-02-16 06:53:16 -05:00
|
|
|
#if wxUSE_SPINBTN
|
1999-07-23 17:03:02 -04:00
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
#include "wx/event.h"
|
2011-01-07 12:42:39 -05:00
|
|
|
#include "wx/range.h"
|
1999-07-23 17:03:02 -04:00
|
|
|
|
2009-07-23 16:30:22 -04:00
|
|
|
#define wxSPIN_BUTTON_NAME wxT("wxSpinButton")
|
2001-06-26 16:59:19 -04:00
|
|
|
|
1999-07-23 17:03:02 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// The wxSpinButton is like a small scrollbar than is often placed next
|
|
|
|
// to a text control.
|
|
|
|
//
|
|
|
|
// Styles:
|
|
|
|
// 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
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxSpinButtonBase : public wxControl
|
1999-07-23 17:03:02 -04:00
|
|
|
{
|
|
|
|
public:
|
2005-05-31 05:20:43 -04:00
|
|
|
// ctor initializes the range with the default (0..100) values
|
2003-10-30 18:08:39 -05:00
|
|
|
wxSpinButtonBase() { m_min = 0; m_max = 100; }
|
1999-07-23 17:03:02 -04:00
|
|
|
|
|
|
|
// accessors
|
|
|
|
virtual int GetValue() const = 0;
|
|
|
|
virtual int GetMin() const { return m_min; }
|
|
|
|
virtual int GetMax() const { return m_max; }
|
2011-01-07 12:42:39 -05:00
|
|
|
wxRange GetRange() const { return wxRange( GetMin(), GetMax() );}
|
1999-07-23 17:03:02 -04:00
|
|
|
|
|
|
|
// operations
|
|
|
|
virtual void SetValue(int val) = 0;
|
2003-08-14 13:59:34 -04:00
|
|
|
virtual void SetMin(int minVal) { SetRange ( minVal , m_max ) ; }
|
|
|
|
virtual void SetMax(int maxVal) { SetRange ( m_min , maxVal ) ; }
|
1999-07-23 17:03:02 -04:00
|
|
|
virtual void SetRange(int minVal, int maxVal)
|
|
|
|
{
|
|
|
|
m_min = minVal;
|
|
|
|
m_max = maxVal;
|
|
|
|
}
|
2011-01-07 12:42:39 -05:00
|
|
|
void SetRange( const wxRange& range) { SetRange( range.GetMin(), range.GetMax()); }
|
1999-07-23 17:03:02 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// is this spin button vertically oriented?
|
|
|
|
bool IsVertical() const { return (m_windowStyle & wxSP_VERTICAL) != 0; }
|
|
|
|
|
1999-07-23 17:03:02 -04:00
|
|
|
protected:
|
|
|
|
// the range value
|
|
|
|
int m_min;
|
|
|
|
int m_max;
|
2003-07-21 20:24:07 -04:00
|
|
|
|
2009-02-08 06:45:59 -05:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxSpinButtonBase);
|
1999-07-23 17:03:02 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// include the declaration of the real class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/spinbutt.h"
|
2005-12-19 05:55:11 -05:00
|
|
|
#elif defined(__WXMSW__)
|
1999-07-23 17:03:02 -04:00
|
|
|
#include "wx/msw/spinbutt.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXMOTIF__)
|
1999-07-23 17:03:02 -04:00
|
|
|
#include "wx/motif/spinbutt.h"
|
2006-01-22 22:27:34 -05:00
|
|
|
#elif defined(__WXGTK20__)
|
1999-07-23 17:03:02 -04:00
|
|
|
#include "wx/gtk/spinbutt.h"
|
2006-01-22 22:27:34 -05:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/spinbutt.h"
|
1998-08-14 20:23:28 -04:00
|
|
|
#elif defined(__WXMAC__)
|
2008-06-11 15:17:41 -04:00
|
|
|
#include "wx/osx/spinbutt.h"
|
2014-08-23 21:50:11 -04:00
|
|
|
#elif defined(__WXQT__)
|
|
|
|
#include "wx/qt/spinbutt.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
1999-07-23 17:03:02 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// the wxSpinButton event
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxSpinEvent : public wxNotifyEvent
|
1999-07-23 17:03:02 -04:00
|
|
|
{
|
|
|
|
public:
|
2003-08-11 11:14:37 -04:00
|
|
|
wxSpinEvent(wxEventType commandType = wxEVT_NULL, int winid = 0)
|
|
|
|
: wxNotifyEvent(commandType, winid)
|
1999-07-23 17:03:02 -04:00
|
|
|
{
|
|
|
|
}
|
1999-07-28 17:01:04 -04:00
|
|
|
|
2008-03-18 10:04:19 -04:00
|
|
|
wxSpinEvent(const wxSpinEvent& event) : wxNotifyEvent(event) {}
|
|
|
|
|
1999-07-28 17:01:04 -04:00
|
|
|
// get the current value of the control
|
2008-03-18 10:04:19 -04:00
|
|
|
int GetValue() const { return m_commandInt; }
|
|
|
|
void SetValue(int value) { m_commandInt = value; }
|
|
|
|
|
1999-07-28 17:01:04 -04:00
|
|
|
int GetPosition() const { return m_commandInt; }
|
|
|
|
void SetPosition(int pos) { m_commandInt = pos; }
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual wxEvent *Clone() const wxOVERRIDE { return new wxSpinEvent(*this); }
|
2008-03-18 10:04:19 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
private:
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSpinEvent);
|
1999-07-23 17:03:02 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef void (wxEvtHandler::*wxSpinEventFunction)(wxSpinEvent&);
|
|
|
|
|
2005-02-14 18:53:48 -05:00
|
|
|
#define wxSpinEventHandler(func) \
|
2009-01-12 09:26:13 -05:00
|
|
|
wxEVENT_HANDLER_CAST(wxSpinEventFunction, func)
|
2005-02-14 18:53:48 -05:00
|
|
|
|
2009-01-21 17:32:05 -05:00
|
|
|
// macros for handling spin events: notice that we must use the real values of
|
|
|
|
// the event type constants and not their references (wxEVT_SPIN[_UP/DOWN])
|
|
|
|
// here as otherwise the event tables could end up with non-initialized
|
|
|
|
// (because of undefined initialization order of the globals defined in
|
|
|
|
// different translation units) references in them
|
2003-08-11 11:14:37 -04:00
|
|
|
#define EVT_SPIN_UP(winid, func) \
|
2009-01-22 19:30:41 -05:00
|
|
|
wx__DECLARE_EVT1(wxEVT_SPIN_UP, winid, wxSpinEventHandler(func))
|
2003-08-11 11:14:37 -04:00
|
|
|
#define EVT_SPIN_DOWN(winid, func) \
|
2009-01-22 19:30:41 -05:00
|
|
|
wx__DECLARE_EVT1(wxEVT_SPIN_DOWN, winid, wxSpinEventHandler(func))
|
2003-08-11 11:14:37 -04:00
|
|
|
#define EVT_SPIN(winid, func) \
|
2009-01-22 19:30:41 -05:00
|
|
|
wx__DECLARE_EVT1(wxEVT_SPIN, winid, wxSpinEventHandler(func))
|
1999-07-23 17:03:02 -04:00
|
|
|
|
|
|
|
#endif // wxUSE_SPINBTN
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
1998-08-14 20:23:28 -04:00
|
|
|
// _WX_SPINBUTT_H_BASE_
|