Lines Matching defs:allocation

121                                                     GtkAllocation  *allocation);
476 GtkAllocation allocation;
482 gtk_widget_get_allocation (widget, &allocation);
485 attributes.x = allocation.x;
486 attributes.y = allocation.y;
487 attributes.width = allocation.width;
488 attributes.height = allocation.height;
563 GtkAllocation *allocation)
572 resized = (widget_allocation.width != allocation->width ||
573 widget_allocation.height != allocation->height);
575 gtk_widget_set_allocation(widget, allocation);
580 allocation->x, allocation->y,
581 allocation->width, allocation->height);
693 GtkAllocation allocation;
698 gtk_widget_get_allocation (widget, &allocation);
730 GtkAllocation allocation;
732 gtk_widget_get_allocation(widget, &allocation);
740 allocation.width,
741 allocation.height);
824 GtkAllocation allocation;
828 gtk_widget_get_allocation (GTK_WIDGET (ruler), &allocation);
835 (upper - lower) * x / allocation.width);
841 (upper - lower) * y / allocation.height);
856 GtkAllocation allocation;
858 gtk_widget_get_allocation (widget, &allocation);
860 *x = -allocation.x;
861 *y = -allocation.y;
1127 GtkAllocation allocation;
1151 gtk_widget_get_allocation (widget, &allocation);
1168 width = allocation.width;
1170 height = allocation.height - (border.top + border.bottom);
1172 height = allocation.height - ythickness * 2;
1177 width = allocation.height;
1179 height = allocation.width - (border.top + border.bottom);
1181 height = allocation.width - ythickness * 2;
1188 gtk_render_background (context, cr, 0, 0, allocation.width, allocation.height);
1189 gtk_render_frame (context, cr, 0, 0, allocation.width, allocation.height);
1200 allocation.width - (border.left + border.right),
1209 allocation.height - (border.top + border.bottom));
1223 allocation.width - 2 * xthickness,
1232 allocation.height - 2 * ythickness);
1413 GtkAllocation allocation;
1424 gtk_widget_get_allocation (widget, &allocation);
1442 width = allocation.width;
1443 height = allocation.height - ythickness * 2;
1451 width = allocation.width - xthickness * 2;
1452 height = allocation.height;
1476 rect.x += allocation.x;
1477 rect.y += allocation.y;