17 lines
285 B
C
17 lines
285 B
C
|
/* widget.c : Glue to access fields in GtkWidget.
|
||
|
*
|
||
|
* Author: Rachel Hestilow <hestilow@ximian.com>
|
||
|
*
|
||
|
* <c> 2002 Rachel Hestilow, Mike Kestner
|
||
|
*/
|
||
|
|
||
|
#include <gtk/gtkwidget.h>
|
||
|
|
||
|
GdkRectangle*
|
||
|
gtksharp_gtk_widget_get_allocation (GtkWidget *widget)
|
||
|
{
|
||
|
return &widget->allocation;
|
||
|
}
|
||
|
|
||
|
|