]> Pileus Git - ~andy/gtk/blob - gtk/gtkstylecontextprivate.h
stylecontext: Provide a function for getting the style provider
[~andy/gtk] / gtk / gtkstylecontextprivate.h
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 #include "gtkstyleproviderprivate.h"
23 #include "gtksymboliccolor.h"
24 #include "gtkbitmaskprivate.h"
25 #include "gtkcssvalueprivate.h"
26
27 G_BEGIN_DECLS
28
29 void            _gtk_style_context_set_widget                (GtkStyleContext *context,
30                                                               GtkWidget       *widget);
31 GtkCssValue   * _gtk_style_context_peek_property             (GtkStyleContext *context,
32                                                               guint            property_id);
33 double         _gtk_style_context_get_number                 (GtkStyleContext *context,
34                                                               guint            property_id,
35                                                               double           one_hundred_percent);
36 const GValue * _gtk_style_context_peek_style_property        (GtkStyleContext *context,
37                                                               GType            widget_type,
38                                                               GtkStateFlags    state,
39                                                               GParamSpec      *pspec);
40 void           _gtk_style_context_validate                   (GtkStyleContext *context,
41                                                               gint64           timestamp,
42                                                               GtkCssChange     change,
43                                                               const GtkBitmask*parent_changes);
44 void           _gtk_style_context_queue_invalidate           (GtkStyleContext *context,
45                                                               GtkCssChange     change);
46 gboolean       _gtk_style_context_check_region_name          (const gchar     *str);
47
48 gboolean       _gtk_style_context_resolve_color              (GtkStyleContext    *context,
49                                                               GtkSymbolicColor   *color,
50                                                               GdkRGBA            *result,
51                                                               GtkCssDependencies *dependencies);
52 GtkCssValue *  _gtk_style_context_resolve_color_value        (GtkStyleContext    *context,
53                                                               GtkCssValue        *current,
54                                                               GtkCssDependencies  current_deps,
55                                                               GtkCssValue        *color,
56                                                               GtkCssDependencies *dependencies);
57 void           _gtk_style_context_get_cursor_color           (GtkStyleContext    *context,
58                                                               GdkRGBA            *primary_color,
59                                                               GdkRGBA            *secondary_color);
60
61 GtkStyleProviderPrivate *
62                _gtk_style_context_get_style_provider         (GtkStyleContext    *context);
63
64 void           _gtk_style_context_stop_animations            (GtkStyleContext    *context);
65
66 G_END_DECLS
67
68 #endif /* __GTK_STYLE_CONTEXT_PRIVATE_H__ */