gtkmm 4.17.0
|
Sort by comparing numbers. More...
#include <gtkmm/numericsorter.h>
Static Public Member Functions | |
static Glib::RefPtr< NumericSorter > | create (const Glib::RefPtr< Expression< T > > &expression) |
![]() | |
static GType | get_type () |
Get the GType for this class, for use with the underlying GObject type system. | |
![]() | |
static GType | get_type () |
Get the GType for this class, for use with the underlying GObject type system. | |
Protected Member Functions | |
NumericSorter (const Glib::RefPtr< Expression< T > > &expression) | |
![]() | |
NumericSorterBase (const Glib::RefPtr< ExpressionBase > &expression) | |
![]() | |
Sorter () | |
virtual Ordering | compare_vfunc (gpointer item1, gpointer item2) |
virtual Order | get_order_vfunc () |
![]() | |
Object () | |
Object (const Glib::ConstructParams &construct_params) | |
Object (GObject *castitem) | |
~Object () noexcept override | |
![]() | |
ObjectBase () | |
ObjectBase (const char *custom_type_name) | |
ObjectBase (const std::type_info &custom_type_info) | |
ObjectBase (ObjectBase &&src) noexcept | |
ObjectBase & | operator= (ObjectBase &&src) noexcept |
virtual | ~ObjectBase () noexcept=0 |
void | initialize (GObject *castitem) |
void | initialize_move (GObject *castitem, Glib::ObjectBase *previous_wrapper) |
Additional Inherited Members | |
![]() | |
enum class | Order { Order::PARTIAL , Order::NONE , Order::TOTAL } |
Describes the type of order that a Gtk::Sorter may produce. More... | |
enum class | Change { Change::DIFFERENT , Change::INVERTED , Change::LESS_STRICT , Change::MORE_STRICT } |
Describes changes in a sorter in more detail and allows users to optimize resorting. More... | |
![]() | |
typedef void(*)(gpointer data | DestroyNotify) |
![]() | |
typedef internal::func_destroy_notify | func_destroy_notify |
![]() | |
typedef internal::func_destroy_notify | func_destroy_notify |
![]() | |
Glib::RefPtr< Gtk::NumericSorterBase > | wrap (GtkNumericSorter *object, bool take_copy=false) |
A Glib::wrap() method for this object. | |
![]() | |
Glib::RefPtr< Gtk::Sorter > | wrap (GtkSorter *object, bool take_copy=false) |
A Glib::wrap() method for this object. | |
Sort by comparing numbers.
Gtk::NumericSorter is a Gtk::Sorter that compares numbers.
To obtain the numbers to compare, this sorter evaluates a Gtk::Expression.
|
protected |
|
static |
Glib::RefPtr< Expression< T > > Gtk::NumericSorter< T >::get_expression | ( | ) |
Gets the expression that is evaluated to obtain numbers from items.
nullptr
. Glib::RefPtr< const Expression< T > > Gtk::NumericSorter< T >::get_expression | ( | ) | const |
Gets the expression that is evaluated to obtain numbers from items.
nullptr
. Glib::PropertyProxy< Glib::RefPtr< Expression< T > > > Gtk::NumericSorter< T >::property_expression | ( | ) |
The expression to evalute on items to get a number to compare with.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Expression< T > > > Gtk::NumericSorter< T >::property_expression | ( | ) | const |
The expression to evalute on items to get a number to compare with.
void Gtk::NumericSorter< T >::set_expression | ( | const Glib::RefPtr< Expression< T > > & | expression | ) |
Sets the expression that is evaluated to obtain numbers from items.
Unless an expression is set on the Gtk::NumericSorter, the sorter will always compare items as invalid.
The expression must have a return type that can be compared numerically, such as int or double.
expression | A Gtk::Expression, or nullptr . |