]> Pileus Git - ~andy/gtk/blob - modules/engines/ms-windows/msw_rc_style.h
Change FSF Address
[~andy/gtk] / modules / engines / ms-windows / msw_rc_style.h
1 /* MS-Windows Engine (aka GTK-Wimp)
2  *
3  * Copyright (C) 2003, 2004 Raymond Penners <raymond@dotsphinx.com>
4  * Includes code adapted from redmond95 by Owen Taylor, and
5  * gtk-nativewin by Evan Martin
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #ifndef MSW_RC_STYLE_H
22 #define MSW_RC_STYLE_H
23
24 #include "gtk/gtk.h"
25
26 typedef struct _MswRcStyle MswRcStyle;
27 typedef struct _MswRcStyleClass MswRcStyleClass;
28
29 extern GType msw_type_rc_style;
30
31 #define MSW_TYPE_RC_STYLE              msw_type_rc_style
32 #define MSW_RC_STYLE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), MSW_TYPE_RC_STYLE, MswRcStyle))
33 #define MSW_RC_STYLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), MSW_TYPE_RC_STYLE, MswRcStyleClass))
34 #define MSW_IS_RC_STYLE(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), MSW_TYPE_RC_STYLE))
35 #define MSW_IS_RC_STYLE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), MSW_TYPE_RC_STYLE))
36 #define MSW_RC_STYLE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), MSW_TYPE_RC_STYLE, MswRcStyleClass))
37
38 struct _MswRcStyle
39 {
40   GtkRcStyle parent_instance;
41   
42   GList *img_list;
43 };
44
45 struct _MswRcStyleClass
46 {
47   GtkRcStyleClass parent_class;
48 };
49
50 void msw_rc_style_register_type (GTypeModule *module);
51
52 #endif /* MSW_TYPE_RC_STYLE */