2011-03-20 18:05:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: src/generic/spinctlg.cpp
|
|
|
|
// Purpose: implements wxSpinCtrl as a composite control
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 29.01.01
|
|
|
|
// Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// declarations
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/textctrl.h"
|
|
|
|
#endif //WX_PRECOMP
|
|
|
|
|
|
|
|
#include "wx/spinctrl.h"
|
|
|
|
#include "wx/tooltip.h"
|
|
|
|
|
|
|
|
#if wxUSE_SPINCTRL
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
wxIMPLEMENT_DYNAMIC_CLASS(wxSpinDoubleEvent, wxNotifyEvent);
|
2011-03-20 18:05:19 +00:00
|
|
|
|
|
|
|
// There are port-specific versions for the wxSpinCtrl, so exclude the
|
|
|
|
// contents of this file in those cases
|
|
|
|
#if !defined(wxHAS_NATIVE_SPINCTRL) || !defined(wxHAS_NATIVE_SPINCTRLDOUBLE)
|
|
|
|
|
|
|
|
#include "wx/spinbutt.h"
|
|
|
|
|
|
|
|
#if wxUSE_SPINBTN
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// The margin between the text control and the spin: the value here is the same
|
|
|
|
// as the margin between the spin button and its "buddy" text control in wxMSW
|
|
|
|
// so the generic control looks similarly to the native one there, we might
|
|
|
|
// need to use different value for the other platforms (and maybe even
|
|
|
|
// determine it dynamically?).
|
|
|
|
static const wxCoord MARGIN = 1;
|
|
|
|
|
|
|
|
#define SPINCTRLBUT_MAX 32000 // large to avoid wrap around trouble
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxSpinCtrlTextGeneric: text control used by spin control
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxSpinCtrlTextGeneric : public wxTextCtrl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxSpinCtrlTextGeneric(wxSpinCtrlGenericBase *spin, const wxString& value, long style=0)
|
2013-09-22 18:44:55 -04:00
|
|
|
: wxTextCtrl(spin, wxID_ANY, value, wxDefaultPosition, wxDefaultSize,
|
|
|
|
// This is tricky: we want to honour any alignment flags
|
|
|
|
// but not wxALIGN_CENTER_VERTICAL because it's the same
|
|
|
|
// as wxTE_PASSWORD and we definitely don't want to show
|
|
|
|
// asterisks in spin control.
|
|
|
|
style & (wxALIGN_MASK | wxTE_PROCESS_ENTER) & ~wxTE_PASSWORD)
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
m_spin = spin;
|
|
|
|
|
|
|
|
// remove the default minsize, the spinctrl will have one instead
|
|
|
|
SetSizeHints(wxDefaultCoord, wxDefaultCoord);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~wxSpinCtrlTextGeneric()
|
|
|
|
{
|
|
|
|
// MSW sends extra kill focus event on destroy
|
|
|
|
if (m_spin)
|
|
|
|
m_spin->m_textCtrl = NULL;
|
|
|
|
|
|
|
|
m_spin = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnChar( wxKeyEvent &event )
|
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
if ( !m_spin->ProcessWindowEvent(event) )
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnTextEvent(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
wxCommandEvent eventCopy(event);
|
|
|
|
eventCopy.SetEventObject(m_spin);
|
|
|
|
eventCopy.SetId(m_spin->GetId());
|
|
|
|
m_spin->ProcessWindowEvent(eventCopy);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OnKillFocus(wxFocusEvent& event)
|
|
|
|
{
|
|
|
|
if (m_spin)
|
2012-03-17 18:12:27 -07:00
|
|
|
m_spin->ProcessWindowEvent(event);
|
2011-03-20 18:05:19 +00:00
|
|
|
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSpinCtrlGenericBase *m_spin;
|
|
|
|
|
|
|
|
private:
|
2016-06-26 05:25:29 +00:00
|
|
|
wxDECLARE_EVENT_TABLE();
|
2011-03-20 18:05:19 +00:00
|
|
|
};
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
wxBEGIN_EVENT_TABLE(wxSpinCtrlTextGeneric, wxTextCtrl)
|
2011-03-20 18:05:19 +00:00
|
|
|
EVT_CHAR(wxSpinCtrlTextGeneric::OnChar)
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
// Forward the text events to wxSpinCtrl itself adjusting them slightly in
|
|
|
|
// the process.
|
|
|
|
EVT_TEXT(wxID_ANY, wxSpinCtrlTextGeneric::OnTextEvent)
|
|
|
|
|
|
|
|
// And we need to forward this one too as wxSpinCtrl is supposed to
|
|
|
|
// generate it if wxTE_PROCESS_ENTER is used with it (and if it isn't,
|
|
|
|
// we're never going to get EVT_TEXT_ENTER in the first place).
|
|
|
|
EVT_TEXT_ENTER(wxID_ANY, wxSpinCtrlTextGeneric::OnTextEvent)
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
EVT_KILL_FOCUS(wxSpinCtrlTextGeneric::OnKillFocus)
|
2016-06-26 05:25:29 +00:00
|
|
|
wxEND_EVENT_TABLE()
|
2011-03-20 18:05:19 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxSpinCtrlButtonGeneric: spin button used by spin control
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxSpinCtrlButtonGeneric : public wxSpinButton
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxSpinCtrlButtonGeneric(wxSpinCtrlGenericBase *spin, int style)
|
2013-09-22 18:44:55 -04:00
|
|
|
: wxSpinButton(spin, wxID_ANY, wxDefaultPosition,
|
2011-03-20 18:05:19 +00:00
|
|
|
wxDefaultSize, style | wxSP_VERTICAL)
|
|
|
|
{
|
|
|
|
m_spin = spin;
|
|
|
|
|
|
|
|
SetRange(-SPINCTRLBUT_MAX, SPINCTRLBUT_MAX);
|
|
|
|
|
|
|
|
// remove the default minsize, the spinctrl will have one instead
|
|
|
|
SetSizeHints(wxDefaultCoord, wxDefaultCoord);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnSpinButton(wxSpinEvent& event)
|
|
|
|
{
|
|
|
|
if (m_spin)
|
|
|
|
m_spin->OnSpinButton(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSpinCtrlGenericBase *m_spin;
|
|
|
|
|
|
|
|
private:
|
2016-06-26 05:25:29 +00:00
|
|
|
wxDECLARE_EVENT_TABLE();
|
2011-03-20 18:05:19 +00:00
|
|
|
};
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
wxBEGIN_EVENT_TABLE(wxSpinCtrlButtonGeneric, wxSpinButton)
|
2011-03-20 18:05:19 +00:00
|
|
|
EVT_SPIN_UP( wxID_ANY, wxSpinCtrlButtonGeneric::OnSpinButton)
|
|
|
|
EVT_SPIN_DOWN(wxID_ANY, wxSpinCtrlButtonGeneric::OnSpinButton)
|
2016-06-26 05:25:29 +00:00
|
|
|
wxEND_EVENT_TABLE()
|
2011-03-20 18:05:19 +00:00
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// wxSpinCtrlGenericBase
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxSpinCtrlGenericBase creation
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void wxSpinCtrlGenericBase::Init()
|
|
|
|
{
|
|
|
|
m_value = 0;
|
|
|
|
m_min = 0;
|
|
|
|
m_max = 100;
|
|
|
|
m_increment = 1;
|
|
|
|
m_snap_to_ticks = false;
|
|
|
|
|
|
|
|
m_spin_value = 0;
|
|
|
|
|
|
|
|
m_textCtrl = NULL;
|
|
|
|
m_spinButton = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wxSpinCtrlGenericBase::Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& value,
|
|
|
|
const wxPoint& pos, const wxSize& size,
|
|
|
|
long style,
|
|
|
|
double min, double max, double initial,
|
|
|
|
double increment,
|
|
|
|
const wxString& name)
|
|
|
|
{
|
|
|
|
// don't use borders for this control itself, it wouldn't look good with
|
|
|
|
// the text control borders (but we might want to use style border bits to
|
|
|
|
// select the text control style)
|
|
|
|
if ( !wxControl::Create(parent, id, wxDefaultPosition, wxDefaultSize,
|
|
|
|
(style & ~wxBORDER_MASK) | wxBORDER_NONE,
|
|
|
|
wxDefaultValidator, name) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_value = initial;
|
|
|
|
m_min = min;
|
|
|
|
m_max = max;
|
|
|
|
m_increment = increment;
|
|
|
|
|
|
|
|
// the string value overrides the numeric one (for backwards compatibility
|
2016-06-26 05:25:29 +00:00
|
|
|
// reasons and also because it is simpler to specify the string value which
|
2011-03-20 18:05:19 +00:00
|
|
|
// comes much sooner in the list of arguments and leave the initial
|
|
|
|
// parameter unspecified)
|
|
|
|
if ( !value.empty() )
|
|
|
|
{
|
|
|
|
double d;
|
2013-09-22 18:44:55 -04:00
|
|
|
if ( DoTextToValue(value, &d) )
|
2011-03-20 18:05:19 +00:00
|
|
|
m_value = d;
|
|
|
|
}
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
m_textCtrl = new wxSpinCtrlTextGeneric(this, DoValueToText(m_value), style);
|
|
|
|
m_spinButton = new wxSpinCtrlButtonGeneric(this, style);
|
|
|
|
|
|
|
|
#if wxUSE_TOOLTIPS
|
|
|
|
m_textCtrl->SetToolTip(GetToolTipText());
|
|
|
|
m_spinButton->SetToolTip(GetToolTipText());
|
|
|
|
#endif // wxUSE_TOOLTIPS
|
|
|
|
|
|
|
|
m_spin_value = m_spinButton->GetValue();
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
SetInitialSize(size);
|
|
|
|
Move(pos);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSpinCtrlGenericBase::~wxSpinCtrlGenericBase()
|
|
|
|
{
|
|
|
|
// delete the controls now, don't leave them alive even though they would
|
|
|
|
// still be eventually deleted by our parent - but it will be too late, the
|
|
|
|
// user code expects them to be gone now
|
|
|
|
|
|
|
|
if (m_textCtrl)
|
|
|
|
{
|
|
|
|
// null this since MSW sends KILL_FOCUS on deletion, see ~wxSpinCtrlTextGeneric
|
|
|
|
wxDynamicCast(m_textCtrl, wxSpinCtrlTextGeneric)->m_spin = NULL;
|
|
|
|
|
|
|
|
wxSpinCtrlTextGeneric *text = (wxSpinCtrlTextGeneric*)m_textCtrl;
|
|
|
|
m_textCtrl = NULL;
|
|
|
|
delete text;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxDELETE(m_spinButton);
|
|
|
|
}
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
wxWindowList wxSpinCtrlGenericBase::GetCompositeWindowParts() const
|
|
|
|
{
|
|
|
|
wxWindowList parts;
|
|
|
|
parts.push_back(m_textCtrl);
|
|
|
|
parts.push_back(m_spinButton);
|
|
|
|
return parts;
|
|
|
|
}
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// geometry
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
wxSize wxSpinCtrlGenericBase::DoGetBestSize() const
|
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
return DoGetSizeFromTextSize(m_textCtrl->GetBestSize().x, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSize wxSpinCtrlGenericBase::DoGetSizeFromTextSize(int xlen, int ylen) const
|
|
|
|
{
|
|
|
|
wxSize sizeBtn = m_spinButton->GetBestSize();
|
|
|
|
wxSize totalS( m_textCtrl->GetBestSize() );
|
2011-03-20 18:05:19 +00:00
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
wxSize tsize(xlen + sizeBtn.x + MARGIN, totalS.y);
|
|
|
|
#if defined(__WXMSW__)
|
|
|
|
tsize.IncBy(4*totalS.y/10 + 4, 0);
|
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
tsize.IncBy(totalS.y + 10, 0);
|
|
|
|
#endif // MSW GTK
|
|
|
|
|
|
|
|
// Check if the user requested a non-standard height.
|
|
|
|
if ( ylen > 0 )
|
|
|
|
tsize.IncBy(0, ylen - GetCharHeight());
|
|
|
|
|
|
|
|
return tsize;
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void wxSpinCtrlGenericBase::DoMoveWindow(int x, int y, int width, int height)
|
|
|
|
{
|
|
|
|
wxControl::DoMoveWindow(x, y, width, height);
|
|
|
|
|
|
|
|
// position the subcontrols inside the client area
|
|
|
|
wxSize sizeBtn = m_spinButton->GetSize();
|
|
|
|
|
|
|
|
wxCoord wText = width - sizeBtn.x - MARGIN;
|
2013-09-22 18:44:55 -04:00
|
|
|
m_textCtrl->SetSize(0, 0, wText, height);
|
|
|
|
m_spinButton->SetSize(0 + wText + MARGIN, 0, wxDefaultCoord, height);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// operations forwarded to the subcontrols
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void wxSpinCtrlGenericBase::SetFocus()
|
|
|
|
{
|
|
|
|
if ( m_textCtrl )
|
|
|
|
m_textCtrl->SetFocus();
|
|
|
|
}
|
|
|
|
|
2012-03-17 18:12:27 -07:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
|
|
|
|
void wxSpinCtrlGenericBase::DoEnable(bool enable)
|
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
wxSpinCtrlBase::DoEnable(enable);
|
2012-03-17 18:12:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __WXMSW__
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
bool wxSpinCtrlGenericBase::Enable(bool enable)
|
|
|
|
{
|
2012-03-17 18:12:27 -07:00
|
|
|
if ( !wxSpinCtrlBase::Enable(enable) )
|
2011-03-20 18:05:19 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
m_spinButton->Enable(enable);
|
|
|
|
m_textCtrl->Enable(enable);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wxSpinCtrlGenericBase::Show(bool show)
|
|
|
|
{
|
|
|
|
if ( !wxControl::Show(show) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// under GTK Show() is called the first time before we are fully
|
|
|
|
// constructed
|
|
|
|
if ( m_spinButton )
|
|
|
|
{
|
|
|
|
m_spinButton->Show(show);
|
|
|
|
m_textCtrl->Show(show);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
bool wxSpinCtrlGenericBase::SetBackgroundColour(const wxColour& colour)
|
|
|
|
{
|
|
|
|
// We need to provide this otherwise the entire composite window
|
|
|
|
// background and therefore the between component spaces
|
|
|
|
// will be changed.
|
|
|
|
if ( m_textCtrl )
|
|
|
|
return m_textCtrl->SetBackgroundColour(colour);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Handle sub controls events
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
wxBEGIN_EVENT_TABLE(wxSpinCtrlGenericBase, wxSpinCtrlBase)
|
2012-03-17 18:12:27 -07:00
|
|
|
EVT_CHAR(wxSpinCtrlGenericBase::OnTextChar)
|
|
|
|
EVT_KILL_FOCUS(wxSpinCtrlGenericBase::OnTextLostFocus)
|
2016-06-26 05:25:29 +00:00
|
|
|
wxEND_EVENT_TABLE()
|
2012-03-17 18:12:27 -07:00
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
void wxSpinCtrlGenericBase::OnSpinButton(wxSpinEvent& event)
|
|
|
|
{
|
|
|
|
event.Skip();
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
// Pressing the spin button should also give the focus to the text part of
|
|
|
|
// the control, at least this is how the native control behaves under MSW.
|
|
|
|
SetFocus();
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
// Sync the textctrl since the user expects that the button will modify
|
|
|
|
// what they see in the textctrl.
|
2013-09-22 18:44:55 -04:00
|
|
|
SyncSpinToText(SendEvent_None);
|
2011-03-20 18:05:19 +00:00
|
|
|
|
|
|
|
int spin_value = event.GetPosition();
|
|
|
|
double step = (event.GetEventType() == wxEVT_SCROLL_LINEUP) ? 1 : -1;
|
|
|
|
|
|
|
|
// Use the spinbutton's acceleration, if any, but not if wrapping around
|
|
|
|
if (((spin_value >= 0) && (m_spin_value >= 0)) || ((spin_value <= 0) && (m_spin_value <= 0)))
|
|
|
|
step *= abs(spin_value - m_spin_value);
|
|
|
|
|
|
|
|
double value = AdjustToFitInRange(m_value + step*m_increment);
|
|
|
|
|
|
|
|
// Ignore the edges when it wraps since the up/down event may be opposite
|
|
|
|
// They are in GTK and Mac
|
|
|
|
if (abs(spin_value - m_spin_value) > SPINCTRLBUT_MAX)
|
|
|
|
{
|
|
|
|
m_spin_value = spin_value;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_spin_value = spin_value;
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
// Notify about the change in wxTextCtrl too.
|
|
|
|
if ( DoSetValue(value, SendEvent_Text) )
|
2011-03-20 18:05:19 +00:00
|
|
|
DoSendEvent();
|
|
|
|
}
|
|
|
|
|
2012-03-17 18:12:27 -07:00
|
|
|
void wxSpinCtrlGenericBase::OnTextLostFocus(wxFocusEvent& event)
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
SyncSpinToText(SendEvent_Text);
|
2011-03-20 18:05:19 +00:00
|
|
|
DoSendEvent();
|
2012-03-17 18:12:27 -07:00
|
|
|
|
|
|
|
event.Skip();
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void wxSpinCtrlGenericBase::OnTextChar(wxKeyEvent& event)
|
|
|
|
{
|
|
|
|
if ( !HasFlag(wxSP_ARROW_KEYS) )
|
|
|
|
{
|
|
|
|
event.Skip();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
double value = m_value;
|
|
|
|
switch ( event.GetKeyCode() )
|
|
|
|
{
|
|
|
|
case WXK_UP :
|
|
|
|
value += m_increment;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WXK_DOWN :
|
|
|
|
value -= m_increment;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WXK_PAGEUP :
|
|
|
|
value += m_increment * 10.0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WXK_PAGEDOWN :
|
|
|
|
value -= m_increment * 10.0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
event.Skip();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
value = AdjustToFitInRange(value);
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
SyncSpinToText(SendEvent_None);
|
2011-03-20 18:05:19 +00:00
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
// No need to send event, it was already generated by wxTextCtrl itself.
|
|
|
|
if ( DoSetValue(value, SendEvent_None) )
|
2011-03-20 18:05:19 +00:00
|
|
|
DoSendEvent();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Textctrl functions
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
bool wxSpinCtrlGenericBase::SyncSpinToText(SendEvent sendEvent)
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
if ( !m_textCtrl || !m_textCtrl->IsModified() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
double textValue;
|
2013-09-22 18:44:55 -04:00
|
|
|
if ( DoTextToValue(m_textCtrl->GetValue(), &textValue) )
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
if (textValue > m_max)
|
|
|
|
textValue = m_max;
|
|
|
|
else if (textValue < m_min)
|
|
|
|
textValue = m_min;
|
|
|
|
}
|
|
|
|
else // text contents is not a valid number at all
|
|
|
|
{
|
|
|
|
// replace its contents with the last valid value
|
|
|
|
textValue = m_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we must always set the value here, even if it's equal to m_value, as
|
|
|
|
// otherwise we could be left with an out of range value when leaving the
|
|
|
|
// text control and the current value is already m_max for example
|
2013-09-22 18:44:55 -04:00
|
|
|
return DoSetValue(textValue, sendEvent);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// changing value and range
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void wxSpinCtrlGenericBase::SetValue(const wxString& text)
|
|
|
|
{
|
|
|
|
wxCHECK_RET( m_textCtrl, wxT("invalid call to wxSpinCtrl::SetValue") );
|
|
|
|
|
|
|
|
double val;
|
2013-09-22 18:44:55 -04:00
|
|
|
if ( DoTextToValue(text, &val) && InRange(val) )
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
DoSetValue(val, SendEvent_None);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
else // not a number at all or out of range
|
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
m_textCtrl->ChangeValue(text);
|
|
|
|
m_textCtrl->SelectAll();
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
bool wxSpinCtrlGenericBase::DoSetValue(double val, SendEvent sendEvent)
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
wxCHECK_MSG( m_textCtrl, false, wxT("invalid call to wxSpinCtrl::SetValue") );
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
if ( val < m_min )
|
|
|
|
val = m_min;
|
|
|
|
if ( val > m_max )
|
|
|
|
val = m_max;
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
if ( m_snap_to_ticks && (m_increment != 0) )
|
|
|
|
{
|
|
|
|
double snap_value = val / m_increment;
|
|
|
|
|
|
|
|
if (wxFinite(snap_value)) // FIXME what to do about a failure?
|
|
|
|
{
|
|
|
|
if ((snap_value - floor(snap_value)) < (ceil(snap_value) - snap_value))
|
|
|
|
val = floor(snap_value) * m_increment;
|
|
|
|
else
|
|
|
|
val = ceil(snap_value) * m_increment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
wxString str(DoValueToText(val));
|
2011-03-20 18:05:19 +00:00
|
|
|
|
|
|
|
if ((val != m_value) || (str != m_textCtrl->GetValue()))
|
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
if ( !DoTextToValue(str, &m_value ) ) // wysiwyg for textctrl
|
|
|
|
m_value = val;
|
|
|
|
|
|
|
|
switch ( sendEvent )
|
|
|
|
{
|
|
|
|
case SendEvent_None:
|
|
|
|
m_textCtrl->ChangeValue(str);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SendEvent_Text:
|
|
|
|
m_textCtrl->SetValue(str);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_textCtrl->SelectAll();
|
2011-03-20 18:05:19 +00:00
|
|
|
m_textCtrl->DiscardEdits();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
double wxSpinCtrlGenericBase::AdjustToFitInRange(double value) const
|
|
|
|
{
|
|
|
|
if (value < m_min)
|
|
|
|
value = HasFlag(wxSP_WRAP) ? m_max : m_min;
|
|
|
|
if (value > m_max)
|
|
|
|
value = HasFlag(wxSP_WRAP) ? m_min : m_max;
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void wxSpinCtrlGenericBase::DoSetRange(double min, double max)
|
|
|
|
{
|
|
|
|
m_min = min;
|
2013-09-22 18:44:55 -04:00
|
|
|
if ( m_value < m_min )
|
|
|
|
DoSetValue(m_min, SendEvent_None);
|
2011-03-20 18:05:19 +00:00
|
|
|
m_max = max;
|
2013-09-22 18:44:55 -04:00
|
|
|
if ( m_value > m_max )
|
|
|
|
DoSetValue(m_max, SendEvent_None);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void wxSpinCtrlGenericBase::DoSetIncrement(double inc)
|
|
|
|
{
|
|
|
|
m_increment = inc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void wxSpinCtrlGenericBase::SetSnapToTicks(bool snap_to_ticks)
|
|
|
|
{
|
|
|
|
m_snap_to_ticks = snap_to_ticks;
|
2013-09-22 18:44:55 -04:00
|
|
|
DoSetValue(m_value, SendEvent_None);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void wxSpinCtrlGenericBase::SetSelection(long from, long to)
|
|
|
|
{
|
|
|
|
wxCHECK_RET( m_textCtrl, wxT("invalid call to wxSpinCtrl::SetSelection") );
|
|
|
|
|
|
|
|
m_textCtrl->SetSelection(from, to);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef wxHAS_NATIVE_SPINCTRL
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxSpinCtrl
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
bool wxSpinCtrl::SetBase(int base)
|
|
|
|
{
|
|
|
|
// Currently we only support base 10 and 16. We could add support for base
|
|
|
|
// 8 quite easily but wxMSW doesn't support it natively so don't bother.
|
|
|
|
if ( base != 10 && base != 16 )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ( base == m_base )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Update the current control contents to show in the new base: be careful
|
|
|
|
// to call DoTextToValue() before changing the base...
|
|
|
|
double val;
|
|
|
|
const bool hasValidVal = DoTextToValue(m_textCtrl->GetValue(), &val);
|
|
|
|
|
|
|
|
m_base = base;
|
|
|
|
|
|
|
|
// ... but DoValueToText() after doing it.
|
|
|
|
if ( hasValidVal )
|
|
|
|
m_textCtrl->ChangeValue(DoValueToText(val));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
void wxSpinCtrl::DoSendEvent()
|
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
wxSpinEvent event( wxEVT_SPINCTRL, GetId());
|
2011-03-20 18:05:19 +00:00
|
|
|
event.SetEventObject( this );
|
|
|
|
event.SetPosition((int)(m_value + 0.5)); // FIXME should be SetValue
|
|
|
|
event.SetString(m_textCtrl->GetValue());
|
|
|
|
GetEventHandler()->ProcessEvent( event );
|
|
|
|
}
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
bool wxSpinCtrl::DoTextToValue(const wxString& text, double *val)
|
|
|
|
{
|
|
|
|
long lval;
|
|
|
|
if ( !text.ToLong(&lval, GetBase()) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*val = static_cast<double>(lval);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxString wxSpinCtrl::DoValueToText(double val)
|
|
|
|
{
|
|
|
|
switch ( GetBase() )
|
|
|
|
{
|
|
|
|
case 16:
|
|
|
|
return wxPrivate::wxSpinCtrlFormatAsHex(static_cast<long>(val),
|
|
|
|
GetMax());
|
|
|
|
|
|
|
|
default:
|
|
|
|
wxFAIL_MSG( wxS("Unsupported spin control base") );
|
2016-06-26 05:25:29 +00:00
|
|
|
wxFALLTHROUGH;
|
2013-09-22 18:44:55 -04:00
|
|
|
|
|
|
|
case 10:
|
|
|
|
return wxString::Format("%ld", static_cast<long>(val));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
#endif // !wxHAS_NATIVE_SPINCTRL
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxSpinCtrlDouble
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
wxIMPLEMENT_DYNAMIC_CLASS(wxSpinCtrlDouble, wxSpinCtrlGenericBase);
|
2011-03-20 18:05:19 +00:00
|
|
|
|
|
|
|
void wxSpinCtrlDouble::DoSendEvent()
|
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
wxSpinDoubleEvent event( wxEVT_SPINCTRLDOUBLE, GetId());
|
2011-03-20 18:05:19 +00:00
|
|
|
event.SetEventObject( this );
|
|
|
|
event.SetValue(m_value);
|
|
|
|
event.SetString(m_textCtrl->GetValue());
|
|
|
|
GetEventHandler()->ProcessEvent( event );
|
|
|
|
}
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
bool wxSpinCtrlDouble::DoTextToValue(const wxString& text, double *val)
|
|
|
|
{
|
|
|
|
return text.ToDouble(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
wxString wxSpinCtrlDouble::DoValueToText(double val)
|
|
|
|
{
|
|
|
|
return wxString::Format(m_format, val);
|
|
|
|
}
|
|
|
|
|
2011-03-20 18:05:19 +00:00
|
|
|
void wxSpinCtrlDouble::SetDigits(unsigned digits)
|
|
|
|
{
|
|
|
|
wxCHECK_RET( digits <= 20, "too many digits for wxSpinCtrlDouble" );
|
|
|
|
|
|
|
|
if ( digits == m_digits )
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_digits = digits;
|
|
|
|
|
|
|
|
m_format.Printf(wxT("%%0.%ulf"), digits);
|
|
|
|
|
2013-09-22 18:44:55 -04:00
|
|
|
DoSetValue(m_value, SendEvent_None);
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // wxUSE_SPINBTN
|
|
|
|
|
|
|
|
#endif // !wxPort-with-native-spinctrl
|
|
|
|
|
|
|
|
#endif // wxUSE_SPINCTRL
|