git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62574 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
376 lines
11 KiB
C++
376 lines
11 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/gtk/spinbutt.cpp
|
|
// Purpose: wxSpinCtrl
|
|
// Author: Robert
|
|
// Modified by:
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) Robert Roebling
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#if wxUSE_SPINCTRL
|
|
|
|
#include "wx/spinctrl.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/textctrl.h" // for wxEVT_COMMAND_TEXT_UPDATED
|
|
#include "wx/utils.h"
|
|
#include "wx/wxcrtvararg.h"
|
|
#endif
|
|
|
|
#include "wx/gtk/private.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// data
|
|
//-----------------------------------------------------------------------------
|
|
|
|
extern bool g_blockEventsOnDrag;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// "value_changed"
|
|
//-----------------------------------------------------------------------------
|
|
|
|
extern "C" {
|
|
static void
|
|
gtk_value_changed(GtkSpinButton* spinbutton, wxSpinCtrlGTKBase* win)
|
|
{
|
|
if (!win->m_hasVMT || g_blockEventsOnDrag)
|
|
return;
|
|
|
|
if (wxIsKindOf(win, wxSpinCtrl))
|
|
{
|
|
wxSpinEvent event(wxEVT_COMMAND_SPINCTRL_UPDATED, win->GetId());
|
|
event.SetEventObject( win );
|
|
event.SetPosition(static_cast<wxSpinCtrl*>(win)->GetValue());
|
|
event.SetString(gtk_entry_get_text(GTK_ENTRY(spinbutton)));
|
|
win->HandleWindowEvent( event );
|
|
}
|
|
else // wxIsKindOf(win, wxSpinCtrlDouble)
|
|
{
|
|
wxSpinDoubleEvent event( wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED, win->GetId());
|
|
event.SetEventObject( win );
|
|
event.SetValue(static_cast<wxSpinCtrlDouble*>(win)->GetValue());
|
|
event.SetString(gtk_entry_get_text(GTK_ENTRY(spinbutton)));
|
|
win->HandleWindowEvent( event );
|
|
}
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// "changed"
|
|
//-----------------------------------------------------------------------------
|
|
|
|
extern "C" {
|
|
static void
|
|
gtk_changed(GtkSpinButton* spinbutton, wxSpinCtrl* win)
|
|
{
|
|
if (!win->m_hasVMT)
|
|
return;
|
|
|
|
wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() );
|
|
event.SetEventObject( win );
|
|
event.SetString(gtk_entry_get_text(GTK_ENTRY(spinbutton)));
|
|
event.SetInt(win->GetValue());
|
|
win->HandleWindowEvent( event );
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// wxSpinCtrlGTKBase
|
|
//-----------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrlGTKBase, wxSpinCtrlBase)
|
|
|
|
BEGIN_EVENT_TABLE(wxSpinCtrlGTKBase, wxSpinCtrlBase)
|
|
EVT_CHAR(wxSpinCtrlGTKBase::OnChar)
|
|
END_EVENT_TABLE()
|
|
|
|
bool wxSpinCtrlGTKBase::Create(wxWindow *parent, wxWindowID id,
|
|
const wxString& value,
|
|
const wxPoint& pos, const wxSize& size,
|
|
long style,
|
|
double min, double max, double initial, double inc,
|
|
const wxString& name)
|
|
{
|
|
if (!PreCreation( parent, pos, size ) ||
|
|
!CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
|
|
{
|
|
wxFAIL_MSG( wxT("wxSpinCtrlGTKBase creation failed") );
|
|
return false;
|
|
}
|
|
|
|
m_widget = gtk_spin_button_new_with_range(min, max, inc);
|
|
g_object_ref(m_widget);
|
|
|
|
gtk_spin_button_set_value( GTK_SPIN_BUTTON(m_widget), initial);
|
|
|
|
gfloat align;
|
|
if ( HasFlag(wxALIGN_RIGHT) )
|
|
align = 1.0;
|
|
else if ( HasFlag(wxALIGN_CENTRE) )
|
|
align = 0.5;
|
|
else
|
|
align = 0.0;
|
|
|
|
gtk_entry_set_alignment(GTK_ENTRY(m_widget), align);
|
|
|
|
gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget),
|
|
(int)(m_windowStyle & wxSP_WRAP) );
|
|
|
|
g_signal_connect_after(m_widget, "value_changed", G_CALLBACK(gtk_value_changed), this);
|
|
g_signal_connect_after(m_widget, "changed", G_CALLBACK(gtk_changed), this);
|
|
|
|
m_parent->DoAddChild( this );
|
|
|
|
PostCreation(size);
|
|
|
|
if (!value.empty())
|
|
{
|
|
SetValue(value);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
double wxSpinCtrlGTKBase::DoGetValue() const
|
|
{
|
|
wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
|
|
|
|
// Get value directly from current control text, just as
|
|
// gtk_spin_button_update() would do. Calling gtk_spin_button_update() causes
|
|
// a redraw, which causes an idle event, so if GetValue() is called from
|
|
// a UI update handler, you get a never ending sequence of idle events. It
|
|
// also forces the text into valid range, which wxMSW GetValue() does not do.
|
|
static unsigned sig_id;
|
|
if (sig_id == 0)
|
|
sig_id = g_signal_lookup("input", GTK_TYPE_SPIN_BUTTON);
|
|
double value;
|
|
int handled = 0;
|
|
g_signal_emit(m_widget, sig_id, 0, &value, &handled);
|
|
if (!handled)
|
|
value = g_strtod(gtk_entry_get_text(GTK_ENTRY(m_widget)), NULL);
|
|
const GtkAdjustment* adj =
|
|
gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(m_widget));
|
|
if (value < adj->lower)
|
|
value = adj->lower;
|
|
else if (value > adj->upper)
|
|
value = adj->upper;
|
|
|
|
return value;
|
|
}
|
|
|
|
double wxSpinCtrlGTKBase::DoGetMin() const
|
|
{
|
|
wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
|
|
|
|
double min = 0;
|
|
gtk_spin_button_get_range( GTK_SPIN_BUTTON(m_widget), &min, NULL);
|
|
return min;
|
|
}
|
|
|
|
double wxSpinCtrlGTKBase::DoGetMax() const
|
|
{
|
|
wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
|
|
|
|
double max = 0;
|
|
gtk_spin_button_get_range( GTK_SPIN_BUTTON(m_widget), NULL, &max);
|
|
return max;
|
|
}
|
|
|
|
double wxSpinCtrlGTKBase::DoGetIncrement() const
|
|
{
|
|
wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") );
|
|
|
|
double inc = 0;
|
|
gtk_spin_button_get_increments( GTK_SPIN_BUTTON(m_widget), NULL, &inc);
|
|
return inc;
|
|
}
|
|
|
|
bool wxSpinCtrlGTKBase::GetSnapToTicks() const
|
|
{
|
|
wxCHECK_MSG(m_widget, false, "invalid spin button");
|
|
|
|
return gtk_spin_button_get_snap_to_ticks( GTK_SPIN_BUTTON(m_widget) );
|
|
}
|
|
|
|
void wxSpinCtrlGTKBase::SetValue( const wxString& value )
|
|
{
|
|
wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") );
|
|
|
|
double n;
|
|
if ( wxSscanf(value, "%lg", &n) == 1 )
|
|
{
|
|
// a number - set it, let DoSetValue round for int value
|
|
DoSetValue(n);
|
|
return;
|
|
}
|
|
|
|
// invalid number - set text as is (wxMSW compatible)
|
|
GtkDisableEvents();
|
|
gtk_entry_set_text( GTK_ENTRY(m_widget), wxGTK_CONV( value ) );
|
|
GtkEnableEvents();
|
|
}
|
|
|
|
void wxSpinCtrlGTKBase::DoSetValue( double value )
|
|
{
|
|
wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") );
|
|
|
|
if (wxIsKindOf(this, wxSpinCtrl))
|
|
value = wxRound( value );
|
|
|
|
GtkDisableEvents();
|
|
gtk_spin_button_set_value( GTK_SPIN_BUTTON(m_widget), value);
|
|
GtkEnableEvents();
|
|
}
|
|
|
|
void wxSpinCtrlGTKBase::SetSnapToTicks(bool snap_to_ticks)
|
|
{
|
|
wxCHECK_RET( (m_widget != NULL), "invalid spin button" );
|
|
|
|
gtk_spin_button_set_snap_to_ticks( GTK_SPIN_BUTTON(m_widget), snap_to_ticks);
|
|
}
|
|
|
|
void wxSpinCtrlGTKBase::SetSelection(long from, long to)
|
|
{
|
|
// translate from wxWidgets conventions to GTK+ ones: (-1, -1) means the
|
|
// entire range
|
|
if ( from == -1 && to == -1 )
|
|
{
|
|
from = 0;
|
|
to = INT_MAX;
|
|
}
|
|
|
|
gtk_editable_select_region( GTK_EDITABLE(m_widget), (gint)from, (gint)to );
|
|
}
|
|
|
|
void wxSpinCtrlGTKBase::DoSetRange(double minVal, double maxVal)
|
|
{
|
|
wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") );
|
|
|
|
GtkDisableEvents();
|
|
gtk_spin_button_set_range( GTK_SPIN_BUTTON(m_widget), minVal, maxVal);
|
|
GtkEnableEvents();
|
|
}
|
|
|
|
void wxSpinCtrlGTKBase::DoSetIncrement(double inc)
|
|
{
|
|
wxCHECK_RET( m_widget, "invalid spin button" );
|
|
|
|
GtkDisableEvents();
|
|
gtk_spin_button_set_increments( GTK_SPIN_BUTTON(m_widget), inc, 10*inc);
|
|
GtkEnableEvents();
|
|
}
|
|
|
|
void wxSpinCtrlGTKBase::GtkDisableEvents() const
|
|
{
|
|
g_signal_handlers_block_by_func( m_widget,
|
|
(gpointer)gtk_value_changed, (void*) this);
|
|
|
|
g_signal_handlers_block_by_func(m_widget,
|
|
(gpointer)gtk_changed, (void*) this);
|
|
}
|
|
|
|
void wxSpinCtrlGTKBase::GtkEnableEvents() const
|
|
{
|
|
g_signal_handlers_unblock_by_func(m_widget,
|
|
(gpointer)gtk_value_changed, (void*) this);
|
|
|
|
g_signal_handlers_unblock_by_func(m_widget,
|
|
(gpointer)gtk_changed, (void*) this);
|
|
}
|
|
|
|
void wxSpinCtrlGTKBase::OnChar( wxKeyEvent &event )
|
|
{
|
|
wxCHECK_RET( m_widget != NULL, wxT("invalid spin ctrl") );
|
|
|
|
if (event.GetKeyCode() == WXK_RETURN)
|
|
{
|
|
wxWindow *top_frame = wxGetTopLevelParent(m_parent);
|
|
|
|
if ( GTK_IS_WINDOW(top_frame->m_widget) )
|
|
{
|
|
GtkWindow *window = GTK_WINDOW(top_frame->m_widget);
|
|
if ( window )
|
|
{
|
|
GtkWidget *widgetDef = window->default_widget;
|
|
|
|
if ( widgetDef )
|
|
{
|
|
gtk_widget_activate(widgetDef);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ((event.GetKeyCode() == WXK_RETURN) && (m_windowStyle & wxTE_PROCESS_ENTER))
|
|
{
|
|
wxCommandEvent evt( wxEVT_COMMAND_TEXT_ENTER, m_windowId );
|
|
evt.SetEventObject(this);
|
|
GtkSpinButton *gsb = GTK_SPIN_BUTTON(m_widget);
|
|
wxString val = wxGTK_CONV_BACK( gtk_entry_get_text( &gsb->entry ) );
|
|
evt.SetString( val );
|
|
if (HandleWindowEvent(evt)) return;
|
|
}
|
|
|
|
event.Skip();
|
|
}
|
|
|
|
GdkWindow *wxSpinCtrlGTKBase::GTKGetWindow(wxArrayGdkWindows& windows) const
|
|
{
|
|
GtkSpinButton* spinbutton = GTK_SPIN_BUTTON(m_widget);
|
|
|
|
windows.push_back(spinbutton->entry.text_area);
|
|
windows.push_back(spinbutton->panel);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
wxSize wxSpinCtrlGTKBase::DoGetBestSize() const
|
|
{
|
|
wxSize ret( wxControl::DoGetBestSize() );
|
|
wxSize best(95, ret.y); // FIXME: 95?
|
|
CacheBestSize(best);
|
|
return best;
|
|
}
|
|
|
|
// static
|
|
wxVisualAttributes
|
|
wxSpinCtrlGTKBase::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
|
|
{
|
|
// TODO: overload to accept functions like gtk_spin_button_new?
|
|
// Until then use a similar type
|
|
return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// wxSpinCtrl
|
|
//-----------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl, wxSpinCtrlGTKBase)
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// wxSpinCtrlDouble
|
|
//-----------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrlDouble, wxSpinCtrlGTKBase)
|
|
|
|
unsigned wxSpinCtrlDouble::GetDigits() const
|
|
{
|
|
wxCHECK_MSG( m_widget, 0, "invalid spin button" );
|
|
|
|
return gtk_spin_button_get_digits( GTK_SPIN_BUTTON(m_widget) );
|
|
}
|
|
|
|
void wxSpinCtrlDouble::SetDigits(unsigned digits)
|
|
{
|
|
wxCHECK_RET( m_widget, "invalid spin button" );
|
|
|
|
gtk_spin_button_set_digits( GTK_SPIN_BUTTON(m_widget), digits);
|
|
}
|
|
|
|
#endif // wxUSE_SPINCTRL
|