gtkmm  3.95.1
Public Member Functions | Static Public Member Functions | Protected Member Functions | Related Functions | List of all members
Gtk::SelectionModel Class Reference

An extension of the list model interface that handles selections. More...

#include <gtkmm/selectionmodel.h>

Inheritance diagram for Gtk::SelectionModel:
Inheritance graph
[legend]

Public Member Functions

 SelectionModel (SelectionModel&& src) noexcept
 
SelectionModeloperator= (SelectionModel&& src) noexcept
 
 ~SelectionModel () noexcept override
 
GtkSelectionModel* gobj ()
 Provides access to the underlying C GObject. More...
 
const GtkSelectionModel* gobj () const
 Provides access to the underlying C GObject. More...
 
bool is_slected (guint position) const
 Checks if the given item is selected. More...
 
bool select_item (guint position, bool exclusive)
 Requests to select an item in the model. More...
 
bool unselect_item (guint position)
 Requests to unselect an item in the model. More...
 
bool select_range (guint position, guint n_items, bool exclusive)
 Requests to select a range of items in the model. More...
 
bool unselect_range (guint position, guint n_items)
 Requests to unselect a range of items in the model. More...
 
bool select_all ()
 Requests to select all items in the model. More...
 
bool unselect_all ()
 Requests to unselect all items in the model. More...
 
void query_range (guint position, guint& start_range, guint& n_items, bool& selected) const
 This function allows to query the selection status of multiple elements at once. More...
 
Glib::SignalProxy< void(guint, guint)> signal_selection_changed ()
 
- Public Member Functions inherited from Glib::Interface
 Interface ()
 
 Interface (Interface &&src) noexcept
 
Interfaceoperator= (Interface &&src) noexcept
 
 Interface (const Glib::Interface_Class &interface_class)
 
 Interface (GObject *castitem)
 
 ~Interface () noexcept override
 
 Interface (const Interface &)=delete
 
Interfaceoperator= (const Interface &)=delete
 
GObject * gobj ()
 
const GObject * gobj () const
 
- Public Member Functions inherited from Glib::ObjectBase
 ObjectBase (const ObjectBase &)=delete
 
ObjectBaseoperator= (const ObjectBase &)=delete
 
void set_property_value (const Glib::ustring &property_name, const Glib::ValueBase &value)
 
void get_property_value (const Glib::ustring &property_name, Glib::ValueBase &value) const
 
void set_property (const Glib::ustring &property_name, const PropertyType &value)
 
void get_property (const Glib::ustring &property_name, PropertyType &value) const
 
PropertyType get_property (const Glib::ustring &property_name) const
 
sigc::connection connect_property_changed (const Glib::ustring &property_name, const sigc::slot< void()> &slot)
 
sigc::connection connect_property_changed (const Glib::ustring &property_name, sigc::slot< void()> &&slot)
 
void freeze_notify ()
 
void thaw_notify ()
 
virtual void reference () const
 
virtual void unreference () const
 
GObject * gobj ()
 
const GObject * gobj () const
 
GObject * gobj_copy () const
 
- Public Member Functions inherited from sigc::trackable
 trackable () noexcept
 
 trackable (const trackable &src) noexcept
 
 trackable (trackable &&src) noexcept
 
 ~trackable ()
 
void add_destroy_notify_callback (notifiable *data, func_destroy_notify func) const
 
void notify_callbacks ()
 
trackableoperator= (const trackable &src)
 
trackableoperator= (trackable &&src) noexcept
 
void remove_destroy_notify_callback (notifiable *data) const
 

Static Public Member Functions

static void add_interface (GType gtype_implementer)
 
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 

Protected Member Functions

 SelectionModel ()
 You should derive from this class to use it. More...
 
void selection_changed (guint position, guint n_items)
 Helper function for implementations of Gtk::SelectionModel. More...
 
virtual bool is_selected_vfunc (guint position) const
 
virtual bool select_item_vfunc (guint position, bool exclusive)
 
virtual bool unselect_item_vfunc (guint position)
 
virtual bool select_range_vfunc (guint position, guint n_items, bool exclusive)
 
virtual bool unselect_range_vfunc (guint position, guint n_items)
 
virtual bool select_all_vfunc ()
 
virtual bool unselect_all_vfunc ()
 
virtual void query_range_vfunc (guint position, guint& start_range, guint& n_items, bool& selected) const
 
- Protected Member Functions inherited from Glib::ObjectBase
 ObjectBase ()
 
 ObjectBase (const char *custom_type_name)
 
 ObjectBase (const std::type_info &custom_type_info)
 
 ObjectBase (ObjectBase &&src) noexcept
 
ObjectBaseoperator= (ObjectBase &&src) noexcept
 
virtual ~ObjectBase () noexcept=0
 
void initialize (GObject *castitem)
 
void initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper)
 

Related Functions

(Note that these are not member functions.)

