Home | History | Annotate | Download | only in gtk

Lines Matching defs:allocation

54     GtkAllocation allocation;
55 gtk_widget_get_allocation(widget, &allocation);
59 attributes.x = allocation.x;
60 attributes.y = allocation.y;
61 attributes.width = allocation.width;
62 attributes.height = allocation.height;
164 static void webViewSizeAllocate(GtkWidget* widget, GtkAllocation* allocation)
167 GTK_WIDGET_CLASS(webViewWidgetParentClass)->size_allocate(widget, allocation);
168 webView->setSize(widget, IntSize(allocation->width, allocation->height));