Searched refs:spin (Results 1 - 4 of 4) sorted by relevance
/inkscape/src/extension/param/ |
H A D | float.cpp | 17 #include "ui/widget/spin-scale.h" 202 Inkscape::UI::Widget::SpinButton * spin = Gtk::manage(new Inkscape::UI::Widget::SpinButton(fadjust, 0.1, _precision)); local 204 Inkscape::UI::Widget::SpinButton * spin = Gtk::manage(new Inkscape::UI::Widget::SpinButton(*fadjust, 0.1, _precision)); local 206 spin->show(); 207 hbox->pack_start(*spin, false, false);
|
H A D | int.cpp | 17 #include "ui/widget/spin-scale.h" 183 Inkscape::UI::Widget::SpinButton * spin = Gtk::manage(new Inkscape::UI::Widget::SpinButton(fadjust, 1.0, 0)); local 185 Inkscape::UI::Widget::SpinButton * spin = Gtk::manage(new Inkscape::UI::Widget::SpinButton(*fadjust, 1.0, 0)); local 187 spin->show(); 188 hbox->pack_start(*spin, false, false);
|
/inkscape/src/widgets/ |
H A D | desktop-widget.cpp | 122 static gint sp_dtw_zoom_input (GtkSpinButton *spin, gdouble *new_val, gpointer data); 123 static bool sp_dtw_zoom_output (GtkSpinButton *spin, gpointer data); 124 static void sp_dtw_zoom_value_changed (GtkSpinButton *spin, gpointer data); 1913 sp_dtw_zoom_input (GtkSpinButton *spin, gdouble *new_val, gpointer /*data*/) argument 1915 gdouble new_scrolled = gtk_spin_button_get_value (spin); 1916 const gchar *b = gtk_entry_get_text (GTK_ENTRY (spin)); 1929 sp_dtw_zoom_output (GtkSpinButton *spin, gpointer /*data*/) argument 1932 double val = sp_dtw_zoom_value_to_display (gtk_spin_button_get_value (spin)); 1938 gtk_entry_set_text (GTK_ENTRY (spin), b); 1943 sp_dtw_zoom_value_changed (GtkSpinButton *spin, gpointe argument [all...] |
H A D | ege-adjustment-action.cpp | 777 static void value_changed_cb( GtkSpinButton* spin, EgeAdjustmentAction* act ) argument 779 if ( gtk_widget_has_focus( GTK_WIDGET(spin) ) ) { 781 if (GTK_IS_EDITABLE(spin) && gtk_editable_get_selection_bounds (GTK_EDITABLE(spin), &start, &end) 783 // #167846, #363000 If the spin button has a selection, its probably 784 // because we got here from a Tab key from another spin, if so dont defocus
|
Completed in 31 milliseconds