Home
last modified time | relevance | path

Searched refs:highlight_alloc (Results 1 – 2 of 2) sorted by relevance

/dports/x11-toolkits/gtk40/gtk-4.4.1/gtk/
H A Dgtkrange.c1479 GtkAllocation highlight_alloc; in gtk_range_allocate_trough() local
1489 highlight_alloc.y = 0; in gtk_range_allocate_trough()
1490 highlight_alloc.width = MAX (min, value * width); in gtk_range_allocate_trough()
1491 highlight_alloc.height = height; in gtk_range_allocate_trough()
1494 highlight_alloc.x = 0; in gtk_range_allocate_trough()
1496 highlight_alloc.x = width - highlight_alloc.width; in gtk_range_allocate_trough()
1500 highlight_alloc.x = 0; in gtk_range_allocate_trough()
1501 highlight_alloc.width = width; in gtk_range_allocate_trough()
1502 highlight_alloc.height = MAX (min, height * value); in gtk_range_allocate_trough()
1505 highlight_alloc.y = 0; in gtk_range_allocate_trough()
[all …]
/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/
H A Dgtkrange.c2014 GtkAllocation highlight_alloc, highlight_clip; in gtk_range_allocate_trough() local
2022 highlight_alloc = *allocation; in gtk_range_allocate_trough()
2030 highlight_alloc.x = allocation->x; in gtk_range_allocate_trough()
2031 highlight_alloc.width = MAX (x - allocation->x, min); in gtk_range_allocate_trough()
2035 highlight_alloc.width = MAX (allocation->x + allocation->width - x, min); in gtk_range_allocate_trough()
2036 highlight_alloc.x = allocation->x + allocation->width - highlight_alloc.width; in gtk_range_allocate_trough()
2045 highlight_alloc.y = allocation->y; in gtk_range_allocate_trough()
2046 highlight_alloc.height = MAX (y - allocation->y, min); in gtk_range_allocate_trough()
2050 highlight_alloc.height = MAX (allocation->y + allocation->height - y, min); in gtk_range_allocate_trough()
2051 highlight_alloc.y = allocation->y + allocation->height - highlight_alloc.height; in gtk_range_allocate_trough()
[all …]