Package: gtk

GFlags gtk-region-flags

Details

Describes a region within a widget.
(define-g-flags "GtkRegionFlags" gtk-region-flags
  (:export t
   :type-initializer "gtk_region_flags_get_type")
  (:even #.(ash 1 0))
  (:odd #.(ash 1 1))
  (:first #.(ash 1 2))
  (:last #.(ash 1 3))
  (:only #.(ash 1 4))
  (:sorted #.(ash 1 5)))  
:even
Region has an even number within a set.
:odd
Region has an odd number within a set.
:first
Region is the first one within a set.
:last
Region is the last one within a set.
:only
Region is the only one within a set.
:sorted
Region is part of a sorted area.
 

See also

2021-11-27