1/* GTK - The GIMP Toolkit
2 * Copyright (C) 2010 Carlos Garnacho <carlosg@gnome.org>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef __GTK_STYLE_CONTEXT_PRIVATE_H__
19#define __GTK_STYLE_CONTEXT_PRIVATE_H__
20
21#include "gtkstylecontext.h"
22
23#include "gtkcssnodeprivate.h"
24#include "gtkstyleproviderprivate.h"
25#include "gtkcssvalueprivate.h"
26
27G_BEGIN_DECLS
28
29GtkStyleContext *gtk_style_context_new_for_node (GtkCssNode *node);
30
31GtkCssNode *gtk_style_context_get_node (GtkStyleContext *context);
32GtkStyleProvider *
33 gtk_style_context_get_style_provider (GtkStyleContext *context);
34
35void gtk_style_context_save_to_node (GtkStyleContext *context,
36 GtkCssNode *node);
37
38GtkCssStyle * gtk_style_context_lookup_style (GtkStyleContext *context);
39GtkCssValue * _gtk_style_context_peek_property (GtkStyleContext *context,
40 guint property_id);
41void _gtk_style_context_get_cursor_color (GtkStyleContext *context,
42 GdkRGBA *primary_color,
43 GdkRGBA *secondary_color);
44
45G_END_DECLS
46
47#endif /* __GTK_STYLE_CONTEXT_PRIVATE_H__ */
48

source code of gtk/gtk/gtkstylecontextprivate.h