Home
last modified time | relevance | path

Searched refs:item_area (Results 1 – 25 of 54) sorted by relevance

123

/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/
H A Dgtktoolitemgroup.c675 GtkAllocation item_area; in gtk_tool_item_group_real_size_query() local
696 item_area.width = 0; in gtk_tool_item_group_real_size_query()
697 item_area.height = 0; in gtk_tool_item_group_real_size_query()
886 item_area.width = item_size.width * n_columns; in gtk_tool_item_group_real_size_query()
887 item_area.height = item_size.height * n_rows; in gtk_tool_item_group_real_size_query()
908 inquery->width += item_area.width + 2 * border_width; in gtk_tool_item_group_real_size_query()
922 GtkAllocation item_area; in gtk_tool_item_group_real_size_allocate() local
993 item_size.width = item_area.width / n_columns; in gtk_tool_item_group_real_size_allocate()
1005 item_size.height = item_area.height / n_rows; in gtk_tool_item_group_real_size_allocate()
1008 item_area.x = child_allocation.x; in gtk_tool_item_group_real_size_allocate()
[all …]
H A Dgtkiconview.c2690 if (MIN (x + width, item_area->x + item_area->width) - MAX (x, item_area->x) <= 0 || in gtk_icon_view_item_hit_test()
2691 MIN (y + height, item_area->y + item_area->height) - MAX (y, item_area->y) <= 0) in gtk_icon_view_item_hit_test()
2699 item_area, item_area, in gtk_icon_view_item_hit_test()
3333 y <= item_area->y + item_area->height + icon_view->priv->row_spacing/2) in _gtk_icon_view_get_item_at_coords()
3343 if (x >= item_area->x && x <= item_area->x + item_area->width && in _gtk_icon_view_get_item_at_coords()
3344 y >= item_area->y && y <= item_area->y + item_area->height) in _gtk_icon_view_get_item_at_coords()
3347 item_area, in _gtk_icon_view_get_item_at_coords()
4278 else if (y + item_area.y + item_area.height > allocation.height) in gtk_icon_view_scroll_to_item()
4287 else if (x + item_area.x + item_area.width > allocation.width) in gtk_icon_view_scroll_to_item()
4868 (item_area->x <= in gtk_icon_view_get_visible_range()
[all …]
/dports/x11-toolkits/gtk20/gtk+-2.24.33/gtk/
H A Dgtktoolitemgroup.c616 GtkAllocation item_area; in gtk_tool_item_group_real_size_query() local
637 item_area.width = 0; in gtk_tool_item_group_real_size_query()
638 item_area.height = 0; in gtk_tool_item_group_real_size_query()
818 item_area.width = item_size.width * n_columns; in gtk_tool_item_group_real_size_query()
819 item_area.height = item_size.height * n_rows; in gtk_tool_item_group_real_size_query()
839 inquery->width += item_area.width + 2 * border_width; in gtk_tool_item_group_real_size_query()
854 GtkAllocation item_area; in gtk_tool_item_group_real_size_allocate() local
922 item_size.width = item_area.width / n_columns; in gtk_tool_item_group_real_size_allocate()
934 item_size.height = item_area.height / n_rows; in gtk_tool_item_group_real_size_allocate()
937 item_area.x = child_allocation.x; in gtk_tool_item_group_real_size_allocate()
[all …]
H A Dgtktreeitem.c598 GdkRectangle child_area, item_area; in gtk_tree_item_paint() local
631 item_area.x = 0; in gtk_tree_item_paint()
632 item_area.y = 0; in gtk_tree_item_paint()
633 item_area.width = (tree_item->pixmaps_box->allocation.width + DEFAULT_DELTA + in gtk_tree_item_paint()
635 item_area.height = widget->allocation.height; in gtk_tree_item_paint()
638 if (gdk_rectangle_intersect(&item_area, area, &child_area)) in gtk_tree_item_paint()
/dports/graphics/cegui/cegui-0.8.7/samples/InventoryDemo/
H A DInventoryReceiver.cpp182 Rectf item_area(item->getUnclippedOuterRect().get()); in onDragDropItemDropped() local
183 item_area.offset(Vector2f(square_size.d_width / 2, square_size.d_height / 2)); in onDragDropItemDropped()
185 const int drop_x = gridXLocationFromPixelPosition(item_area.left()); in onDragDropItemDropped()
186 const int drop_y = gridYLocationFromPixelPosition(item_area.top()); in onDragDropItemDropped()
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libnest2d/include/libnest2d/selections/
H A Ddjd_heuristic.hpp228 double item_area = 0; in packItems() local
237 free_area - (item_area = it->get().area()) <= waste) in packItems()
239 if(item_area <= free_area && pack(it) ) { in packItems()
240 free_area -= item_area; in packItems()
260 double item_area = 0; in packItems() local
286 free_area - (item_area = it->get().area()) - in packItems()
289 if(item_area + smallestPiece(it, not_packed)->get().area() > in packItems()
298 (item2_area = it2->get().area()) - item_area <= waste) in packItems()
300 double area_sum = item_area + item2_area; in packItems()
/dports/devel/libnest2d-ultimaker/libnest2d-4d6fb4d/include/libnest2d/selections/
H A Ddjd_heuristic.hpp228 double item_area = 0; in packItems() local
237 free_area - (item_area = it->get().area()) <= waste) in packItems()
239 if(item_area <= free_area && pack(it) ) { in packItems()
240 free_area -= item_area; in packItems()
260 double item_area = 0; in packItems() local
286 free_area - (item_area = it->get().area()) - in packItems()
289 if(item_area + smallestPiece(it, not_packed)->get().area() > in packItems()
298 (item2_area = it2->get().area()) - item_area <= waste) in packItems()
300 double area_sum = item_area + item2_area; in packItems()
/dports/x11-toolkits/gtk40/gtk-4.4.1/gtk/
H A Dgtkiconview.c2415 if (MIN (x + width, item_area->x + item_area->width) - MAX (x, item_area->x) <= 0 || in gtk_icon_view_item_hit_test()
2416 MIN (y + height, item_area->y + item_area->height) - MAX (y, item_area->y) <= 0) in gtk_icon_view_item_hit_test()
2424 item_area, item_area, in gtk_icon_view_item_hit_test()
3027 if (x >= item_area->x && x <= item_area->x + item_area->width && in _gtk_icon_view_get_item_at_coords()
3028 y >= item_area->y && y <= item_area->y + item_area->height) in _gtk_icon_view_get_item_at_coords()
3031 item_area, in _gtk_icon_view_get_item_at_coords()
3913 offset = x + item_area.x - col_align * (width - item_area.width); in gtk_icon_view_scroll_to_path()
3952 else if (y + item_area.y + item_area.height > widget_height) in gtk_icon_view_scroll_to_item()
3961 else if (x + item_area.x + item_area.width > widget_width) in gtk_icon_view_scroll_to_item()
4458 (item_area->x <= in gtk_icon_view_get_visible_range()
[all …]
/dports/games/frogatto/frogatto-1.3.1/modules/frogatto/data/objects/items/
H A Dblue_ball.cfg37 item_area: [0,0,7,7],
50 item_area: [0,0,7,7],
H A Dheart_object.cfg30 item_area: "all",
41 item_area: "all",
H A Dpoints_cube.cfg30 item_area: "all",
41 item_area: "all",
H A Dpowerup_invincible.cfg15 item_area: "all",
H A Dpowerup_shooting.cfg15 item_area: "all",
H A Dpowerup_reflexes.cfg15 item_area: "all",
H A Dgold_berry.cfg23 item_area: "all",
H A Dcoin_gold_enormous.cfg24 item_area: "all",
H A Dcoin_silver.cfg23 item_area: "all",
H A Dcoin_gold.cfg25 item_area: "all",
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/graphics/paint/
H A Dpaint_chunker.cc101 float item_area; in IncrementDisplayItemIndex() local
103 static_cast<const DrawingDisplayItem&>(item).BackgroundColor(item_area); in IncrementDisplayItemIndex()
104 ProcessBackgroundColorCandidate(chunk.id, item_color, item_area); in IncrementDisplayItemIndex()
/dports/games/frogatto/frogatto-1.3.1/modules/frogatto/data/objects/experimental/
H A Dspawn_timing_test.cfg20 item_area: "all",
H A Dwalker-1-dbg.cfg85 item_area: "all",
139 item_area: "all",
216 item_area: "all",
H A Dwalker-1.cfg81 item_area: "all",
135 item_area: "all",
212 item_area: "all",
/dports/games/frogatto/frogatto-1.3.1/modules/frogatto/data/objects/items/store-items/
H A Dbuyable_powerup_invincible.cfg18 item_area: "all",
H A Dbuyable_powerup_shooting.cfg19 item_area: "all",
H A Dbuyable_powerup_reflexes.cfg19 item_area: "all",

123