X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ce89fdd22ecbaf29569e70733d76c8f1eaca391e..482d06f8b5917f9ba0bf1b5623a70262220aed52:/src/gtk/spinctrl.cpp diff --git a/src/gtk/spinctrl.cpp b/src/gtk/spinctrl.cpp index 7b40f4ccbe..cb2d02f4f7 100644 --- a/src/gtk/spinctrl.cpp +++ b/src/gtk/spinctrl.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: spinbutt.cpp +// Name: src/gtk/spinbutt.cpp // Purpose: wxSpinCtrl // Author: Robert // Modified by: @@ -8,27 +8,20 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "spinctrl.h" -#endif - -#include "wx/spinctrl.h" +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" -#ifdef wxUSE_SPINBTN +#if wxUSE_SPINCTRL -#include "wx/utils.h" -#include "wx/spinbutt.h" -#include - -#include "gdk/gdk.h" -#include "gtk/gtk.h" +#include "wx/spinctrl.h" -//----------------------------------------------------------------------------- -// idle system -//----------------------------------------------------------------------------- +#ifndef WX_PRECOMP + #include "wx/textctrl.h" // for wxEVT_COMMAND_TEXT_UPDATED + #include "wx/utils.h" + #include "wx/wxcrtvararg.h" +#endif -extern void wxapp_install_idle_handler(); -extern bool g_isIdle; +#include "wx/gtk/private.h" //----------------------------------------------------------------------------- // data @@ -36,184 +29,337 @@ extern bool g_isIdle; extern bool g_blockEventsOnDrag; -static const float sensitivity = 0.02; - //----------------------------------------------------------------------------- // "value_changed" //----------------------------------------------------------------------------- -static void gtk_spinctrl_callback( GtkWidget *WXUNUSED(widget), wxSpinCtrl *win ) +extern "C" { +static void +gtk_value_changed(GtkSpinButton* spinbutton, wxSpinCtrlGTKBase* win) { - if (g_isIdle) wxapp_install_idle_handler(); - - if (!win->m_hasVMT) return; - if (g_blockEventsOnDrag) return; - - float diff = win->m_adjust->value - win->m_oldPos; - if (fabs(diff) < sensitivity) return; - win->m_oldPos = win->m_adjust->value; + win->m_value = gtk_spin_button_get_value(spinbutton); + if (!win->m_hasVMT || g_blockEventsOnDrag) + return; - wxEventType command = wxEVT_NULL; + // note that we don't use wxSpinCtrl::GetValue() here because it would + // adjust the value to fit into the control range and this means that we + // would never be able to enter an "invalid" value in the control, even + // temporarily - and trying to enter 10 into the control which accepts the + // values in range 5..50 is then, ummm, quite challenging (hint: you can't + // enter 1!) (VZ) - float line_step = win->m_adjust->step_increment; + if (wxIsKindOf(win, wxSpinCtrl)) + { + wxSpinEvent event(wxEVT_COMMAND_SPINCTRL_UPDATED, win->GetId()); + event.SetEventObject( win ); + event.SetPosition((int)(win->m_value + 0.5)); // FIXME should be SetValue + event.SetString(GTK_ENTRY(spinbutton)->text); + win->HandleWindowEvent( event ); + } + else // wxIsKindOf(win, wxSpinCtrlDouble) + { + wxSpinDoubleEvent event( wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED, win->GetId()); + event.SetEventObject( win ); + event.SetValue(win->m_value); + event.SetString(GTK_ENTRY(spinbutton)->text); + win->HandleWindowEvent( event ); + } +} +} - if (fabs(diff-line_step) < sensitivity) command = wxEVT_SCROLL_LINEDOWN; - else if (fabs(diff+line_step) < sensitivity) command = wxEVT_SCROLL_LINEUP; - else command = wxEVT_SCROLL_THUMBTRACK; +//----------------------------------------------------------------------------- +// "changed" +//----------------------------------------------------------------------------- - int value = (int)ceil(win->m_adjust->value); +extern "C" { +static void +gtk_changed(GtkSpinButton* spinbutton, wxSpinCtrl* win) +{ + if (!win->m_hasVMT) + return; - wxSpinEvent event( command, win->GetId()); - event.SetPosition( value ); + wxCommandEvent event( wxEVT_COMMAND_TEXT_UPDATED, win->GetId() ); event.SetEventObject( win ); - win->GetEventHandler()->ProcessEvent( event ); - - /* always send a thumbtrack event */ - if (command != wxEVT_SCROLL_THUMBTRACK) - { - command = wxEVT_SCROLL_THUMBTRACK; - wxSpinEvent event2( command, win->GetId()); - event2.SetPosition( value ); - event2.SetEventObject( win ); - win->GetEventHandler()->ProcessEvent( event2 ); - } + event.SetString( GTK_ENTRY(spinbutton)->text ); + + // see above + event.SetInt((int)win->m_value); + win->HandleWindowEvent( event ); +} } //----------------------------------------------------------------------------- -// wxSpinCtrl +// wxSpinCtrlGTKBase //----------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl,wxControl) +IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrlGTKBase, wxSpinCtrlBase) -bool wxSpinCtrl::Create(wxWindow *parent, wxWindowID id, +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, - int min, int max, int initial, + double min, double max, double initial, double inc, const wxString& name) { - m_needParent = TRUE; - - wxSize new_size = size; - if (new_size.y == -1) - new_size.y = 26; - - if (!PreCreation( parent, pos, new_size ) || - !CreateBase( parent, id, pos, new_size, style, wxDefaultValidator, name )) + if (!PreCreation( parent, pos, size ) || + !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name )) { - wxFAIL_MSG( wxT("wxSpinCtrl creation failed") ); - return FALSE; + wxFAIL_MSG( wxT("wxSpinCtrlGTKBase creation failed") ); + return false; } - m_oldPos = initial; + m_widget = gtk_spin_button_new_with_range(min, max, inc); + g_object_ref(m_widget); - m_adjust = (GtkAdjustment*) gtk_adjustment_new( initial, min, max, 1.0, 5.0, 0.0); + gtk_spin_button_set_value( GTK_SPIN_BUTTON(m_widget), initial); + m_value = gtk_spin_button_get_value( GTK_SPIN_BUTTON(m_widget)); - m_widget = gtk_spin_button_new( m_adjust, 1, 0 ); + gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget), + (int)(m_windowStyle & wxSP_WRAP) ); - gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget), (m_windowStyle & wxSP_WRAP) ); - - gtk_signal_connect( GTK_OBJECT (m_adjust), - "value_changed", - (GtkSignalFunc) gtk_spinctrl_callback, - (gpointer) this ); + 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(); + PostCreation(size); - SetBackgroundColour( parent->GetBackgroundColour() ); + if (!value.empty()) + { + SetValue(value); + } - SetValue( value ); + return true; +} - Show( TRUE ); +double wxSpinCtrlGTKBase::DoGetValue() const +{ + wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") ); - return TRUE; + GtkDisableEvents(); + gtk_spin_button_update( GTK_SPIN_BUTTON(m_widget) ); + const_cast(this)->m_value = + gtk_spin_button_get_value(GTK_SPIN_BUTTON(m_widget)); + GtkEnableEvents(); + + return m_value; } -int wxSpinCtrl::GetMin() const +double wxSpinCtrlGTKBase::DoGetMin() const { wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") ); - return (int)ceil(m_adjust->lower); + double min = 0; + gtk_spin_button_get_range( GTK_SPIN_BUTTON(m_widget), &min, NULL); + return min; } -int wxSpinCtrl::GetMax() const +double wxSpinCtrlGTKBase::DoGetMax() const { wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") ); - return (int)ceil(m_adjust->upper); + double max = 0; + gtk_spin_button_get_range( GTK_SPIN_BUTTON(m_widget), NULL, &max); + return max; } -int wxSpinCtrl::GetValue() const +double wxSpinCtrlGTKBase::DoGetIncrement() const { wxCHECK_MSG( (m_widget != NULL), 0, wxT("invalid spin button") ); - return (int)ceil(m_adjust->value); + 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, 0, "invalid spin button" ); + + return gtk_spin_button_get_snap_to_ticks( GTK_SPIN_BUTTON(m_widget) ); } -void wxSpinCtrl::SetValue( const wxString& value ) +void wxSpinCtrlGTKBase::SetValue( const wxString& value ) { wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") ); - int n; - if ( (wxSscanf(value, wxT("%d"), &n) == 1) ) + double n; + if ( wxSscanf(value, "%lg", &n) == 1 ) { - // a number - set it - SetValue(n); + // a number - set it, let DoSetValue round for int value + DoSetValue(n); + return; } - else + + // 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 = int(value + 0.5); + + GtkDisableEvents(); + gtk_spin_button_set_value( GTK_SPIN_BUTTON(m_widget), value); + m_value = gtk_spin_button_get_value( GTK_SPIN_BUTTON(m_widget)); + 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 ) { - // invalid number - set text as is (wxMSW compatible) - gtk_entry_set_text( GTK_ENTRY(m_widget), value.c_str() ); + from = 0; + to = INT_MAX; } + + gtk_editable_select_region( GTK_EDITABLE(m_widget), (gint)from, (gint)to ); } -void wxSpinCtrl::SetValue( int value ) +void wxSpinCtrlGTKBase::DoSetRange(double minVal, double maxVal) { wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") ); - float fpos = (float)value; - m_oldPos = fpos; - if (fabs(fpos-m_adjust->value) < sensitivity) return; + GtkDisableEvents(); + gtk_spin_button_set_range( GTK_SPIN_BUTTON(m_widget), minVal, maxVal); + m_value = gtk_spin_button_get_value(GTK_SPIN_BUTTON(m_widget)); + GtkEnableEvents(); +} - m_adjust->value = fpos; +void wxSpinCtrlGTKBase::DoSetIncrement(double inc) +{ + wxCHECK_RET( m_widget, "invalid spin button" ); - gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "value_changed" ); + GtkDisableEvents(); + gtk_spin_button_set_increments( GTK_SPIN_BUTTON(m_widget), inc, 10*inc); + m_value = gtk_spin_button_get_value(GTK_SPIN_BUTTON(m_widget)); + GtkEnableEvents(); } -void wxSpinCtrl::SetRange(int minVal, int maxVal) +void wxSpinCtrlGTKBase::GtkDisableEvents() const { - wxCHECK_RET( (m_widget != NULL), wxT("invalid spin button") ); + 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); +} - float fmin = (float)minVal; - float fmax = (float)maxVal; +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); +} - if ((fabs(fmin-m_adjust->lower) < sensitivity) && - (fabs(fmax-m_adjust->upper) < sensitivity)) +void wxSpinCtrlGTKBase::OnChar( wxKeyEvent &event ) +{ + wxCHECK_RET( m_widget != NULL, wxT("invalid spin ctrl") ); + + if (event.GetKeyCode() == WXK_RETURN) { - 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; } - m_adjust->lower = fmin; - m_adjust->upper = fmax; + 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); - gtk_signal_emit_by_name( GTK_OBJECT(m_adjust), "changed" ); - - // these two calls are required due to some bug in GTK - Refresh(); - SetFocus(); + return NULL; } -bool wxSpinCtrl::IsOwnGtkWindow( GdkWindow *window ) +wxSize wxSpinCtrlGTKBase::DoGetBestSize() const { - return GTK_SPIN_BUTTON(m_widget)->panel == window; + wxSize ret( wxControl::DoGetBestSize() ); + wxSize best(95, ret.y); // FIXME: 95? + CacheBestSize(best); + return best; } -void wxSpinCtrl::ApplyWidgetStyle() +// static +wxVisualAttributes +wxSpinCtrlGTKBase::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) { - SetWidgetStyle(); - gtk_widget_set_style( m_widget, m_widgetStyle ); + // TODO: overload to accept functions like gtk_spin_button_new? + // Until then use a similar type + return GetDefaultAttributesFromGTKWidget(gtk_entry_new, true); } -#endif +//----------------------------------------------------------------------------- +// 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