Home | History | Annotate | Download | only in gtk

Lines Matching refs:allocation

271   GtkAllocation allocation = { 0, 0, 200, 200 };
282 /* caculate the allocation before realize */
284 allocation.width = w;
285 allocation.height = h;
286 gtk_widget_size_allocate (widget, &allocation);
289 printf("initial allocation %d %d %d %d\n", x, y, w, h);
292 xtbin->width = widget->allocation.width;
293 xtbin->height = widget->allocation.height;
415 GtkAllocation allocation;
435 allocation.x = xtbin->x;
436 allocation.y = xtbin->y;
437 allocation.width = xtbin->width;
438 allocation.height = xtbin->height;
440 gtk_widget_size_allocate(widget, &allocation);