| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
Drop gtk_column_view_column_new_with_factory and
just make gtk_column_view_column_new accept a
nullable factory. This follows what we've been
doing elsewhere.
Update all callers.
|
|
|
|
|
| |
GDK_AVAILABLE_IN_ALL was missing for one method in GtkColumnView and one
in GtkColumnViewColumn.
|
|
|
|
|
| |
This will be used to determine how to distribute
available extra space in a column view.
|
|
|
|
|
| |
This will be used for interactive column resizing
in the future.
|
|
|
|
|
| |
Add a fixed-width property similar to the same property
of GtkTreeViewColumn.
|
|
|
|
|
|
| |
Add a ::header-menu property that will be used
to create a context menu for the header of the
column.
|
|
|
|
|
| |
This lets us hide columns, which is an expected
feature of columned lists.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is a somewhat large commit that:
- Adds GtkColumnViewSorter
This is a special-purpose, private sorter implementation which sorts
according to multiple sorters, allowing each individual sorter to be
inverted. This will be used with clickable column view headers.
- Adds a read-only GtkColumnView::sorter property
The GtkColumnView creates a GtkColumnViewSorter at startup that it uses
for this property.
- Adds a writable GtkColumnViewColumn::sorter property
This allows defining per-column sorters. Whenever an application sets a
sorter for a column, the header becomes clickable and whenever
a header is clicked, that column's sorter is prepended to the list of
sorters, unless it is already the first sorter, in which case we invert
its order. No column can be in the list more than once.
|
|
It's just a copy/paste of the listview code with all the internals
gutted. The code doesn't do anything.
|