Class
GntTree
Instance methods
gnt_tree_set_column_is_binary
Set whether data in a column should be considered as binary data, and not as strings. A column containing binary data will be display empty text.
gnt_tree_set_column_is_right_aligned
Set whether text in a column should be right-aligned.
since: 2.1
gnt_tree_set_column_resizable
Set whether a column can be resized to keep the same ratio when the tree is resized.
since: 2.1
gnt_tree_set_column_visible
Set whether a column is visible or not. This can be useful when, for example, we want to store some data which we don’t want/need to display.
gnt_tree_set_column_width_ratio
Set column widths to use when calculating column widths after a tree is resized.
since: 2.1
Methods inherited from GntBindable (6)
gnt_bindable_bindings_view
Returns a GntTree populated with “key” -> “binding” for the widget.
since: 2.1.1
gnt_bindable_build_help_window
Builds a window that list the key bindings for a GntBindable object. From this window a user can select a listing to rebind a new key for the given action.
since: 2.1.1
gnt_bindable_check_key
Discover if a key is bound.
since: 2.4.2
gnt_bindable_perform_action_key
Perform an action from a keybinding.
gnt_bindable_perform_action_named
Perform an action on a bindable object.
gnt_bindable_remap_keys
Signals
Signals inherited from GntWidget (15)
GntWidget::activate
GntWidget::clicked
GntWidget::confirm-size
GntWidget::context-menu
GntWidget::destroy
GntWidget::draw
GntWidget::expose
GntWidget::gained-focus
GntWidget::hide
GntWidget::key-pressed
GntWidget::lost-focus
GntWidget::map
GntWidget::position-set
GntWidget::size-changed
GntWidget::size-request
Signals inherited from GObject (1)
GObject::notify
The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.
Class structure
struct GntTreeClass {
void (* selection_changed) (
GntTreeRow* old,
GntTreeRow* current
);
void (* toggled) (
GntTree* tree,
gpointer key
);
}
The class structure for GntTree
.
Class members
selection_changed: void (* selection_changed) ( GntTreeRow* old, GntTreeRow* current )
- No description available.
toggled: void (* toggled) ( GntTree* tree, gpointer key )
- No description available.