atktext: Fixing some typos on atk_text_get_text_at_offset deprecation
[atk.git] / atk / atkdocument.c
blobbf5cc9a247a4e79f10a7315302cf0502a62117d6
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 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.
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.
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.
20 #include "atkdocument.h"
22 /**
23 * SECTION:atkdocument
24 * @Short_description: The ATK interface which represents the toplevel
25 * container for document content.
26 * @Title:AtkDocument
28 * The AtkDocument interface should be supported by any object whose
29 * content is a representation or view of a document. The AtkDocument
30 * interface should appear on the toplevel container for the document
31 * content; however AtkDocument instances may be nested (i.e. an
32 * AtkDocument may be a descendant of another AtkDocument) in those
33 * cases where one document contains "embedded content" which can
34 * reasonably be considered a document in its own right.
38 enum {
39 LOAD_COMPLETE,
40 RELOAD,
41 LOAD_STOPPED,
42 LAST_SIGNAL
45 static void atk_document_base_init (AtkDocumentIface *class);
47 static guint atk_document_signals[LAST_SIGNAL] = {0};
49 GType
50 atk_document_get_type (void)
52 static GType type = 0;
54 if (!type) {
55 static const GTypeInfo tinfo =
57 sizeof (AtkDocumentIface),
58 (GBaseInitFunc) atk_document_base_init,
59 (GBaseFinalizeFunc) NULL,
63 type = g_type_register_static (G_TYPE_INTERFACE, "AtkDocument", &tinfo, 0);
66 return type;
69 static void
70 atk_document_base_init (AtkDocumentIface *class)
72 static gboolean initialized = FALSE;
73 if (!initialized)
75 /**
76 * AtkDocument::load-complete:
77 * @atkdocument: the object which received the signal.
79 * The 'load-complete' signal is emitted when a pending load of
80 * a static document has completed. This signal is to be
81 * expected by ATK clients if and when AtkDocument implementors
82 * expose ATK_STATE_BUSY. If the state of an AtkObject which
83 * implements AtkDocument does not include ATK_STATE_BUSY, it
84 * should be safe for clients to assume that the AtkDocument's
85 * static contents are fully loaded into the container.
86 * (Dynamic document contents should be exposed via other
87 * signals.)
89 atk_document_signals[LOAD_COMPLETE] =
90 g_signal_new ("load_complete",
91 ATK_TYPE_DOCUMENT,
92 G_SIGNAL_RUN_LAST,
94 (GSignalAccumulator) NULL, NULL,
95 g_cclosure_marshal_VOID__VOID,
96 G_TYPE_NONE, 0);
97 /**
98 * AtkDocument::reload:
99 * @atkdocument: the object which received the signal.
101 * The 'reload' signal is emitted when the contents of a
102 * document is refreshed from its source. Once 'reload' has
103 * been emitted, a matching 'load-complete' or 'load-stopped'
104 * signal should follow, which clients may await before
105 * interrogating ATK for the latest document content.
107 atk_document_signals[RELOAD] =
108 g_signal_new ("reload",
109 ATK_TYPE_DOCUMENT,
110 G_SIGNAL_RUN_LAST,
112 (GSignalAccumulator) NULL, NULL,
113 g_cclosure_marshal_VOID__VOID,
114 G_TYPE_NONE, 0);
117 * AtkDocument::load-stopped:
118 * @atkdocument: the object which received the signal.
120 * The 'load-stopped' signal is emitted when a pending load of
121 * document contents is cancelled, paused, or otherwise
122 * interrupted by the user or application logic. It should not
123 * however be emitted while waiting for a resource (for instance
124 * while blocking on a file or network read) unless a
125 * user-significant timeout has occurred.
127 atk_document_signals[LOAD_STOPPED] =
128 g_signal_new ("load_stopped",
129 ATK_TYPE_DOCUMENT,
130 G_SIGNAL_RUN_LAST,
132 (GSignalAccumulator) NULL, NULL,
133 g_cclosure_marshal_VOID__VOID,
134 G_TYPE_NONE, 0);
136 initialized = TRUE;
141 * atk_document_get_document_type:
142 * @document: a #GObject instance that implements AtkDocumentIface
144 * Gets a string indicating the document type.
146 * Returns: a string indicating the document type
148 const gchar*
149 atk_document_get_document_type (AtkDocument *document)
151 AtkDocumentIface *iface;
153 g_return_val_if_fail (ATK_IS_DOCUMENT (document), NULL);
155 iface = ATK_DOCUMENT_GET_IFACE (document);
157 if (iface->get_document_type)
159 return (iface->get_document_type) (document);
161 else
163 return NULL;
168 * atk_document_get_document:
169 * @document: a #GObject instance that implements AtkDocumentIface
171 * Gets a %gpointer that points to an instance of the DOM. It is
172 * up to the caller to check atk_document_get_type to determine
173 * how to cast this pointer.
175 * Returns: (transfer none): a %gpointer that points to an instance of the DOM.
177 gpointer
178 atk_document_get_document (AtkDocument *document)
180 AtkDocumentIface *iface;
182 g_return_val_if_fail (ATK_IS_DOCUMENT (document), NULL);
184 iface = ATK_DOCUMENT_GET_IFACE (document);
186 if (iface->get_document)
188 return (iface->get_document) (document);
190 else
192 return NULL;
197 * atk_document_get_locale:
198 * @document: a #GObject instance that implements AtkDocumentIface
200 * Gets a UTF-8 string indicating the POSIX-style LC_MESSAGES locale
201 * of the content of this document instance. Individual
202 * text substrings or images within this document may have
203 * a different locale, see atk_text_get_attributes and
204 * atk_image_get_image_locale.
206 * Deprecated: This method is deprecated since ATK version
207 * 2.7.90. Please use atk_object_get_object_locale() instead.
209 * Returns: a UTF-8 string indicating the POSIX-style LC_MESSAGES
210 * locale of the document content as a whole, or NULL if
211 * the document content does not specify a locale.
212 * Virtual: get_document_locale
214 const gchar *
215 atk_document_get_locale (AtkDocument *document)
217 AtkDocumentIface *iface;
219 g_return_val_if_fail (ATK_IS_DOCUMENT (document), NULL);
221 iface = ATK_DOCUMENT_GET_IFACE (document);
223 if (iface->get_document_locale)
225 return (iface->get_document_locale) (document);
227 else
229 return NULL;
235 * atk_document_get_attributes:
236 * @document: a #GObject instance that implements AtkDocumentIface
238 * Gets an AtkAttributeSet which describes document-wide
239 * attributes as name-value pairs.
241 * Since: 1.12
243 * Returns: (transfer none): An AtkAttributeSet containing the explicitly
244 * set name-value-pair attributes associated with this document
245 * as a whole.
246 * Virtual: get_document_attributes
248 AtkAttributeSet *
249 atk_document_get_attributes (AtkDocument *document)
251 AtkDocumentIface *iface;
253 g_return_val_if_fail (ATK_IS_DOCUMENT (document), NULL);
255 iface = ATK_DOCUMENT_GET_IFACE (document);
257 if (iface->get_document_attributes)
259 return (iface->get_document_attributes) (document);
261 else
263 return NULL;
268 * atk_document_get_attribute_value:
269 * @document: a #GObject instance that implements AtkDocumentIface
270 * @attribute_name: a character string representing the name of the attribute
271 * whose value is being queried.
273 * Since: 1.12
275 * Returns: a string value associated with the named attribute for this
276 * document, or NULL if a value for #attribute_name has not been specified
277 * for this document.
278 * Virtual: get_document_attribute_value
280 const gchar *
281 atk_document_get_attribute_value (AtkDocument *document,
282 const gchar *attribute_name)
284 AtkDocumentIface *iface;
286 g_return_val_if_fail (ATK_IS_DOCUMENT (document), NULL);
288 iface = ATK_DOCUMENT_GET_IFACE (document);
290 if (iface->get_document_attribute_value)
292 return (iface->get_document_attribute_value) (document, attribute_name);
294 else
296 return NULL;
301 * atk_document_set_attribute_value:
302 * @document: a #GObject instance that implements AtkDocumentIface
303 * @attribute_name: a character string representing the name of the attribute
304 * whose value is being set.
305 * @attribute_value: a string value to be associated with #attribute_name.
307 * Since: 1.12
309 * Returns: TRUE if #value is successfully associated with #attribute_name
310 * for this document, FALSE otherwise (e.g. if the document does not
311 * allow the attribute to be modified).
312 * Virtual: set_document_attribute
314 gboolean
315 atk_document_set_attribute_value (AtkDocument *document,
316 const gchar *attribute_name,
317 const gchar *attribute_value)
319 AtkDocumentIface *iface;
321 g_return_val_if_fail (ATK_IS_DOCUMENT (document), FALSE);
323 iface = ATK_DOCUMENT_GET_IFACE (document);
325 if (iface->set_document_attribute)
327 return (iface->set_document_attribute) (document, attribute_name, attribute_value);
329 else
331 return FALSE;