]> Pileus Git - ~andy/gtk/blob - gtk/gtkstyleprovider.h
GtkStyleProvider: Add defines for most common priorities.
[~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 #define GTK_STYLE_PROVIDER_PRIORITY_FALLBACK      1
36 #define GTK_STYLE_PROVIDER_PRIORITY_DEFAULT     200
37 #define GTK_STYLE_PROVIDER_PRIORITY_APPLICATION 400
38 #define GTK_STYLE_PROVIDER_PRIORITY_USER        600
39
40 typedef struct GtkStyleProviderIface GtkStyleProviderIface;
41 typedef struct GtkStyleProvider GtkStyleProvider; /* dummy typedef */
42
43 typedef enum {
44   GTK_SELECTOR_TYPE_PATH,
45   GTK_SELECTOR_TYPE_NAME,
46   GTK_SELECTOR_TYPE_CLASS_PATH,
47   GTK_SELECTOR_TYPE_CLASS_NAME
48 } GtkSelectorType;
49
50 struct GtkStyleProviderIface
51 {
52   GTypeInterface g_iface;
53
54   GtkStyleSet * (* get_style) (GtkStyleProvider *provider,
55                                GtkWidgetPath    *path);
56 };
57
58 GType gtk_style_provider_get_type (void) G_GNUC_CONST;
59
60 GtkStyleSet *gtk_style_provider_get_style (GtkStyleProvider *provider,
61                                            GtkWidgetPath    *path);
62
63
64 G_END_DECLS
65
66 #endif /* __GTK_STYLE_PROVIDER_H__ */