add getter function for widget->allocation

Add gtk_widget_get_allocation() to retrieve a widget's allocation.
Needed as a step to enable GSEAL building.

This fixes bug #585211
This commit is contained in:
Cody Russell 2009-07-29 22:28:17 -05:00
parent f22239c4aa
commit 4a73b41a34

View File

@ -10676,6 +10676,23 @@ gtk_widget_get_has_tooltip (GtkWidget *widget)
return has_tooltip;
}
/**
* gtk_widget_get_allocation:
* @widget: a #GtkWidget
* @allocation: a pointer to a #GtkAllocation to copy to
*
* Retrieves the widget's allocation.
*
* Since: 2.18
*/
void
gtk_widget_get_allocation (GtkWidget *widget, GtkAllocation *allocation)
{
g_return_if_fail (GTK_IS_WIDGET (widget));
*allocation = widget->allocation;
}
/**
* gtk_widget_get_window:
* @widget: a #GtkWidget