Lines Matching defs:step
111 gdouble step;
268 action->private_data->step = 0.0;
382 "step-increment", &action->private_data->step,
576 gdouble step = 0.0;
581 "step-increment", &step,
595 gtk_adjustment_set_value( act->private_data->adj, base + step );
599 gtk_adjustment_set_value( act->private_data->adj, base - step );
704 gdouble step = 0.0;
709 "step-increment", &step,
721 if ( (base + step) < upper ) {
722 addOns = flush_explicit_items( addOns, G_CALLBACK(process_menu_action), BUMP_CUSTOM, menu, act, &single, &group, base + step );
723 create_single_menu_item( G_CALLBACK(process_menu_action), BUMP_UP, menu, act, &single, &group, base + step, FALSE );
731 if ( (base - step) > lower ) {
732 addOns = flush_explicit_items( addOns, G_CALLBACK(process_menu_action), BUMP_CUSTOM, menu, act, &single, &group, base - step );
733 create_single_menu_item( G_CALLBACK(process_menu_action), BUMP_DOWN, menu, act, &single, &group, base - step, FALSE );
1062 gtk_spin_button_set_value( GTK_SPIN_BUTTON(widget), val + action->private_data->step );
1072 gtk_spin_button_set_value( GTK_SPIN_BUTTON(widget), val - action->private_data->step );