Package: gtk

GEnum gtk-recent-sort-type

Details

Used to specify the sorting method to be applyed to the recently used resource list.
(define-g-enum "GtkRecentSortType" gtk-recent-sort-type
  (:export t
   :type-initializer "gtk_recent_sort_type_get_type")
  (:none 0)
  (:mru 1)
  (:lru 2)
  (:custom 3))  
:none
Do not sort the returned list of recently used resources.
:mru
Sort the returned list with the most recently used items first.
:lru
Sort the returned list with the least recently used items first.
:custom
Sort the returned list using a custom sorting function passed using the gtk-recent-manager-set-sort-func function.
 

See also

2021-12-26