]> Pileus Git - ~andy/gtk/blob - gtk/gtkstyleprovider.h
Add GtkWidgetPath parameter to gtk_style_provider_get_style().
[~andy/gtk] / gtk / gtkstyleprovider.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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GTK_STYLE_PROVIDER_H__
21 #define __GTK_STYLE_PROVIDER_H__
22
23 #include <glib-object.h>
24 #include "gtkwidgetpath.h"
25 #include "gtkstyleset.h"
26 #include "gtkenums.h"
27
28 G_BEGIN_DECLS
29
30 #define GTK_TYPE_STYLE_PROVIDER          (gtk_style_provider_get_type ())
31 #define GTK_STYLE_PROVIDER(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_PROVIDER, GtkStyleProvider))
32 #define GTK_IS_STYLE_PROVIDER(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_PROVIDER))
33 #define GTK_STYLE_PROVIDER_GET_IFACE(o)  (G_TYPE_INSTANCE_GET_INTERFACE ((o), GTK_TYPE_STYLE_PROVIDER, GtkStyleProviderIface))
34
35 typedef struct GtkStyleProviderIface GtkStyleProviderIface;
36 typedef struct GtkStyleProvider GtkStyleProvider; /* dummy typedef */
37
38 typedef enum {
39   GTK_SELECTOR_TYPE_PATH,
40   GTK_SELECTOR_TYPE_NAME,
41   GTK_SELECTOR_TYPE_CLASS_PATH,
42   GTK_SELECTOR_TYPE_CLASS_NAME
43 } GtkSelectorType;
44
45 struct GtkStyleProviderIface
46 {
47   GTypeInterface g_iface;
48
49   GtkStyleSet * (* get_style) (GtkStyleProvider *provider,
50                                GtkWidgetPath    *path);
51 };
52
53 GType gtk_style_provider_get_type (void) G_GNUC_CONST;
54
55 GtkStyleSet *gtk_style_provider_get_style (GtkStyleProvider *provider,
56                                            GtkWidgetPath    *path);
57
58
59 G_END_DECLS
60
61 #endif /* __GTK_STYLE_PROVIDER_H__ */