Lines Matching defs:allocation

88                                           GtkAllocation *allocation);
874 GtkAllocation *allocation)
879 g_return_if_fail (allocation != NULL);
883 gtk_widget_set_allocation (widget, allocation);
891 allocation->x,
892 allocation->y,
893 allocation->width,
894 allocation->height);
906 child_allocation.width = allocation->width
908 child_allocation.height = allocation->height
985 GtkAllocation allocation;
998 gtk_widget_get_allocation (widget, &allocation);
999 attributes.x = allocation.x;
1000 attributes.y = allocation.y;
1001 attributes.width = allocation.width;
1002 attributes.height = allocation.height;
1111 GtkAllocation allocation;
1130 gtk_widget_get_allocation (item->_priv->grip, &allocation);
1135 in_handle = event->x < allocation.width;
1138 in_handle = event->y < allocation.height;
1267 /* we get (x,y) in our allocation coordinates system */
1269 /* Get item's allocation. */
1391 GtkAllocation allocation;
1406 gtk_widget_get_allocation (GTK_WIDGET (parent), &allocation);
1407 parent_req.height = allocation.height;
1408 parent_req.width = allocation.width;
1700 GtkAllocation allocation;
1713 gtk_widget_get_allocation (GTK_WIDGET (data), &allocation);
1715 item->dragoff_y = allocation.height / 2;
1718 /*item->dragoff_x = GTK_WIDGET (data)->allocation.width / 2;*/
2139 GtkAllocation allocation;
2167 gtk_widget_get_allocation (GTK_WIDGET (item), &allocation);
2168 item->_priv->preferred_width = allocation.width;
2169 item->_priv->preferred_height = allocation.height;
2349 GtkAllocation allocation;
2354 gtk_widget_get_allocation (GTK_WIDGET (item), &allocation);
2356 req->width = MAX (item->_priv->preferred_width, allocation.width);
2357 req->height = MAX (item->_priv->preferred_height, allocation.height);