Method
ClutterGridLayoutattach
Declaration [src]
void
clutter_grid_layout_attach (
ClutterGridLayout* layout,
ClutterActor* 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.
| Available since: | 1.12 |
Parameters
child |
ClutterActor |
The |
|
| The data is owned by the caller of the function. | |
left |
gint |
The column number to attach the left side of |
|
top |
gint |
The row number to attach the top side of |
|
width |
gint |
The number of columns that |
|
height |
gint |
The number of rows that |