]> Pileus Git - ~andy/gtk/blob - gtk/gtkstyleproviderprivate.h
syleprovider: Add a vfunc to get the changes
[~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/gtkcsslookupprivate.h"
23 #include "gtk/gtkcssmatcherprivate.h"
24 #include <gtk/gtkenums.h>
25 #include <gtk/gtksymboliccolor.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   GtkSymbolicColor *    (* get_color)           (GtkStyleProviderPrivate *provider,
43                                                  const char              *name);
44   void                  (* lookup)              (GtkStyleProviderPrivate *provider,
45                                                  const GtkCssMatcher     *matcher,
46                                                  GtkCssLookup            *lookup);
47   GtkCssChange          (* get_change)          (GtkStyleProviderPrivate *provider,
48                                                  const GtkCssMatcher     *matcher);
49 };
50
51 GType                   _gtk_style_provider_private_get_type     (void) G_GNUC_CONST;
52
53 GtkSymbolicColor *      _gtk_style_provider_private_get_color    (GtkStyleProviderPrivate *provider,
54                                                                   const char              *name);
55 void                    _gtk_style_provider_private_lookup       (GtkStyleProviderPrivate *provider,
56                                                                   const GtkCssMatcher     *matcher,
57                                                                   GtkCssLookup            *lookup);
58 GtkCssChange            _gtk_style_provider_private_get_change   (GtkStyleProviderPrivate *provider,
59                                                                   const GtkCssMatcher     *matcher);
60
61 G_END_DECLS
62
63 #endif /* __GTK_STYLE_PROVIDER_PRIVATE_H__ */