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