Package: gtk

GEnum gtk:list-tab-behavior

Declaration

(gobject:define-genum "GtkListTabBehavior" list-tab-behavior
  (:export t
   :type-initializer "gtk_list_tab_behavior_get_type")
  (:all 0)
  (:item 1)
  (:cell 2))  

Values

:all
Cycle through all focusable items of the list.
:item
Cycle through a single list element, then move focus out of the list. Moving focus between items needs to be done with the arrow keys.
:cell
Cycle only through a single cell, then move focus out of the list. Moving focus between cells needs to be done with the arrow keys. This is only relevant for cell-based widgets like the gtk:column-view widget, otherwise it behaves like :item.

Details

Used to configure the focus behavior in the :forward and :backward direction, like the Tab key in a gtk:list-view widget.

Since 4.12
 

See also

2023-11-25