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