Home
last modified time | relevance | path

Searched refs:slider_alloc (Results 1 – 11 of 11) sorted by relevance

/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/
H A Dgtkrange.c1346 GtkAllocation slider_alloc; in gtk_range_get_slider_range() local
1359 *slider_end = slider_alloc.y + slider_alloc.height; in gtk_range_get_slider_range()
1366 *slider_end = slider_alloc.x + slider_alloc.width; in gtk_range_get_slider_range()
1963 slider_alloc.x += widget_alloc.x; in gtk_range_allocate_trough()
1964 slider_alloc.y += widget_alloc.y; in gtk_range_allocate_trough()
2026 int x = slider_alloc.x + slider_alloc.width / 2; in gtk_range_allocate_trough()
2041 int y = slider_alloc.y + slider_alloc.height / 2; in gtk_range_allocate_trough()
2623 GtkAllocation slider_alloc; in gtk_range_key_press() local
2671 GtkAllocation slider_alloc; in gtk_range_long_press_gesture_pressed() local
2696 GtkAllocation slider_alloc; in gtk_range_multipress_gesture_pressed() local
[all …]
H A Dgtkscale.c294 GtkAllocation range_alloc, slider_alloc, value_alloc; in gtk_scale_allocate_value() local
300 gtk_css_gadget_get_border_allocation (slider_gadget, &slider_alloc, NULL); in gtk_scale_allocate_value()
326 value_alloc.x = slider_alloc.x + (slider_alloc.width - value_alloc.width) / 2; in gtk_scale_allocate_value()
332 value_alloc.x = slider_alloc.x + (slider_alloc.width - value_alloc.width) / 2; in gtk_scale_allocate_value()
348 value_alloc.y = slider_alloc.y + (slider_alloc.height - value_alloc.height) / 2; in gtk_scale_allocate_value()
354 value_alloc.y = slider_alloc.y + (slider_alloc.height - value_alloc.height) / 2; in gtk_scale_allocate_value()
/dports/emulators/mess/mame-mame0226/src/frontend/mame/ui/
H A Dui.cpp1514 m_sliders.push_back(slider_alloc(SLIDER_ID_VOLUME, _("Master Volume"), -32, 0, 0, 1, nullptr)); in slider_init()
1548 …m_sliders.push_back(slider_alloc(SLIDER_ID_OVERCLOCK + slider_index++, str.c_str(), 100, 1000, 400… in slider_init()
1557 …m_sliders.push_back(slider_alloc(SLIDER_ID_OVERCLOCK + slider_index++, str.c_str(), 100, 1000, 400… in slider_init()
1578 …m_sliders.push_back(slider_alloc(SLIDER_ID_REFRESH + slider_index, str.c_str(), -10000, 0, 10000, … in slider_init()
1583 …m_sliders.push_back(slider_alloc(SLIDER_ID_BRIGHTNESS + slider_index, str.c_str(), 100, 1000, 2000… in slider_init()
1585 …m_sliders.push_back(slider_alloc(SLIDER_ID_CONTRAST + slider_index, str.c_str(), 100, 1000, 2000, … in slider_init()
1587 …m_sliders.push_back(slider_alloc(SLIDER_ID_GAMMA + slider_index, str.c_str(), 100, 1000, 3000, 50,… in slider_init()
1591 …m_sliders.push_back(slider_alloc(SLIDER_ID_XSCALE + slider_index, str.c_str(), 500, defxscale, 150… in slider_init()
1593 …m_sliders.push_back(slider_alloc(SLIDER_ID_XOFFSET + slider_index, str.c_str(), -500, defxoffset, … in slider_init()
1595 …m_sliders.push_back(slider_alloc(SLIDER_ID_YSCALE + slider_index, str.c_str(), 500, defyscale, 150… in slider_init()
[all …]
H A Dui.h317 …std::unique_ptr<slider_state> slider_alloc(int id, const char *title, int32_t minval, int32_t defv…
/dports/emulators/mame/mame-mame0226/src/frontend/mame/ui/
H A Dui.cpp1514 m_sliders.push_back(slider_alloc(SLIDER_ID_VOLUME, _("Master Volume"), -32, 0, 0, 1, nullptr)); in slider_init()
1548 …m_sliders.push_back(slider_alloc(SLIDER_ID_OVERCLOCK + slider_index++, str.c_str(), 100, 1000, 400… in slider_init()
1557 …m_sliders.push_back(slider_alloc(SLIDER_ID_OVERCLOCK + slider_index++, str.c_str(), 100, 1000, 400… in slider_init()
1578 …m_sliders.push_back(slider_alloc(SLIDER_ID_REFRESH + slider_index, str.c_str(), -10000, 0, 10000, … in slider_init()
1583 …m_sliders.push_back(slider_alloc(SLIDER_ID_BRIGHTNESS + slider_index, str.c_str(), 100, 1000, 2000… in slider_init()
1585 …m_sliders.push_back(slider_alloc(SLIDER_ID_CONTRAST + slider_index, str.c_str(), 100, 1000, 2000, … in slider_init()
1587 …m_sliders.push_back(slider_alloc(SLIDER_ID_GAMMA + slider_index, str.c_str(), 100, 1000, 3000, 50,… in slider_init()
1591 …m_sliders.push_back(slider_alloc(SLIDER_ID_XSCALE + slider_index, str.c_str(), 500, defxscale, 150… in slider_init()
1593 …m_sliders.push_back(slider_alloc(SLIDER_ID_XOFFSET + slider_index, str.c_str(), -500, defxoffset, … in slider_init()
1595 …m_sliders.push_back(slider_alloc(SLIDER_ID_YSCALE + slider_index, str.c_str(), 500, defyscale, 150… in slider_init()
[all …]
H A Dui.h317 …std::unique_ptr<slider_state> slider_alloc(int id, const char *title, int32_t minval, int32_t defv…
/dports/x11-toolkits/gtk40/gtk-4.4.1/gtk/
H A Dgtkrange.c1425 GtkAllocation slider_alloc; in gtk_range_allocate_trough() local
1436 &slider_alloc); in gtk_range_allocate_trough()
1438 gtk_widget_size_allocate (priv->slider_widget, &slider_alloc, -1); in gtk_range_allocate_trough()
1439 priv->slider_x = slider_alloc.x; in gtk_range_allocate_trough()
1440 priv->slider_y = slider_alloc.y; in gtk_range_allocate_trough()
/dports/emulators/mess/mame-mame0226/src/osd/modules/render/d3d/
H A Dd3dhlsl.h334 …std::unique_ptr<slider_state> slider_alloc(int id, const char *title, int32_t minval, int32_t defv…
H A Dd3dhlsl.cpp1989 std::unique_ptr<slider_state> shaders::slider_alloc(int id, const char *title, int32_t minval, int3… in slider_alloc() function in shaders
2390 …std::unique_ptr<slider_state> core_slider = slider_alloc(desc->id, name.c_str(), desc->minval, des… in init_slider_list()
/dports/emulators/mame/mame-mame0226/src/osd/modules/render/d3d/
H A Dd3dhlsl.h334 …std::unique_ptr<slider_state> slider_alloc(int id, const char *title, int32_t minval, int32_t defv…
H A Dd3dhlsl.cpp1989 std::unique_ptr<slider_state> shaders::slider_alloc(int id, const char *title, int32_t minval, int3… in slider_alloc() function in shaders
2390 …std::unique_ptr<slider_state> core_slider = slider_alloc(desc->id, name.c_str(), desc->minval, des… in init_slider_list()