]> Pileus Git - ~andy/gtk/blob - modules/engines/ms-windows/msw_style.h
Change FSF Address
[~andy/gtk] / modules / engines / ms-windows / msw_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_STYLE_H
22 #define MSW_STYLE_H
23
24 #include "gtk/gtk.h"
25
26 typedef struct _MswStyle MswStyle;
27 typedef struct _MswStyleClass MswStyleClass;
28
29 extern GType msw_type_style;
30
31 #define MSW_TYPE_STYLE              msw_type_style
32 #define MSW_STYLE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), MSW_TYPE_STYLE, MswStyle))
33 #define MSW_STYLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), MSW_TYPE_STYLE, MswStyleClass))
34 #define MSW_IS_STYLE(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), MSW_TYPE_STYLE))
35 #define MSW_IS_STYLE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), MSW_TYPE_STYLE))
36 #define MSW_STYLE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), MSW_TYPE_STYLE, MswStyleClass))
37
38 struct _MswStyle
39 {
40   GtkStyle parent_instance;
41 };
42
43 struct _MswStyleClass
44 {
45   GtkStyleClass parent_class;
46 };
47
48 void msw_style_register_type (GTypeModule *module);
49 void msw_style_init (void);
50 void msw_style_finalize (void);
51 void msw_style_setup_system_settings (void);
52
53 #endif /* MSW_TYPE_STYLE */