summaryrefslogtreecommitdiff
path: root/gtk/gtkcsssection.h
blob: 1bb04d0e71b2d1d2a6db70f0fa03f7e6c83e90d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* GTK - The GIMP Toolkit
 * Copyright (C) 2011 Red Hat, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef __GTK_CSS_SECTION_H__
#define __GTK_CSS_SECTION_H__

#include <gio/gio.h>
#include <gdk/gdk.h>

G_BEGIN_DECLS

#define GTK_TYPE_CSS_SECTION         (gtk_css_section_get_type ())

/**
 * GtkCssSectionType:
 * @GTK_CSS_SECTION_DOCUMENT: The section describes a complete document.
 *   This section time is the only one where gtk_css_section_get_parent()
 *   might return %NULL.
 * @GTK_CSS_SECTION_IMPORT: The section defines an import rule.
 * @GTK_CSS_SECTION_COLOR_DEFINITION: The section defines a color. This
 *   is a GTK extension to CSS.
 * @GTK_CSS_SECTION_BINDING_SET: The section defines a binding set. This
 *   is a GTK extension to CSS.
 * @GTK_CSS_SECTION_RULESET: The section defines a CSS ruleset.
 * @GTK_CSS_SECTION_SELECTOR: The section defines a CSS selector.
 * @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 [CSS
 *   Animations](http://dev.w3.org/csswg/css3-animations/#keyframes) 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](http://www.w3.org/TR/CSS21/grammar.html),
 * but may contain extensions.
 *
 * More types might be added in the future as the parser incorporates
 * more features.
 *
 * Since: 3.2
 */
typedef enum
{
  GTK_CSS_SECTION_DOCUMENT,
  GTK_CSS_SECTION_IMPORT,
  GTK_CSS_SECTION_COLOR_DEFINITION,
  GTK_CSS_SECTION_BINDING_SET,
  GTK_CSS_SECTION_RULESET,
  GTK_CSS_SECTION_SELECTOR,
  GTK_CSS_SECTION_DECLARATION,
  GTK_CSS_SECTION_VALUE,
  GTK_CSS_SECTION_KEYFRAMES
} GtkCssSectionType;

/**
 * GtkCssSection:
 *
 * GtkCssSection is an auxiliary object containing information about
 * the results of parsing a CSS style sheet.
 */
typedef struct _GtkCssSection GtkCssSection;

GDK_AVAILABLE_IN_3_2
GType              gtk_css_section_get_type            (void) G_GNUC_CONST;

GDK_AVAILABLE_IN_3_2
GtkCssSection *    gtk_css_section_ref                 (GtkCssSection        *section);
GDK_AVAILABLE_IN_3_2
void               gtk_css_section_unref               (GtkCssSection        *section);

GDK_AVAILABLE_IN_3_2
GtkCssSectionType  gtk_css_section_get_section_type    (const GtkCssSection  *section);
GDK_AVAILABLE_IN_3_2
GtkCssSection *    gtk_css_section_get_parent          (const GtkCssSection  *section);
GDK_AVAILABLE_IN_3_2
GFile *            gtk_css_section_get_file            (const GtkCssSection  *section);
GDK_AVAILABLE_IN_3_2
guint              gtk_css_section_get_start_line      (const GtkCssSection  *section);
GDK_AVAILABLE_IN_3_2
guint              gtk_css_section_get_start_position  (const GtkCssSection  *section);
GDK_AVAILABLE_IN_3_2
guint              gtk_css_section_get_end_line        (const GtkCssSection  *section);
GDK_AVAILABLE_IN_3_2
guint              gtk_css_section_get_end_position    (const GtkCssSection  *section);

G_END_DECLS

#endif /* __GTK_CSS_SECTION_H__ */