gtkmm 4.16.0
|
A list model that sorts its items. More...
#include <gtkmm/sortlistmodel.h>
Public Member Functions | |
SortListModel (SortListModel &&src) noexcept | |
SortListModel & | operator= (SortListModel &&src) noexcept |
~SortListModel () noexcept override | |
GtkSortListModel * | gobj () |
Provides access to the underlying C GObject. | |
const GtkSortListModel * | gobj () const |
Provides access to the underlying C GObject. | |
GtkSortListModel * | gobj_copy () |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. | |
void | set_sorter (const Glib::RefPtr< Sorter > &sorter) |
Sets a new sorter on self. | |
Glib::RefPtr< Sorter > | get_sorter () |
Gets the sorter that is used to sort self. | |
Glib::RefPtr< const Sorter > | get_sorter () const |
Gets the sorter that is used to sort self. | |
void | set_section_sorter (const Glib::RefPtr< Sorter > &sorter) |
Sets a new section sorter on self. | |
Glib::RefPtr< Sorter > | get_section_sorter () |
Gets the section sorter that is used to sort items of self into sections. | |
Glib::RefPtr< const Sorter > | get_section_sorter () const |
Gets the section sorter that is used to sort items of self into sections. | |
void | set_model (const Glib::RefPtr< Gio::ListModel > &model) |
Sets the model to be sorted. | |
Glib::RefPtr< Gio::ListModel > | get_model () |
Gets the model currently sorted or nullptr if none. | |
Glib::RefPtr< const Gio::ListModel > | get_model () const |
Gets the model currently sorted or nullptr if none. | |
void | set_incremental (bool incremental=true) |
Sets the sort model to do an incremental sort. | |
bool | get_incremental () const |
Returns whether incremental sorting is enabled. | |
guint | get_pending () const |
Estimates progress of an ongoing sorting operation. | |
Glib::PropertyProxy< bool > | property_incremental () |
If the model should sort items incrementally. | |
Glib::PropertyProxy_ReadOnly< bool > | property_incremental () const |
If the model should sort items incrementally. | |
Glib::PropertyProxy_ReadOnly< GType > | property_item_type () const |
The type of items. | |
Glib::PropertyProxy< Glib::RefPtr< Gio::ListModel > > | property_model () |
The model being sorted. | |
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Gio::ListModel > > | property_model () const |
The model being sorted. | |
Glib::PropertyProxy_ReadOnly< unsigned int > | property_n_items () const |
The number of items. | |
Glib::PropertyProxy_ReadOnly< guint > | property_pending () const |
Estimate of unsorted items remaining. | |
Glib::PropertyProxy< Glib::RefPtr< Sorter > > | property_sorter () |
The sorter for this model. | |
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Sorter > > | property_sorter () const |
The sorter for this model. | |
Glib::PropertyProxy< Glib::RefPtr< Sorter > > | property_section_sorter () |
The section sorter for this model, if one is set. | |
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Sorter > > | property_section_sorter () const |
The section sorter for this model, if one is set. | |
Static Public Member Functions | |
static GType | get_type () |
Get the GType for this class, for use with the underlying GObject type system. | |
static Glib::RefPtr< SortListModel > | create (const Glib::RefPtr< Gio::ListModel > &model, const Glib::RefPtr< Sorter > &sorter) |
Protected Member Functions | |
SortListModel (const Glib::RefPtr< Gio::ListModel > &model, const Glib::RefPtr< Sorter > &sorter) | |
Related Symbols | |
(Note that these are not member symbols.) | |
Glib::RefPtr< Gtk::SortListModel > | wrap (GtkSortListModel *object, bool take_copy=false) |
A Glib::wrap() method for this object. | |
A list model that sorts its items.
Gtk::SortListModel is a list model that takes a list model and sorts its elements according to a Gtk::Sorter.
The model can be set up to do incremental sorting, so that sorting long lists doesn't block the UI. See set_incremental() for details.
Gtk::SortListModel is a generic model and because of that it cannot take advantage of any external knowledge when sorting. If you run into performance issues with Gtk::SortListModel, it is strongly recommended that you write your own sorting list model.
|
noexcept |
|
overridenoexcept |
|
explicitprotected |
|
static |
bool Gtk::SortListModel::get_incremental | ( | ) | const |
Returns whether incremental sorting is enabled.
See set_incremental().
true
if incremental sorting is enabled. Glib::RefPtr< Gio::ListModel > Gtk::SortListModel::get_model | ( | ) |
Gets the model currently sorted or nullptr
if none.
Glib::RefPtr< const Gio::ListModel > Gtk::SortListModel::get_model | ( | ) | const |
Gets the model currently sorted or nullptr
if none.
guint Gtk::SortListModel::get_pending | ( | ) | const |
Estimates progress of an ongoing sorting operation.
The estimate is the number of items that would still need to be sorted to finish the sorting operation if this was a linear algorithm. So this number is not related to how many items are already correctly sorted.
If you want to estimate the progress, you can use code like this:
[C example ellipted]
If no sort operation is ongoing - in particular when property_incremental() is false
- this function returns 0.
Glib::RefPtr< Sorter > Gtk::SortListModel::get_section_sorter | ( | ) |
Gets the section sorter that is used to sort items of self into sections.
Gets the section sorter that is used to sort items of self into sections.
Glib::RefPtr< Sorter > Gtk::SortListModel::get_sorter | ( | ) |
Gets the sorter that is used to sort self.
Gets the sorter that is used to sort self.
|
static |
Get the GType for this class, for use with the underlying GObject type system.
|
inline |
Provides access to the underlying C GObject.
|
inline |
Provides access to the underlying C GObject.
GtkSortListModel * Gtk::SortListModel::gobj_copy | ( | ) |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
|
noexcept |
Glib::PropertyProxy< bool > Gtk::SortListModel::property_incremental | ( | ) |
If the model should sort items incrementally.
Default value: false
Glib::PropertyProxy_ReadOnly< bool > Gtk::SortListModel::property_incremental | ( | ) | const |
If the model should sort items incrementally.
Default value: false
Glib::PropertyProxy_ReadOnly< GType > Gtk::SortListModel::property_item_type | ( | ) | const |
The type of items.
See Gio::ListModel::get_item_type().
Glib::PropertyProxy< Glib::RefPtr< Gio::ListModel > > Gtk::SortListModel::property_model | ( | ) |
The model being sorted.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Gio::ListModel > > Gtk::SortListModel::property_model | ( | ) | const |
The model being sorted.
Glib::PropertyProxy_ReadOnly< unsigned int > Gtk::SortListModel::property_n_items | ( | ) | const |
The number of items.
See Gio::ListModel::get_n_items().
Default value: 0
Glib::PropertyProxy_ReadOnly< guint > Gtk::SortListModel::property_pending | ( | ) | const |
Estimate of unsorted items remaining.
Default value: 0
Glib::PropertyProxy< Glib::RefPtr< Sorter > > Gtk::SortListModel::property_section_sorter | ( | ) |
The section sorter for this model, if one is set.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Sorter > > Gtk::SortListModel::property_section_sorter | ( | ) | const |
The section sorter for this model, if one is set.
Glib::PropertyProxy< Glib::RefPtr< Sorter > > Gtk::SortListModel::property_sorter | ( | ) |
The sorter for this model.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Sorter > > Gtk::SortListModel::property_sorter | ( | ) | const |
The sorter for this model.
Sets the sort model to do an incremental sort.
When incremental sorting is enabled, the Gtk::SortListModel
will not do a complete sort immediately, but will instead queue an idle handler that incrementally sorts the items towards their correct position. This of course means that items do not instantly appear in the right place. It also means that the total sorting time is a lot slower.
When your filter blocks the UI while sorting, you might consider turning this on. Depending on your model and sorters, this may become interesting around 10,000 to 100,000 items.
By default, incremental sorting is disabled.
See get_pending() for progress information about an ongoing incremental sorting operation.
incremental | true to sort incrementally. |
Sets the model to be sorted.
The model's item type must conform to the item type of self.
model | The model to be sorted. |
Sets a new section sorter on self.
sorter | The Gtk::Sorter to sort model with. |
Sets a new sorter on self.
sorter | The Gtk::Sorter to sort model with. |
|
related |
A Glib::wrap() method for this object.
object | The C instance. |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |