]> Pileus Git - ~andy/gtk/blob - gtk/gtkstyleprovider.h
Add GtkStyleProvider, an interface to provide style details.
[~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 "gtkstyleset.h"
25 #include "gtkenums.h"
26
27 G_BEGIN_DECLS
28
29 #define GTK_TYPE_STYLE_PROVIDER          (gtk_style_provider_get_type ())
30 #define GTK_STYLE_PROVIDER(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_PROVIDER, GtkStyleProvider))
31 #define GTK_IS_STYLE_PROVIDER(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_PROVIDER))
32 #define GTK_STYLE_PROVIDER_GET_IFACE(o)  (G_TYPE_INSTANCE_GET_INTERFACE ((o), GTK_TYPE_STYLE_PROVIDER, GtkStyleProviderIface))
33
34 typedef struct GtkStyleProviderIface GtkStyleProviderIface;
35 typedef struct GtkStyleProvider GtkStyleProvider; /* dummy typedef */
36
37 typedef enum {
38   GTK_SELECTOR_TYPE_PATH,
39   GTK_SELECTOR_TYPE_NAME,
40   GTK_SELECTOR_TYPE_CLASS_PATH,
41   GTK_SELECTOR_TYPE_CLASS_NAME
42 } GtkSelectorType;
43
44 struct GtkStyleProviderIface
45 {
46   GTypeInterface g_iface;
47
48   GtkStyleSet * (* get_style) (GtkStyleProvider *provider);
49 };
50
51 GType gtk_style_provider_get_type (void) G_GNUC_CONST;
52
53 GtkStyleSet *gtk_style_provider_get_style (GtkStyleProvider *provider);
54
55
56 G_END_DECLS
57
58 #endif /* __GTK_STYLE_PROVIDER_H__ */