Glib::RefPtr< Gtk::SelectionModelwrap (GtkSelectionModel* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 

Additional Inherited Members

- Public Types inherited from sigc::trackable
typedef internal::func_destroy_notify func_destroy_notify
 
- Public Types inherited from sigc::notifiable
typedef internal::func_destroy_notify func_destroy_notify
 

Detailed Description

An extension of the list model interface that handles selections.

Gtk::SelectionModel is an interface that extends the Gio::ListModel interface by adding support for selections. This support is then used by widgets using list models to add the ability to select and unselect various items.

GTK provides default implementations of the common selection modes such as Gtk::SingleSelection, so you will only need to implement this interface if you want detailed control about how selections should be handled.

A Gtk::SelectionModel supports a single boolean per row indicating if a row is selected or not. This can be queried via is_selected(). When the selected state of one or more rows changes, the model will emit signal_selection_changed() by calling the selection_changed() method. The positions given in that signal may have their selection state changed, though that is not a requirement. If new items added to the model via Gio::ListModel::signal_items_changed() are selected or not is up to the implementation.

Additionally, the interface can expose functionality to select and unselect items. If these functions are implemented, GTK's list widgets will allow users to select and unselect items. However, Gtk::SelectionModels are free to only implement them partially or not at all. In that case the widgets will not support the unimplemented operations.

When selecting or unselecting is supported by a model, the return values of the selection functions do NOT indicate if selection or unselection happened. They are only meant to indicate complete failure, like when this mode of selecting is not supported by the model. Selections may happen asynchronously, so the only reliable way to find out when an item was selected is to listen to the signals that indicate selection.

See also
Gio::ListModel, Gtk::SingleSelection
Since gtkmm 3.96:

Constructor & Destructor Documentation

Gtk::SelectionModel::SelectionModel ( )
protected

You should derive from this class to use it.

Gtk::SelectionModel::SelectionModel ( SelectionModel&&  src)
noexcept
Gtk::SelectionModel::~SelectionModel ( )
overridenoexcept

Member Function Documentation

static void Gtk::SelectionModel::add_interface ( GType  gtype_implementer)
static
static GType Gtk::SelectionModel::get_type ( )
static

Get the GType for this class, for use with the underlying GObject type system.

GtkSelectionModel* Gtk::SelectionModel::gobj ( )
inline

Provides access to the underlying C GObject.

const GtkSelectionModel* Gtk::SelectionModel::gobj ( ) const
inline

Provides access to the underlying C GObject.

virtual bool Gtk::SelectionModel::is_selected_vfunc ( guint  position) const
protectedvirtual
bool Gtk::SelectionModel::is_slected ( guint  position) const

Checks if the given item is selected.

Parameters
positionThe position of the item to query.
Returns
true if the item is selected.
SelectionModel& Gtk::SelectionModel::operator= ( SelectionModel&&  src)
noexcept
void Gtk::SelectionModel::query_range ( guint  position,
guint &  start_range,
guint &  n_items,
bool &  selected 
) const

This function allows to query the selection status of multiple elements at once.

It is passed a position and returns a range of elements of uniform selection status.

If position is greater than the number of items in model, n_items is set to 0. Otherwise the returned range is guaranteed to include the passed-in position, so n_items will be >= 1.

Positions directly adjacent to the returned range may have the same selection status as the returned range.

This is an optimization function to make iterating over a model faster when few items are selected. However, it is valid behavior for implementations to use a naive implementation that only ever returns a single element.

Parameters
positionThe position inside the range.
start_rangeReturns the position of the first element of the range.
n_itemsReturns the size of the range.
selectedReturns whether items in range are selected.
virtual void Gtk::SelectionModel::query_range_vfunc ( guint  position,
guint &  start_range,
guint &  n_items,
bool &  selected 
) const
protectedvirtual
bool Gtk::SelectionModel::select_all ( )

Requests to select all items in the model.

virtual bool Gtk::SelectionModel::select_all_vfunc ( )
protectedvirtual
bool Gtk::SelectionModel::select_item ( guint  position,
bool  exclusive 
)

Requests to select an item in the model.

Parameters
positionThe position of the item to select.
exclusiveWhether previously selected items should be unselected.
virtual bool Gtk::SelectionModel::select_item_vfunc ( guint  position,
bool  exclusive 
)
protectedvirtual
bool Gtk::SelectionModel::select_range ( guint  position,
guint  n_items,
bool  exclusive 
)

Requests to select a range of items in the model.

Parameters
positionThe first item to select.
n_itemsThe number of items to select.
exclusiveWhether previously selected items should be unselected.
virtual bool Gtk::SelectionModel::select_range_vfunc ( guint  position,
guint  n_items,
bool  exclusive 
)
protectedvirtual
void Gtk::SelectionModel::selection_changed ( guint  position,
guint  n_items 
)
protected

Helper function for implementations of Gtk::SelectionModel.

Call this when a the selection changes to emit the signal_selection_changed() signal.

Parameters
positionThe first changed item.
n_itemsThe number of changed items.
Glib::SignalProxy<void(guint, guint)> Gtk::SelectionModel::signal_selection_changed ( )
Slot Prototype:
void on_my_selection_changed(guint position, guint n_items)

Flags: Run Last

Emitted when the selection state of some of the items in model changes.

Note that this signal does not specify the new selection state of the items, they need to be queried manually. It is also not necessary for a model to change the selection state of any of the items in the selection model, though it would be rather useless to emit such a signal.

Parameters
positionThe first item that may have changed.
n_itemsNumber of items with changes.
bool Gtk::SelectionModel::unselect_all ( )

Requests to unselect all items in the model.

virtual bool Gtk::SelectionModel::unselect_all_vfunc ( )
protectedvirtual
bool Gtk::SelectionModel::unselect_item ( guint  position)

Requests to unselect an item in the model.

Parameters
positionThe position of the item to unselect.
virtual bool Gtk::SelectionModel::unselect_item_vfunc ( guint  position)
protectedvirtual
bool Gtk::SelectionModel::unselect_range ( guint  position,
guint  n_items 
)

Requests to unselect a range of items in the model.

Parameters
positionThe first item to unselect.
n_itemsThe number of items to unselect.
virtual bool Gtk::SelectionModel::unselect_range_vfunc ( guint  position,
guint  n_items 
)
protectedvirtual

Friends And Related Function Documentation

Glib::RefPtr< Gtk::SelectionModel > wrap ( GtkSelectionModel *  object,
bool  take_copy = false 
)
related

A Glib::wrap() method for this object.

Parameters
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
Returns
A C++ instance that wraps this C instance.