diff options
author | Benjamin Otte <otte@redhat.com> | 2014-08-14 03:00:02 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2014-08-16 16:34:14 +0200 |
commit | 36a2e7ca8e2f4b41670532b70b1733d9a3e7b670 (patch) | |
tree | 5abb3fe5361f6d1bb3167348b394fb39059fe84f /gtk/gtkenums.h | |
parent | 3f4b9d8164b33311ea4d51e5ce84677a913fb823 (diff) | |
download | gtk+-36a2e7ca8e2f4b41670532b70b1733d9a3e7b670.tar.gz |
css: Add a :checked pseudoclass
https://bugzilla.gnome.org/show_bug.cgi?id=733967
Diffstat (limited to 'gtk/gtkenums.h')
-rw-r--r-- | gtk/gtkenums.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/gtkenums.h b/gtk/gtkenums.h index aa893d6b40..6322f126fa 100644 --- a/gtk/gtkenums.h +++ b/gtk/gtkenums.h @@ -856,6 +856,7 @@ typedef enum * @GTK_STATE_FLAG_DIR_RTL: Widget is in right-to-left text direction. Since 3.8 * @GTK_STATE_FLAG_LINK: Widget is a link. Since 3.12 * @GTK_STATE_FLAG_VISITED: The location the widget points to has already been visited. Since 3.12 + * @GTK_STATE_FLAG_CHECKED: Widget is checked. Since 3.14 * * Describes a widget state. Widget states are used to match the widget * against CSS pseudo-classes. Note that GTK extends the regular CSS @@ -874,7 +875,8 @@ typedef enum GTK_STATE_FLAG_DIR_LTR = 1 << 7, GTK_STATE_FLAG_DIR_RTL = 1 << 8, GTK_STATE_FLAG_LINK = 1 << 9, - GTK_STATE_FLAG_VISITED = 1 << 10 + GTK_STATE_FLAG_VISITED = 1 << 10, + GTK_STATE_FLAG_CHECKED = 1 << 11 } GtkStateFlags; /** |