Lines Matching defs:allocation
1046 GtkAllocation allocation;
1048 gtk_widget_get_allocation (widget, &allocation);
1049 attributes.x = allocation.x;
1050 attributes.y = allocation.y;
1051 attributes.width = allocation.width;
1052 attributes.height = allocation.height;
1144 void SPCanvas::handle_size_allocate(GtkWidget *widget, GtkAllocation *allocation)
1155 allocation->width, allocation->height);
1159 allocation->width, allocation->height);
1173 // Clip the clean region to the new allocation
1174 cairo_rectangle_int_t crect = { canvas->_x0, canvas->_y0, allocation->width, allocation->height };
1177 gtk_widget_set_allocation (widget, allocation);
1184 allocation->x, allocation->y,
1185 allocation->width, allocation->height);
1729 GtkAllocation allocation;
1732 gtk_widget_get_allocation(GTK_WIDGET(this), &allocation);
1735 allocation.width, allocation.height);
1885 GtkAllocation allocation;
1886 gtk_widget_get_allocation(GTK_WIDGET(this), &allocation);
1887 cairo_rectangle_int_t crect = { _x0, _y0, allocation.width, allocation.height };
1970 GtkAllocation allocation;
1980 gtk_widget_get_allocation(&_widget, &allocation);
1985 allocation.width, allocation.height);
1994 cairo_rectangle(cr, _x0, _y0, allocation.width, allocation.height);
2010 cairo_rectangle_int_t crect = { _x0, _y0, allocation.width, allocation.height };
2136 GtkAllocation allocation;
2142 gtk_widget_get_allocation (w, &allocation);
2146 ( world[Geom::X] < canvas->_x0 + allocation.width ) &&
2147 ( world[Geom::Y] < canvas->_y0 + allocation.height ) );
2155 GtkAllocation allocation;
2157 gtk_widget_get_allocation (GTK_WIDGET (this), &allocation);
2159 Geom::Point(_dx0 + allocation.width, _dy0 + allocation.height));
2167 GtkAllocation allocation;
2169 gtk_widget_get_allocation (GTK_WIDGET(this), &allocation);
2172 ret.setMax(Geom::IntPoint(_x0 + allocation.width, _y0 + allocation.height));