Method
GtkGridattach
Declaration [src]
void
gtk_grid_attach (
GtkGrid* grid,
GtkWidget* child,
gint left,
gint top,
gint width,
gint height
)
Description [src]
Adds a widget to the grid.
The position of child is determined by left and top. The
number of “cells” that child will occupy is determined by
width and height.
Parameters
child-
Type:
GtkWidgetThe widget to add.
The data is owned by the caller of the method. left-
Type:
gintThe column number to attach the left side of
childto. top-
Type:
gintThe row number to attach the top side of
childto. width-
Type:
gintThe number of columns that
childwill span. height-
Type:
gintThe number of rows that
childwill span.