]> Pileus Git - ~andy/gtk/blob - gtk/gtkmodifierstyle.h
e211a8070f7f4ac37fd58b26d85340dcc830621a
[~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
39 struct _GtkModifierStyle
40 {
41   GObject parent_object;
42   gpointer priv;
43 };
44
45 struct _GtkModifierStyleClass
46 {
47   GObjectClass parent_class;
48 };
49
50 GType gtk_modifier_style_get_type (void) G_GNUC_CONST;
51
52 GtkModifierStyle * gtk_modifier_style_new (void);
53
54 void gtk_modifier_style_set_background_color (GtkModifierStyle *style,
55                                               GtkStateFlags     state,
56                                               const GdkRGBA    *color);
57 void gtk_modifier_style_set_color            (GtkModifierStyle *style,
58                                               GtkStateFlags     state,
59                                               const GdkRGBA    *color);
60 void gtk_modifier_style_set_font             (GtkModifierStyle           *style,
61                                               const PangoFontDescription *font_desc);
62
63 void gtk_modifier_style_map_color            (GtkModifierStyle *style,
64                                               const gchar      *name,
65                                               const GdkRGBA    *color);
66
67 void gtk_modifier_style_set_color_property  (GtkModifierStyle *style,
68                                              GType             widget_type,
69                                              const gchar      *prop_name,
70                                              const GdkRGBA    *color);
71
72 G_END_DECLS
73
74 #endif /* __GTK_MODIFIER_STYLE_H__ */