]> Pileus Git - ~andy/gtk/blob - gtk/gtktypeutils.c
Look up icon themes in the directories specified in the icon theme spec:
[~andy/gtk] / gtk / gtktypeutils.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #undef GTK_DISABLE_DEPRECATED
28
29 #include <config.h>
30 #include <string.h> /* strcmp */
31
32 #include "gtkalias.h"
33 #include "gtktypeutils.h"
34 #include "gtkobject.h"
35
36
37 /* --- functions --- */
38 GtkType
39 gtk_type_unique (GtkType            parent_type,
40                  const GtkTypeInfo *gtkinfo)
41 {
42   GTypeInfo tinfo = { 0, };
43
44   g_return_val_if_fail (GTK_TYPE_IS_OBJECT (parent_type), 0);
45   g_return_val_if_fail (gtkinfo != NULL, 0);
46   g_return_val_if_fail (gtkinfo->type_name != NULL, 0);
47   g_return_val_if_fail (g_type_from_name (gtkinfo->type_name) == 0, 0);
48
49   tinfo.class_size = gtkinfo->class_size;
50   tinfo.base_init = gtkinfo->base_class_init_func;
51   tinfo.base_finalize = NULL;
52   tinfo.class_init = (GClassInitFunc) gtkinfo->class_init_func;
53   tinfo.class_finalize = NULL;
54   tinfo.class_data = NULL;
55   tinfo.instance_size = gtkinfo->object_size;
56   tinfo.n_preallocs = 0;
57   tinfo.instance_init = gtkinfo->object_init_func;
58
59   return g_type_register_static (parent_type, gtkinfo->type_name, &tinfo, 0);
60 }
61
62 gpointer
63 gtk_type_class (GtkType type)
64 {
65   static GQuark quark_static_class = 0;
66   gpointer class;
67
68   if (!G_TYPE_IS_ENUM (type) && !G_TYPE_IS_FLAGS (type))
69     g_return_val_if_fail (G_TYPE_IS_OBJECT (type), NULL);
70
71   /* ok, this is a bit ugly, GLib reference counts classes,
72    * and gtk_type_class() used to always return static classes.
73    * while we coud be faster with just peeking the glib class
74    * for the normal code path, we can't be sure that that
75    * class stays around (someone else might be holding the
76    * reference count and is going to drop it later). so to
77    * ensure that Gtk actually holds a static reference count
78    * on the class, we use GType qdata to store referenced
79    * classes, and only return those.
80    */
81
82   class = g_type_get_qdata (type, quark_static_class);
83   if (!class)
84     {
85       if (!quark_static_class)
86         quark_static_class = g_quark_from_static_string ("GtkStaticTypeClass");
87
88       class = g_type_class_ref (type);
89       g_assert (class != NULL);
90       g_type_set_qdata (type, quark_static_class, class);
91     }
92
93   return class;
94 }
95
96 gpointer
97 gtk_type_new (GtkType type)
98 {
99   gpointer object;
100
101   g_return_val_if_fail (GTK_TYPE_IS_OBJECT (type), NULL);
102
103   object = g_object_new (type, NULL);
104
105   return object;
106 }
107
108 void
109 gtk_type_init (GTypeDebugFlags debug_flags)
110 {
111   static gboolean initialized = FALSE;
112   
113   if (!initialized)
114     {
115       initialized = TRUE;
116
117       /* initialize GLib type system
118        */
119       g_type_init_with_debug_flags (debug_flags);
120       
121       /* GTK_TYPE_OBJECT
122        */
123       gtk_object_get_type ();
124     }
125 }
126
127 GType
128 gtk_identifier_get_type (void)
129 {
130   static GType our_type = 0;
131   
132   if (our_type == 0)
133     {
134       GTypeInfo tinfo = { 0, };
135       our_type = g_type_register_static (G_TYPE_STRING, "GtkIdentifier", &tinfo, 0);
136     }
137
138   return our_type;
139 }
140
141 GtkEnumValue*
142 gtk_type_enum_get_values (GtkType enum_type)
143 {
144   GEnumClass *class;
145
146   g_return_val_if_fail (G_TYPE_IS_ENUM (enum_type), NULL);
147   
148   class = gtk_type_class (enum_type);
149   
150   return class->values;
151 }
152
153 GtkFlagValue*
154 gtk_type_flags_get_values (GtkType flags_type)
155 {
156   GFlagsClass *class;
157
158   g_return_val_if_fail (G_TYPE_IS_FLAGS (flags_type), NULL);
159
160   class = gtk_type_class (flags_type);
161
162   return class->values;
163 }
164
165 GtkEnumValue*
166 gtk_type_enum_find_value (GtkType      enum_type,
167                           const gchar *value_name)
168 {
169   GtkEnumValue *value;
170   GEnumClass *class;
171
172   g_return_val_if_fail (G_TYPE_IS_ENUM (enum_type), NULL);
173   g_return_val_if_fail (value_name != NULL, NULL);
174
175   class = gtk_type_class (enum_type);
176   value = g_enum_get_value_by_name (class, value_name);
177   if (!value)
178     value = g_enum_get_value_by_nick (class, value_name);
179
180   return value;
181 }
182
183 GtkFlagValue*
184 gtk_type_flags_find_value (GtkType      flags_type,
185                            const gchar *value_name)
186 {
187   GtkFlagValue *value;
188   GFlagsClass *class;
189
190   g_return_val_if_fail (G_TYPE_IS_FLAGS (flags_type), NULL);
191   g_return_val_if_fail (value_name != NULL, NULL);
192
193   class = gtk_type_class (flags_type);
194   value = g_flags_get_value_by_name (class, value_name);
195   if (!value)
196     value = g_flags_get_value_by_nick (class, value_name);
197
198   return value;
199 }
200