]> Pileus Git - ~andy/gtk/blob - modules/engines/ms-windows/msw_rc_style.c
Do not use static GTypeInfo and GInterfaceInfo
[~andy/gtk] / modules / engines / ms-windows / msw_rc_style.c
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, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include "msw_style.h"
24 #include "msw_rc_style.h"
25
26 static void msw_rc_style_init (MswRcStyle * style);
27 static void msw_rc_style_class_init (MswRcStyleClass * klass);
28 static GtkStyle *msw_rc_style_create_style (GtkRcStyle * rc_style);
29
30 static GtkRcStyleClass *parent_class;
31
32 GType msw_type_rc_style = 0;
33
34 void
35 msw_rc_style_register_type (GTypeModule *module)
36 {
37   const GTypeInfo object_info = {
38     sizeof (MswRcStyleClass),
39     (GBaseInitFunc) NULL,
40     (GBaseFinalizeFunc) NULL,
41     (GClassInitFunc) msw_rc_style_class_init,
42     NULL,                       /* class_finalize */
43     NULL,                       /* class_data */
44     sizeof (MswRcStyle),
45     0,                          /* n_preallocs */
46     (GInstanceInitFunc) msw_rc_style_init,
47   };
48
49   msw_type_rc_style = g_type_module_register_type (module,
50                                                    GTK_TYPE_RC_STYLE,
51                                                    "MswRcStyle",
52                                                    &object_info, 0);
53 }
54
55 static void
56 msw_rc_style_init (MswRcStyle *style)
57 {
58 }
59
60 static void
61 msw_rc_style_class_init (MswRcStyleClass *klass)
62 {
63   GtkRcStyleClass *rc_style_class = GTK_RC_STYLE_CLASS (klass);
64
65   parent_class = g_type_class_peek_parent (klass);
66
67   rc_style_class->create_style = msw_rc_style_create_style;
68 }
69
70 /* Create an empty style suitable to this RC style
71  */
72 static GtkStyle *
73 msw_rc_style_create_style (GtkRcStyle *rc_style)
74 {
75   return g_object_new (MSW_TYPE_STYLE, NULL);
76 }