Gtk.GridLayout¶
class — extends LayoutManager
Arranges child widgets in rows and columns.
Children have an "attach point" defined by the horizontal and vertical
index of the cell they occupy; children can span multiple rows or columns.
The layout properties for setting the attach points and spans are set
using the GridLayoutChild associated to each child widget.
The behaviour of GtkGridLayout when several children occupy the same
grid cell is undefined.
GtkGridLayout can be used like a GtkBoxLayout if all children are
attached to the same row or column; however, if you only ever need a
single row or column, you should consider using GtkBoxLayout.
Constructors¶
new¶
Creates a new GtkGridLayout.
Methods¶
get_baseline_row¶
Retrieves the row set with GridLayout.set_baseline_row.
get_column_homogeneous¶
Checks whether all columns of grid should have the same width.
get_column_spacing¶
Retrieves the spacing set with GridLayout.set_column_spacing.
get_row_baseline_position¶
Returns the baseline position of row.
If no value has been set with
GridLayout.set_row_baseline_position,
the default value of BaselinePosition.CENTER
is returned.
Parameters:
row— a row index
get_row_homogeneous¶
Checks whether all rows of grid should have the same height.
get_row_spacing¶
Retrieves the spacing set with GridLayout.set_row_spacing.
set_baseline_row¶
Sets which row defines the global baseline for the entire grid.
Each row in the grid can have its own local baseline, but only
one of those is global, meaning it will be the baseline in the
parent of the grid.
Parameters:
row— the row index
set_column_homogeneous¶
Sets whether all columns of grid should have the same width.
Parameters:
homogeneous—Trueto make columns homogeneous
set_column_spacing¶
Sets the amount of space to insert between consecutive columns.
Parameters:
spacing— the amount of space between columns, in pixels
set_row_baseline_position¶
Sets how the baseline should be positioned on row of the
grid, in case that row is assigned more space than is requested.
Parameters:
row— a row indexpos— aGtkBaselinePosition
set_row_homogeneous¶
Sets whether all rows of grid should have the same height.
Parameters:
homogeneous—Trueto make rows homogeneous
set_row_spacing¶
Sets the amount of space to insert between consecutive rows.
Parameters:
spacing— the amount of space between rows, in pixels
Properties¶
baseline_row¶
The row to align to the baseline, when GtkWidget:valign is set
to Align.BASELINE.
column_homogeneous¶
Whether all the columns in the grid have the same width.
column_spacing¶
The amount of space between to consecutive columns.
row_homogeneous¶
Whether all the rows in the grid have the same height.
row_spacing¶
The amount of space between to consecutive rows.