Home
last modified time | relevance | path

Searched refs:spin_x (Results 1 – 16 of 16) sorted by relevance

/dports/graphics/viewnior/Viewnior-viewnior-1.7/src/
H A Dvnr-crop.c79 + gtk_spin_button_get_value(crop->spin_x) in vnr_crop_check_sub_x()
92 gtk_spin_button_set_value (crop->spin_x, crop->sub_x / crop->zoom); in vnr_crop_update_spin_button_values()
143 crop->spin_x = GTK_SPIN_BUTTON (gtk_builder_get_object (builder, "spin-x")); in vnr_crop_build_dialog()
144 gtk_spin_button_set_range (crop->spin_x, 0, crop->vnr_win->current_image_width - 1); in vnr_crop_build_dialog()
145 gtk_spin_button_set_increments (crop->spin_x, 1, 10); in vnr_crop_build_dialog()
174 g_signal_connect (crop->spin_x, "value-changed", in vnr_crop_build_dialog()
431 crop->spin_x = NULL; in vnr_crop_init()
454 crop->area.x = gtk_spin_button_get_value_as_int (crop->spin_x); in vnr_crop_run()
H A Dvnr-crop.h51 GtkSpinButton *spin_x; member
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/unsupervised/tests/
H A Dtest_owsom.py137 spin_x = widget.opt_controls.spin_x
140 spin_x.setValue(100)
144 self.assertLess(spin_x.value(), 100)
147 spin_x.setValue(9)
151 self.assertEqual(spin_x.value(), 10)
160 widget.opt_controls.spin_x.setValue(8)
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/unsupervised/
H A Dowsom.py246 spin_x = gui.spin(**spinargs)
247 spin_x.setValue(self.size_x)
264 shape, auto_dim, spin_x, spin_y, initialization, start)
376 self.opt_controls.spin_x.setValue(dim)
384 spin_x = self.opt_controls.spin_x
386 dimx = int(5 * np.round(spin_x.value() / 5))
388 spin_x.setValue(dimx)
504 self.size_x = c.spin_x.value()
/dports/sysutils/goaccess/goaccess-1.4.6/src/
H A Dui.h190 int spin_x; member
H A Dui.c1031 mvwaddch (sp->win, sp->y, sp->spin_x, spin_chars[i++ & 3]); in ui_spinner()
1069 spinner->spin_x = x - 2; in set_curses_spinner()
1460 spinner->spin_x = CONF_MENU_W; in render_confdlg()
/dports/x11-clocks/glclock/glclock-6.0b6.0/
H A Dglclock.cpp13433 spin_x = SPIN_X ; in AdjustSpinAndFrameCount()
14174 if (spin_x != 0.0f) in ClockProc()
14318 spin_x += Sgn(((-m_speed * 0.08) - spin_x)) * m_speed * 0.004 ; in CalculateMoving()
14322 spin_x += Sgn(((m_speed * 0.08) - spin_x)) * m_speed * 0.004 ; in CalculateMoving()
14361 spin_x *= ir_ratio ; in MoveModel()
14990 if (key == GLUT_KEY_LEFT ) spin_x += ((-0.2f * SPEED) - spin_x) * 0.2f ; in SpecialKeyProc()
14991 else if (key == GLUT_KEY_RIGHT) spin_x += (( 0.2f * SPEED) - spin_x) * 0.2f ; in SpecialKeyProc()
15006 if (spin_x < 0.0) spin_x *= 0.05 ; in SpecialKeyUpProc()
15011 if (spin_x > 0.0) spin_x *= 0.05 ; in SpecialKeyUpProc()
16248 spin_x = GIFF_SPIN_X ; in InitVarMisc()
[all …]
/dports/science/luscus/luscus_0.8.6/
H A Dgv_notebook.c108 GtkWidget *hbox_xyz, *spin_x, *spin_y, *spin_z; variable
442 spin_x = gtk_spin_button_new_with_range(-999.0, 999.0, 0.01); in make_notebook()
443 gtk_spin_button_set_increments(GTK_SPIN_BUTTON(spin_x), 0.01, 0.1); in make_notebook()
444 gtk_spin_button_set_digits(GTK_SPIN_BUTTON(spin_x), 3); in make_notebook()
445 gtk_box_pack_start(GTK_BOX(hbox_xyz), spin_x, FALSE, FALSE, 0); in make_notebook()
446 g_signal_connect(G_OBJECT(spin_x), "focus-in-event", G_CALLBACK(luscus_gtk_disable_keys), NULL); in make_notebook()
447 g_signal_connect(G_OBJECT(spin_x), "focus-out-event", G_CALLBACK(luscus_gtk_enable_keys), NULL); in make_notebook()
449 gtk_widget_show(spin_x); in make_notebook()
456 gtk_spin_button_set_increments(GTK_SPIN_BUTTON(spin_x), 0.01, 0.1); in make_notebook()
469 gtk_spin_button_set_increments(GTK_SPIN_BUTTON(spin_x), 0.01, 0.1); in make_notebook()
[all …]
/dports/x11/xlockmore/xlockmore-5.67/modes/glx/
H A Dmolecule.c174 Bool spin_x, spin_y, spin_z; member
1450 if (*s == 'x' || *s == 'X') mc->spin_x = 1; in init_molecule()
1574 if (mc->spin_x || mc->spin_y || mc->spin_z) in draw_molecule()
1583 if (mc->spin_x) glRotatef(x * 360, 1.0, 0.0, 0.0); in draw_molecule()
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client_sdk/src/examples/demo/earth/
H A Dearth.cc674 float spin_x = std::min(10.0f, std::max(-10.0f, delta_x * 0.5f)); in SpinPlanet() local
676 ui_spin_x_ = spin_x / 100.0f; in SpinPlanet()
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client_sdk/src/examples/demo/earth_simd/
H A Dearth.cc714 float spin_x = std::min(10.0f, std::max(-10.0f, delta_x * 0.5f)); in SpinPlanet() local
716 ui_spin_x_ = spin_x / 100.0f; in SpinPlanet()
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client_sdk/src/gonacl_appengine/src/earth/
H A Dearth.cc755 float spin_x = std::min(10.0f, std::max(-10.0f, delta_x * 0.5f)); in HandleInputEvent() local
757 ui_spin_x_ = spin_x / 100.0f; in HandleInputEvent()
/dports/audio/gqradio/gqradio-1.9.2/src/
H A Dui2_typedefs.h286 GtkWidget *spin_x; member
H A Dui2_editor.c2776 xa = gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(ed->spin_x)); in prop_set_coord()
2800 ui_edit_frame_sensitive(ed->spin_x, state, TRUE); in prop_set_sensitive()
4647 ed->spin_x = ui_edit_spin_new(hbox, _("x:"), 0, 0, &adj); in ui_edit_new()
/dports/science/wannier90/wannier90-3.1.0/test-suite/tests/
H A Duserconfig100 (1.0e-3, 2.0e-3, 'spin_x'),
/dports/deskutils/spice-gtk/spice-gtk-0.37/tools/
H A Dspicy.c573 GtkWidget *spin_width, *spin_height, *spin_x, *spin_y; in menu_cb_resize_to() local
587 spin_x = gtk_spin_button_new_with_range(0, G_MAXINT, 10); in menu_cb_resize_to()
605 gtk_grid_attach(grid, spin_x, 1, 4, 1, 1); in menu_cb_resize_to()
616 gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spin_x)), in menu_cb_resize_to()