atktext: Fixing some typos on atk_text_get_text_at_offset deprecation
[atk.git] / atk / atkregistry.c
blobfb732c987d68873532a430ffb7ae997b9a7572f8
1 /* ATK - Accessibility Toolkit
2 * Copyright 2001 Sun Microsystems Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library 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.
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 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library 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.
20 #include "atkregistry.h"
21 #include "atknoopobjectfactory.h"
23 static AtkRegistry *default_registry = NULL;
25 static void atk_registry_init (AtkRegistry *instance,
26 AtkRegistryClass *klass);
27 static void atk_registry_finalize (GObject *instance);
28 static void atk_registry_class_init (AtkRegistryClass *klass);
29 static AtkRegistry* atk_registry_new (void);
31 static gpointer parent_class = NULL;
33 GType
34 atk_registry_get_type (void)
36 static GType type = 0;
38 if (!type)
40 static const GTypeInfo info =
42 sizeof (AtkRegistryClass),
43 (GBaseInitFunc) NULL, /* base_init */
44 (GBaseFinalizeFunc) NULL, /* base_finalize */
45 (GClassInitFunc) atk_registry_class_init, /* class_init */
46 (GClassFinalizeFunc) NULL, /* class_finalize */
47 NULL, /* class_data */
48 sizeof (AtkRegistry), /* instance size */
49 0, /* n_preallocs */
50 (GInstanceInitFunc) atk_registry_init, /* instance init */
51 NULL /* value table */
54 type = g_type_register_static (G_TYPE_OBJECT, "AtkRegistry", &info, 0);
57 return type;
60 static void
61 atk_registry_class_init (AtkRegistryClass *klass)
63 GObjectClass *object_class = (GObjectClass *) klass;
65 parent_class = g_type_class_peek_parent (klass);
67 object_class->finalize = atk_registry_finalize;
70 #if 0
72 * Cannot define a class_finalize function when calling
73 * g_type_register_static()
75 static void
76 atk_registry_class_finalize (GObjectClass *klass)
78 g_return_if_fail (ATK_IS_REGISTRY_CLASS (klass));
80 g_object_unref (G_OBJECT (default_registry));
82 #endif
84 static void
85 atk_registry_init (AtkRegistry *instance, AtkRegistryClass *klass)
87 instance->factory_type_registry = g_hash_table_new ((GHashFunc) NULL,
88 (GEqualFunc) NULL);
89 instance->factory_singleton_cache = g_hash_table_new ((GHashFunc) NULL,
90 (GEqualFunc) NULL);
93 static AtkRegistry *
94 atk_registry_new (void)
96 GObject *object;
98 object = g_object_new (ATK_TYPE_REGISTRY, NULL);
100 g_return_val_if_fail (ATK_IS_REGISTRY (object), NULL);
102 return (AtkRegistry *) object;
105 static void
106 atk_registry_finalize (GObject *object)
108 AtkRegistry *registry = ATK_REGISTRY (object);
110 g_hash_table_destroy (registry->factory_type_registry);
111 g_hash_table_destroy (registry->factory_singleton_cache);
113 G_OBJECT_CLASS (parent_class)->finalize (object);
117 * atk_registry_set_factory_type:
118 * @registry: the #AtkRegistry in which to register the type association
119 * @type: an #AtkObject type
120 * @factory_type: an #AtkObjectFactory type to associate with @type. Must
121 * implement AtkObject appropriate for @type.
123 * Associate an #AtkObjectFactory subclass with a #GType. Note:
124 * The associated @factory_type will thereafter be responsible for
125 * the creation of new #AtkObject implementations for instances
126 * appropriate for @type.
128 void
129 atk_registry_set_factory_type (AtkRegistry *registry,
130 GType type,
131 GType factory_type)
133 GType old_type;
134 gpointer value;
135 AtkObjectFactory *old_factory;
137 g_return_if_fail (ATK_IS_REGISTRY (registry));
139 value = g_hash_table_lookup (registry->factory_type_registry,
140 (gpointer) type);
141 old_type = (GType) value;
142 if (old_type && old_type != factory_type)
144 g_hash_table_remove (registry->factory_type_registry,
145 (gpointer) type);
147 * If the old factory was created, notify it that it has
148 * been replaced, then free it.
150 old_factory = g_hash_table_lookup (registry->factory_singleton_cache,
151 (gpointer) old_type);
152 if (old_factory)
154 atk_object_factory_invalidate (old_factory);
155 g_type_free_instance ((GTypeInstance *) old_factory);
158 g_hash_table_insert (registry->factory_type_registry,
159 (gpointer) type,
160 (gpointer) factory_type);
164 * atk_registry_get_factory_type:
165 * @registry: an #AtkRegistry
166 * @type: a #GType with which to look up the associated #AtkObjectFactory
167 * subclass
169 * Provides a #GType indicating the #AtkObjectFactory subclass
170 * associated with @type.
172 * Returns: a #GType associated with type @type
174 GType
175 atk_registry_get_factory_type (AtkRegistry *registry,
176 GType type)
178 GType factory_type;
179 gpointer value;
182 * look up factory type in first hash;
183 * if there isn't an explicitly registered factory type,
184 * try inheriting one...
186 do {
187 value =
188 g_hash_table_lookup (registry->factory_type_registry,
189 (gpointer) type);
190 type = g_type_parent (type);
191 if (type == G_TYPE_INVALID)
193 break;
195 } while (value == NULL);
197 factory_type = (GType) value;
198 return factory_type;
202 * atk_registry_get_factory:
203 * @registry: an #AtkRegistry
204 * @type: a #GType with which to look up the associated #AtkObjectFactory
206 * Gets an #AtkObjectFactory appropriate for creating #AtkObjects
207 * appropriate for @type.
209 * Returns: (transfer none): an #AtkObjectFactory appropriate for creating
210 * #AtkObjects appropriate for @type.
212 AtkObjectFactory*
213 atk_registry_get_factory (AtkRegistry *registry,
214 GType type)
216 gpointer factory_pointer = NULL;
217 GType factory_type;
219 factory_type = atk_registry_get_factory_type (registry, type);
221 if (factory_type == G_TYPE_INVALID)
223 /* Factory type has not been specified for this object type */
224 static AtkObjectFactory* default_factory = NULL;
226 if (!default_factory)
227 default_factory = atk_no_op_object_factory_new ();
229 return default_factory;
232 /* ask second hashtable for instance of factory type */
233 factory_pointer =
234 g_hash_table_lookup (registry->factory_singleton_cache,
235 (gpointer) factory_type);
237 /* if there isn't one already, create one and save it */
238 if (factory_pointer == NULL)
240 factory_pointer = g_type_create_instance (factory_type);
241 g_hash_table_insert (registry->factory_singleton_cache,
242 (gpointer) factory_type,
243 factory_pointer);
246 return ATK_OBJECT_FACTORY (factory_pointer);
250 * atk_get_default_registry:
252 * Gets a default implementation of the #AtkObjectFactory/type
253 * registry.
254 * Note: For most toolkit maintainers, this will be the correct
255 * registry for registering new #AtkObject factories. Following
256 * a call to this function, maintainers may call atk_registry_set_factory_type()
257 * to associate an #AtkObjectFactory subclass with the GType of objects
258 * for whom accessibility information will be provided.
260 * Returns: (transfer full): a default implementation of the
261 * #AtkObjectFactory/type registry
263 AtkRegistry*
264 atk_get_default_registry (void)
266 if (!default_registry)
268 default_registry = atk_registry_new ();
270 return default_registry;