import "glib/glib" import "glib/glib-object" import "gdk/gdk" import "gtk/gtkobject" import "gtk/gtkenums" import "gtk/gtkwidget" import "gtk/gtkcontainer" public [name="c"] struct GtkTable: local GtkContainer; end struct GtkTableClass: local GtkContainerClass; end import func gtk_table_get_type: GtkType import func gtk_table_new (guint,guint,gboolean): GtkWidget import func gtk_table_resize (GtkTable,guint,guint) import func gtk_table_attach ( GtkTable, GtkWidget, guint, guint, guint, guint, GtkAttachOptions, GtkAttachOptions, guint, guint) import func gtk_table_attach_defaults ( GtkTable, GtkWidget, guint, guint, guint, guint) import func gtk_table_set_row_spacing (GtkTable,guint,guint) import func gtk_table_get_row_spacing (GtkTable,guint): guint import func gtk_table_set_col_spacing (GtkTable,guint,guint) import func gtk_table_get_col_spacing (GtkTable,guint): guint import func gtk_table_set_row_spacings (GtkTable,guint) import func gtk_table_get_default_row_spacing (GtkTable): guint import func gtk_table_set_col_spacings (GtkTable,guint) import func gtk_table_get_default_col_spacing (GtkTable): guint import func gtk_table_set_homogeneous (GtkTable,gboolean) import func gtk_table_get_homogeneous (GtkTable): gboolean end