summaryrefslogtreecommitdiff
path: root/gtk/gtkcsssection.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2012-04-19 03:41:41 +0200
committerBenjamin Otte <otte@redhat.com>2012-09-17 20:39:10 +0200
commitc4cdb33b32713435769af4956d231d314a761184 (patch)
tree2a25ad1f269f67f87cb014d822e9a2448d4e05ac /gtk/gtkcsssection.h
parent3ee837564e9115c73f060f6cf953c2be3a401f63 (diff)
downloadgtk+-c4cdb33b32713435769af4956d231d314a761184.tar.gz
cssprovider: Add parsing support for @keyframes
Diffstat (limited to 'gtk/gtkcsssection.h')
-rw-r--r--gtk/gtkcsssection.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/gtk/gtkcsssection.h b/gtk/gtkcsssection.h
index 7901a43d03..b26c587371 100644
--- a/gtk/gtkcsssection.h
+++ b/gtk/gtkcsssection.h
@@ -40,6 +40,9 @@ G_BEGIN_DECLS
* @GTK_CSS_SECTION_DECLARATION: The section defines the declaration of
* a CSS variable.
* @GTK_CSS_SECTION_VALUE: The section defines the value of a CSS declaration.
+ * @GTK_CSS_SECTION_KEYFRAMES: The section defines keyframes. See <ulink
+ * url="http://dev.w3.org/csswg/css3-animations/#keyframes">CSS
+ * animations</ulink> for details. Since 3.6
*
* The different types of sections indicate parts of a CSS document as
* parsed by GTK's CSS parser. They are oriented towards the CSS grammar
@@ -60,7 +63,8 @@ typedef enum
GTK_CSS_SECTION_RULESET,
GTK_CSS_SECTION_SELECTOR,
GTK_CSS_SECTION_DECLARATION,
- GTK_CSS_SECTION_VALUE
+ GTK_CSS_SECTION_VALUE,
+ GTK_CSS_SECTION_KEYFRAMES
} GtkCssSectionType;
typedef struct _GtkCssSection GtkCssSection;