Package: gtk

GFlags gtk:region-flags

Declaration

(gobject:define-gflags "GtkRegionFlags" 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)))  

Values

: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.

Details

Describes a region within a widget.
 

See also

#2024-3-21