]> Pileus Git - ~andy/gtk/blob - gtk/gtkmodifierstyle.h
0a3f2d5ff0bd4d290f5ced71a185c212a31f6f29
[~andy/gtk] / gtk / gtkmodifierstyle.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_MODIFIER_STYLE_H__
21 #define __GTK_MODIFIER_STYLE_H__
22
23 #include <glib-object.h>
24 #include <gdk/gdk.h>
25 #include <gtk/gtk.h>
26
27 G_BEGIN_DECLS
28
29 #define GTK_TYPE_MODIFIER_STYLE         (_gtk_modifier_style_get_type ())
30 #define GTK_MODIFIER_STYLE(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_MODIFIER_STYLE, GtkModifierStyle))
31 #define GTK_MODIFIER_STYLE_CLASS(c)     (G_TYPE_CHECK_CLASS_CAST    ((c), GTK_TYPE_MODIFIER_STYLE, GtkModifierStyleClass))
32 #define GTK_IS_MODIFIER_STYLE(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_MODIFIER_STYLE))
33 #define GTK_IS_MODIFIER_STYLE_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE    ((c), GTK_TYPE_MODIFIER_STYLE))
34 #define GTK_MODIFIER_STYLE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS  ((o), GTK_TYPE_MODIFIER_STYLE, GtkModifierStyleClass))
35
36 typedef struct _GtkModifierStyle GtkModifierStyle;
37 typedef struct _GtkModifierStyleClass GtkModifierStyleClass;
38 typedef struct _GtkModifierStylePrivate GtkModifierStylePrivate;
39
40 struct _GtkModifierStyle
41 {
42   GObject parent_object;
43   GtkModifierStylePrivate *priv;
44 };
45
46 struct _GtkModifierStyleClass
47 {
48   GObjectClass parent_class;
49
50   /* Padding for future expansion */
51   void (*_gtk_reserved1) (void);
52   void (*_gtk_reserved2) (void);
53   void (*_gtk_reserved3) (void);
54   void (*_gtk_reserved4) (void);
55 };
56
57 GType _gtk_modifier_style_get_type (void) G_GNUC_CONST;
58
59 GtkModifierStyle * _gtk_modifier_style_new (void);
60
61 void _gtk_modifier_style_set_background_color (GtkModifierStyle *style,
62                                                GtkStateFlags     state,
63                                                const GdkRGBA    *color);
64 void _gtk_modifier_style_set_color            (GtkModifierStyle *style,
65                                                GtkStateFlags     state,
66                                                const GdkRGBA    *color);
67 void _gtk_modifier_style_set_font             (GtkModifierStyle           *style,
68                                                const PangoFontDescription *font_desc);
69
70 void _gtk_modifier_style_map_color            (GtkModifierStyle *style,
71                                                const gchar      *name,
72                                                const GdkRGBA    *color);
73
74 void _gtk_modifier_style_set_color_property   (GtkModifierStyle *style,
75                                                GType             widget_type,
76                                                const gchar      *prop_name,
77                                                const GdkRGBA    *color);
78
79 G_END_DECLS
80
81 #endif /* __GTK_MODIFIER_STYLE_H__ */