forked from AuroraMiddleware/gtk
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:
parent
f22239c4aa
commit
4a73b41a34
@ -10676,6 +10676,23 @@ gtk_widget_get_has_tooltip (GtkWidget *widget)
|
|||||||
return has_tooltip;
|
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:
|
* gtk_widget_get_window:
|
||||||
* @widget: a #GtkWidget
|
* @widget: a #GtkWidget
|
||||||
|
Loading…
Reference in New Issue
Block a user