]> Pileus Git - ~andy/gtk/blob - gtk/gtkstyleproviderprivate.h
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gtk / gtkstyleproviderprivate.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2011 Benjamin Otte <otte@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_PROVIDER_PRIVATE_H__
19 #define __GTK_STYLE_PROVIDER_PRIVATE_H__
20
21 #include <glib-object.h>
22 #include "gtk/gtkcsskeyframesprivate.h"
23 #include "gtk/gtkcsslookupprivate.h"
24 #include "gtk/gtkcssmatcherprivate.h"
25 #include "gtk/gtkcssvalueprivate.h"
26 #include <gtk/gtktypes.h>
27
28 G_BEGIN_DECLS
29
30 #define GTK_TYPE_STYLE_PROVIDER_PRIVATE          (_gtk_style_provider_private_get_type ())
31 #define GTK_STYLE_PROVIDER_PRIVATE(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_PROVIDER_PRIVATE, GtkStyleProviderPrivate))
32 #define GTK_IS_STYLE_PROVIDER_PRIVATE(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_PROVIDER_PRIVATE))
33 #define GTK_STYLE_PROVIDER_PRIVATE_GET_INTERFACE(o)  (G_TYPE_INSTANCE_GET_INTERFACE ((o), GTK_TYPE_STYLE_PROVIDER_PRIVATE, GtkStyleProviderPrivateInterface))
34
35 typedef struct _GtkStyleProviderPrivateInterface GtkStyleProviderPrivateInterface;
36 /* typedef struct _GtkStyleProviderPrivate GtkStyleProviderPrivate; */ /* dummy typedef */
37
38 struct _GtkStyleProviderPrivateInterface
39 {
40   GTypeInterface g_iface;
41
42   GtkCssValue *         (* get_color)           (GtkStyleProviderPrivate *provider,
43                                                  const char              *name);
44   GtkSettings *         (* get_settings)        (GtkStyleProviderPrivate *provider);
45   GtkCssKeyframes *     (* get_keyframes)       (GtkStyleProviderPrivate *provider,
46                                                  const char              *name);
47   void                  (* lookup)              (GtkStyleProviderPrivate *provider,
48                                                  const GtkCssMatcher     *matcher,
49                                                  GtkCssLookup            *lookup);
50   GtkCssChange          (* get_change)          (GtkStyleProviderPrivate *provider,
51                                                  const GtkCssMatcher     *matcher);
52
53   /* signal */
54   void                  (* changed)             (GtkStyleProviderPrivate *provider);
55 };
56
57 GType                   _gtk_style_provider_private_get_type     (void) G_GNUC_CONST;
58
59 GtkSettings *           _gtk_style_provider_private_get_settings (GtkStyleProviderPrivate *provider);
60 GtkCssValue *           _gtk_style_provider_private_get_color    (GtkStyleProviderPrivate *provider,
61                                                                   const char              *name);
62 GtkCssKeyframes *       _gtk_style_provider_private_get_keyframes(GtkStyleProviderPrivate *provider,
63                                                                   const char              *name);
64 void                    _gtk_style_provider_private_lookup       (GtkStyleProviderPrivate *provider,
65                                                                   const GtkCssMatcher     *matcher,
66                                                                   GtkCssLookup            *lookup);
67 GtkCssChange            _gtk_style_provider_private_get_change   (GtkStyleProviderPrivate *provider,
68                                                                   const GtkCssMatcher     *matcher);
69
70 void                    _gtk_style_provider_private_changed      (GtkStyleProviderPrivate *provider);
71
72 G_END_DECLS
73
74 #endif /* __GTK_STYLE_PROVIDER_PRIVATE_H__ */