]> Pileus Git - ~andy/gtk/blob - gtk/gtkstyleprovider.h
Add theming docs
[~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 "gtkiconfactory.h"
26 #include "gtkstyleset.h"
27 #include "gtkenums.h"
28
29 G_BEGIN_DECLS
30
31 #define GTK_TYPE_STYLE_PROVIDER          (gtk_style_provider_get_type ())
32 #define GTK_STYLE_PROVIDER(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_PROVIDER, GtkStyleProvider))
33 #define GTK_IS_STYLE_PROVIDER(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_PROVIDER))
34 #define GTK_STYLE_PROVIDER_GET_IFACE(o)  (G_TYPE_INSTANCE_GET_INTERFACE ((o), GTK_TYPE_STYLE_PROVIDER, GtkStyleProviderIface))
35
36 #define GTK_STYLE_PROVIDER_PRIORITY_FALLBACK      1
37 #define GTK_STYLE_PROVIDER_PRIORITY_DEFAULT     200
38 #define GTK_STYLE_PROVIDER_PRIORITY_SETTINGS    400
39 #define GTK_STYLE_PROVIDER_PRIORITY_APPLICATION 600
40 #define GTK_STYLE_PROVIDER_PRIORITY_USER        800
41
42 typedef struct _GtkStyleProviderIface GtkStyleProviderIface;
43 typedef struct _GtkStyleProvider GtkStyleProvider; /* dummy typedef */
44
45 /**
46  * GtkStyleProviderIface
47  * @get_style: Gets a set of style information that applies to a widget path.
48  * @get_style_property: Gets the value of a widget style property that applies to a widget path.
49  * @get_icon_factory: Gets the icon factory that applies to a widget path.
50  */
51 struct _GtkStyleProviderIface
52 {
53   GTypeInterface g_iface;
54
55   GtkStyleSet * (* get_style) (GtkStyleProvider *provider,
56                                GtkWidgetPath    *path);
57
58   gboolean (* get_style_property) (GtkStyleProvider *provider,
59                                    GtkWidgetPath    *path,
60                                    const gchar      *property_name,
61                                    GValue           *value);
62
63   GtkIconFactory * (* get_icon_factory) (GtkStyleProvider *provider,
64                                          GtkWidgetPath    *path);
65 };
66
67 GType gtk_style_provider_get_type (void) G_GNUC_CONST;
68
69 GtkStyleSet *gtk_style_provider_get_style (GtkStyleProvider *provider,
70                                            GtkWidgetPath    *path);
71
72 gboolean gtk_style_provider_get_style_property (GtkStyleProvider *provider,
73                                                 GtkWidgetPath    *path,
74                                                 const gchar      *property_name,
75                                                 GValue           *value);
76
77 GtkIconFactory * gtk_style_provider_get_icon_factory (GtkStyleProvider *provider,
78                                                       GtkWidgetPath    *path);
79
80 G_END_DECLS
81
82 #endif /* __GTK_STYLE_PROVIDER_H__ */