Package: gtk
GFlags gtk-state-flags
Details Describes a widget state.
Widget states are used to match the widget against CSS pseudo-classes. Note
that GTK extends the regular CSS classes and sometimes uses different names. (define-g-flags "GtkStateFlags" gtk-state-flags (:export t :type-initializer "gtk_state_flags_get_type") (:normal 0) (:active #.(ash 1 0)) (:prelight #.(ash 1 1)) (:selected #.(ash 1 2)) (:insensitive #.(ash 1 3)) (:inconsistent #.(ash 1 4)) (:focused #.(ash 1 5)) (:backdrop #.(ash 1 6)) (:dir-ltr #.(ash 1 7)) (:dir-rtl #.(ash 1 8)) (:link #.(ash 1 9)) (:visited #.(ash 1 10)) (:checked #.(ash 1 11)) (:drop-active #.(ash 1 12)))
| See also |
2021-7-4