ColumnView#
Superclasses: Widget
, InitiallyUnowned
, Object
Implemented Interfaces: Accessible
, Buildable
, ConstraintTarget
, Scrollable
GtkColumnView
presents a large dynamic list of items using multiple columns
with headers.
GtkColumnView
uses the factories of its columns to generate a cell widget for
each column, for each visible item and displays them together as the row for
this item.
The show_row_separators
and
show_column_separators
properties offer a simple way
to display separators between the rows or columns.
GtkColumnView
allows the user to select items according to the selection
characteristics of the model. For models that allow multiple selected items,
it is possible to turn on rubberband selection, using
enable_rubberband
.
The column view supports sorting that can be customized by the user by
clicking on column headers. To set this up, the GtkSorter
returned by
get_sorter
must be attached to a sort model for the
data that the view is showing, and the columns must have sorters attached to
them by calling set_sorter
. The initial sort
order can be set with sort_by_column
.
The column view also supports interactive resizing and reordering of
columns, via Drag-and-Drop of the column headers. This can be enabled or
disabled with the reorderable
and
resizable
properties.
To learn more about the list widget framework, see the overview.
CSS nodes#
columnview[.column-separators][.rich-list][.navigation-sidebar][.data-table]
├── header
│ ├── <column header>
┊ ┊
│ ╰── <column header>
│
├── listview
│
┊
╰── [rubberband]
GtkColumnView
uses a single CSS node named columnview. It may carry the
.column-separators style class, when show_column_separators
property is set. Header widgets appear below a node with name header.
The rows are contained in a GtkListView
widget, so there is a listview
node with the same structure as for a standalone GtkListView
widget.
If show_row_separators
is set, it will be passed
on to the list view, causing its CSS node to carry the .separators style class.
For rubberband selection, a node with name rubberband is used.
The main columnview node may also carry style classes to select the style of list presentation: .rich-list, .navigation-sidebar or .data-table.
Accessibility#
GtkColumnView
uses the TREE_GRID
role, header title
widgets are using the COLUMN_HEADER
role. The row widgets
are using the ROW
role, and individual cells are using
the GRID_CELL
role
Constructors#
- class ColumnView
- classmethod new(model: SelectionModel | None = None) Widget #
Creates a new
GtkColumnView
.You most likely want to call
append_column
to add columns next.- Parameters:
model – the list model to use
Methods#
- class ColumnView
- append_column(column: ColumnViewColumn) None #
Appends the
column
to the end of the columns inself
.- Parameters:
column – a
GtkColumnViewColumn
that hasn’t been added to aGtkColumnView
yet
- get_columns() ListModel #
Gets the list of columns in this column view.
This list is constant over the lifetime of
self
and can be used to monitor changes to the columns ofself
by connecting to the ::items-changed signal.
- get_header_factory() ListItemFactory | None #
Gets the factory that’s currently used to populate section headers.
Added in version 4.12.
- get_model() SelectionModel | None #
Gets the model that’s currently used to read the items displayed.
- get_row_factory() ListItemFactory | None #
Gets the factory set via
set_row_factory
.Added in version 4.12.
- get_show_column_separators() bool #
Returns whether the list should show separators between columns.
- get_single_click_activate() bool #
Returns whether rows will be activated on single click and selected on hover.
- get_sorter() Sorter | None #
Returns a special sorter that reflects the users sorting choices in the column view.
To allow users to customizable sorting by clicking on column headers, this sorter needs to be set on the sort model underneath the model that is displayed by the view.
See
set_sorter
for setting up per-column sorting.Here is an example:
gtk_column_view_column_set_sorter (column, sorter); gtk_column_view_append_column (view, column); sorter = g_object_ref (gtk_column_view_get_sorter (view))); model = gtk_sort_list_model_new (store, sorter); selection = gtk_no_selection_new (model); gtk_column_view_set_model (view, selection);
- get_tab_behavior() ListTabBehavior #
Gets the behavior set for the Tab key.
Added in version 4.12.
- insert_column(position: int, column: ColumnViewColumn) None #
Inserts a column at the given position in the columns of
self
.If
column
is already a column ofself
, it will be repositioned.- Parameters:
position – the position to insert
column
atcolumn – the
GtkColumnViewColumn
to insert
- remove_column(column: ColumnViewColumn) None #
Removes the
column
from the list of columns ofself
.- Parameters:
column – a
GtkColumnViewColumn
that’s part ofself
- scroll_to(pos: int, column: ColumnViewColumn | None, flags: ListScrollFlags, scroll: ScrollInfo | None = None) None #
Scroll to the row at the given position - or cell if a column is given - and performs the actions specified in
flags
.This function works no matter if the listview is shown or focused. If it isn’t, then the changes will take effect once that happens.
Added in version 4.12.
- Parameters:
pos – position of the item. Must be less than the number of items in the view.
column – The column to scroll to or
None
to not scroll columns.flags – actions to perform
scroll – details of how to perform the scroll operation or
None
to scroll into view
- set_enable_rubberband(enable_rubberband: bool) None #
Sets whether selections can be changed by dragging with the mouse.
- Parameters:
enable_rubberband –
True
to enable rubberband selection
- set_header_factory(factory: ListItemFactory | None = None) None #
Sets the
GtkListItemFactory
to use for populating theListHeader
objects used in section headers.If this factory is set to
None
, the list will not show section headers.Added in version 4.12.
- Parameters:
factory – the factory to use
- set_model(model: SelectionModel | None = None) None #
Sets the model to use.
This must be a
SelectionModel
.- Parameters:
model – the model to use
- set_reorderable(reorderable: bool) None #
Sets whether columns should be reorderable by dragging.
- Parameters:
reorderable – whether columns should be reorderable
- set_row_factory(factory: ListItemFactory | None = None) None #
Sets the factory used for configuring rows. The factory must be for configuring
ColumnViewRow
objects.If this factory is not set - which is the default - then the defaults will be used.
This factory is not used to set the widgets displayed in the individual cells. For that see
set_factory
andGtkColumnViewCell
.Added in version 4.12.
- Parameters:
factory – The row factory
- set_show_column_separators(show_column_separators: bool) None #
Sets whether the list should show separators between columns.
- Parameters:
show_column_separators –
True
to show column separators
- set_show_row_separators(show_row_separators: bool) None #
Sets whether the list should show separators between rows.
- Parameters:
show_row_separators –
True
to show row separators
- set_single_click_activate(single_click_activate: bool) None #
Sets whether rows should be activated on single click and selected on hover.
- Parameters:
single_click_activate –
True
to activate items on single click
- set_tab_behavior(tab_behavior: ListTabBehavior) None #
Sets the behavior of the Tab and Shift`+:kbd:`Tab keys.
Added in version 4.12.
- Parameters:
tab_behavior – The desired tab behavior
- sort_by_column(column: ColumnViewColumn | None, direction: SortType) None #
Sets the sorting of the view.
This function should be used to set up the initial sorting. At runtime, users can change the sorting of a column view by clicking on the list headers.
This call only has an effect if the sorter returned by
get_sorter
is set on a sort model, andset_sorter
has been called oncolumn
to associate a sorter with the column.If
column
isNone
, the view will be unsorted.- Parameters:
column – the
GtkColumnViewColumn
to sort bydirection – the direction to sort in
Properties#
- class ColumnView
-
- props.header_factory: ListItemFactory#
The type of the None singleton.
Added in version 4.12.
- props.model: SelectionModel#
The type of the None singleton.
- props.row_factory: ListItemFactory#
The type of the None singleton.
Added in version 4.12.
- props.tab_behavior: ListTabBehavior#
The type of the None singleton.
Added in version 4.12.
Signals#
- class ColumnView.signals
- activate(position: int) None #
Emitted when a row has been activated by the user, usually via activating the GtkListBase|list.activate-item action.
This allows for a convenient way to handle activation in a columnview. See
set_activatable
for details on how to use this signal.- Parameters:
position – position of item to activate