]> Pileus Git - ~andy/gtk/blob - gtk/gtkstyleproviderprivate.h
Change FSF Address
[~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/gtkenums.h>
24 #include <gtk/gtksymboliccolor.h>
25 #include <gtk/gtkwidgetpath.h>
26
27 G_BEGIN_DECLS
28
29 #define GTK_TYPE_STYLE_PROVIDER_PRIVATE          (_gtk_style_provider_private_get_type ())
30 #define GTK_STYLE_PROVIDER_PRIVATE(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_PROVIDER_PRIVATE, GtkStyleProviderPrivate))
31 #define GTK_IS_STYLE_PROVIDER_PRIVATE(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_PROVIDER_PRIVATE))
32 #define GTK_STYLE_PROVIDER_PRIVATE_GET_INTERFACE(o)  (G_TYPE_INSTANCE_GET_INTERFACE ((o), GTK_TYPE_STYLE_PROVIDER_PRIVATE, GtkStyleProviderPrivateInterface))
33
34 typedef struct _GtkStyleProviderPrivateInterface GtkStyleProviderPrivateInterface;
35 typedef struct _GtkStyleProviderPrivate GtkStyleProviderPrivate; /* dummy typedef */
36
37 struct _GtkStyleProviderPrivateInterface
38 {
39   GTypeInterface g_iface;
40
41   GtkSymbolicColor *    (* get_color)           (GtkStyleProviderPrivate *provider,
42                                                  const char              *name);
43   void                  (* lookup)              (GtkStyleProviderPrivate *provider,
44                                                  GtkWidgetPath           *path,
45                                                  GtkStateFlags            state,
46                                                  GtkCssLookup            *lookup);
47 };
48
49 GType                   _gtk_style_provider_private_get_type     (void) G_GNUC_CONST;
50
51 GtkSymbolicColor *      _gtk_style_provider_private_get_color    (GtkStyleProviderPrivate *provider,
52                                                                   const char              *name);
53 void                    _gtk_style_provider_private_lookup       (GtkStyleProviderPrivate *provider,
54                                                                   GtkWidgetPath           *path,
55                                                                   GtkStateFlags            state,
56                                                                   GtkCssLookup            *lookup);
57
58 G_END_DECLS
59
60 #endif /* __GTK_STYLE_PROVIDER_PRIVATE_H__ */