docs: Improve documentation for AtkPlug and AtkSocket
[atk.git] / atk / atkhyperlink.c
blob6ae605c449f5ec3f1e3addbefb0f83817dce8442
1 /* ATK - Accessibility Toolkit
2 * Copyright 2001, 2002, 2003 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 #undef ATK_DISABLE_DEPRECATED
21 #include "atkhyperlink.h"
22 #include "atkintl.h"
24 enum
26 LINK_ACTIVATED,
28 LAST_SIGNAL
31 enum
33 PROP_0, /* gobject convention */
35 PROP_SELECTED_LINK,
36 PROP_NUMBER_ANCHORS,
37 PROP_END_INDEX,
38 PROP_START_INDEX,
39 PROP_LAST
42 static void atk_hyperlink_class_init (AtkHyperlinkClass *klass);
43 static void atk_hyperlink_init (AtkHyperlink *link,
44 AtkHyperlinkClass *klass);
46 static void atk_hyperlink_real_get_property (GObject *object,
47 guint prop_id,
48 GValue *value,
49 GParamSpec *pspec);
51 static void atk_hyperlink_action_iface_init (AtkActionIface *iface);
53 static guint atk_hyperlink_signals[LAST_SIGNAL] = { 0, };
55 static gpointer parent_class = NULL;
57 GType
58 atk_hyperlink_get_type (void)
60 static GType type = 0;
62 if (!type)
64 static const GTypeInfo typeInfo =
66 sizeof (AtkHyperlinkClass),
67 (GBaseInitFunc) NULL,
68 (GBaseFinalizeFunc) NULL,
69 (GClassInitFunc) atk_hyperlink_class_init,
70 (GClassFinalizeFunc) NULL,
71 NULL,
72 sizeof (AtkHyperlink),
74 (GInstanceInitFunc) atk_hyperlink_init,
75 } ;
77 static const GInterfaceInfo action_info =
79 (GInterfaceInitFunc) atk_hyperlink_action_iface_init,
80 (GInterfaceFinalizeFunc) NULL,
81 NULL
84 type = g_type_register_static (G_TYPE_OBJECT, "AtkHyperlink", &typeInfo, 0) ;
85 g_type_add_interface_static (type, ATK_TYPE_ACTION, &action_info);
87 return type;
90 static void
91 atk_hyperlink_class_init (AtkHyperlinkClass *klass)
93 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
95 parent_class = g_type_class_peek_parent (klass);
97 gobject_class->get_property = atk_hyperlink_real_get_property;
99 klass->link_activated = NULL;
101 g_object_class_install_property (gobject_class,
102 PROP_SELECTED_LINK,
103 g_param_spec_boolean ("selected-link",
104 _("Selected Link"),
105 _("Specifies whether the AtkHyperlink object is selected"),
106 FALSE,
107 G_PARAM_READABLE));
108 g_object_class_install_property (gobject_class,
109 PROP_NUMBER_ANCHORS,
110 g_param_spec_int ("number-of-anchors",
111 _("Number of Anchors"),
112 _("The number of anchors associated with the AtkHyperlink object"),
114 G_MAXINT,
116 G_PARAM_READABLE));
117 g_object_class_install_property (gobject_class,
118 PROP_END_INDEX,
119 g_param_spec_int ("end-index",
120 _("End index"),
121 _("The end index of the AtkHyperlink object"),
123 G_MAXINT,
125 G_PARAM_READABLE));
126 g_object_class_install_property (gobject_class,
127 PROP_START_INDEX,
128 g_param_spec_int ("start-index",
129 _("Start index"),
130 _("The start index of the AtkHyperlink object"),
132 G_MAXINT,
134 G_PARAM_READABLE));
135 atk_hyperlink_signals[LINK_ACTIVATED] =
136 g_signal_new ("link_activated",
137 G_TYPE_FROM_CLASS (klass),
138 G_SIGNAL_RUN_LAST,
139 G_STRUCT_OFFSET (AtkHyperlinkClass, link_activated),
140 NULL, NULL,
141 g_cclosure_marshal_VOID__VOID,
142 G_TYPE_NONE,
147 static void
148 atk_hyperlink_init (AtkHyperlink *link,
149 AtkHyperlinkClass *klass)
153 static void
154 atk_hyperlink_real_get_property (GObject *object,
155 guint prop_id,
156 GValue *value,
157 GParamSpec *pspec)
159 AtkHyperlink* link;
161 link = ATK_HYPERLINK (object);
163 switch (prop_id)
165 case PROP_SELECTED_LINK:
166 g_value_set_boolean (value, atk_hyperlink_is_selected_link (link));
167 break;
168 case PROP_NUMBER_ANCHORS:
169 g_value_set_int (value, atk_hyperlink_get_n_anchors (link));
170 break;
171 case PROP_END_INDEX:
172 g_value_set_int (value, atk_hyperlink_get_end_index (link));
173 break;
174 case PROP_START_INDEX:
175 g_value_set_int (value, atk_hyperlink_get_start_index (link));
176 break;
177 default:
178 break;
183 * atk_hyperlink_get_uri:
184 * @link_: an #AtkHyperlink
185 * @i: a (zero-index) integer specifying the desired anchor
187 * Get a the URI associated with the anchor specified
188 * by @i of @link_.
190 * Multiple anchors are primarily used by client-side image maps.
192 * Returns: a string specifying the URI
194 gchar*
195 atk_hyperlink_get_uri (AtkHyperlink *link,
196 gint i)
198 AtkHyperlinkClass *klass;
200 g_return_val_if_fail (ATK_IS_HYPERLINK (link), NULL);
202 klass = ATK_HYPERLINK_GET_CLASS (link);
203 if (klass->get_uri)
204 return (klass->get_uri) (link, i);
205 else
206 return NULL;
210 * atk_hyperlink_get_object:
211 * @link_: an #AtkHyperlink
212 * @i: a (zero-index) integer specifying the desired anchor
214 * Returns the item associated with this hyperlinks nth anchor.
215 * For instance, the returned #AtkObject will implement #AtkText
216 * if @link_ is a text hyperlink, #AtkImage if @link_ is an image
217 * hyperlink etc.
219 * Multiple anchors are primarily used by client-side image maps.
221 * Returns: (transfer none): an #AtkObject associated with this hyperlinks
222 * i-th anchor
224 AtkObject*
225 atk_hyperlink_get_object (AtkHyperlink *link,
226 gint i)
228 AtkHyperlinkClass *klass;
230 g_return_val_if_fail (ATK_IS_HYPERLINK (link), NULL);
232 klass = ATK_HYPERLINK_GET_CLASS (link);
233 if (klass->get_object)
234 return (klass->get_object) (link, i);
235 else
236 return NULL;
240 * atk_hyperlink_get_end_index:
241 * @link_: an #AtkHyperlink
243 * Gets the index with the hypertext document at which this link ends.
245 * Returns: the index with the hypertext document at which this link ends
247 gint
248 atk_hyperlink_get_end_index (AtkHyperlink *link)
250 AtkHyperlinkClass *klass;
252 g_return_val_if_fail (ATK_IS_HYPERLINK (link), 0);
254 klass = ATK_HYPERLINK_GET_CLASS (link);
255 if (klass->get_end_index)
256 return (klass->get_end_index) (link);
257 else
258 return 0;
262 * atk_hyperlink_get_start_index:
263 * @link_: an #AtkHyperlink
265 * Gets the index with the hypertext document at which this link begins.
267 * Returns: the index with the hypertext document at which this link begins
269 gint
270 atk_hyperlink_get_start_index (AtkHyperlink *link)
272 AtkHyperlinkClass *klass;
274 g_return_val_if_fail (ATK_IS_HYPERLINK (link), 0);
276 klass = ATK_HYPERLINK_GET_CLASS (link);
277 if (klass->get_start_index)
278 return (klass->get_start_index) (link);
279 else
280 return 0;
284 * atk_hyperlink_is_valid:
285 * @link_: an #AtkHyperlink
287 * Since the document that a link is associated with may have changed
288 * this method returns %TRUE if the link is still valid (with
289 * respect to the document it references) and %FALSE otherwise.
291 * Returns: whether or not this link is still valid
293 gboolean
294 atk_hyperlink_is_valid (AtkHyperlink *link)
296 AtkHyperlinkClass *klass;
298 g_return_val_if_fail (ATK_IS_HYPERLINK (link), FALSE);
300 klass = ATK_HYPERLINK_GET_CLASS (link);
301 if (klass->is_valid)
302 return (klass->is_valid) (link);
303 else
304 return FALSE;
308 * atk_hyperlink_is_inline:
309 * @link_: an #AtkHyperlink
311 * Indicates whether the link currently displays some or all of its
312 * content inline. Ordinary HTML links will usually return
313 * %FALSE, but an inline <src> HTML element will return
314 * %TRUE.
316 * Returns: whether or not this link displays its content inline.
319 gboolean
320 atk_hyperlink_is_inline (AtkHyperlink *link)
322 AtkHyperlinkClass *klass;
324 g_return_val_if_fail (ATK_IS_HYPERLINK (link), FALSE);
326 klass = ATK_HYPERLINK_GET_CLASS (link);
327 if (klass->link_state)
328 return (klass->link_state (link) & ATK_HYPERLINK_IS_INLINE);
329 else
330 return FALSE;
334 * atk_hyperlink_get_n_anchors:
335 * @link_: an #AtkHyperlink
337 * Gets the number of anchors associated with this hyperlink.
339 * Returns: the number of anchors associated with this hyperlink
341 gint
342 atk_hyperlink_get_n_anchors (AtkHyperlink *link)
344 AtkHyperlinkClass *klass;
346 g_return_val_if_fail (ATK_IS_HYPERLINK (link), 0);
348 klass = ATK_HYPERLINK_GET_CLASS (link);
349 if (klass->get_n_anchors)
350 return (klass->get_n_anchors) (link);
351 else
352 return 0;
356 * atk_hyperlink_is_selected_link:
357 * @link_: an #AtkHyperlink
359 * Determines whether this AtkHyperlink is selected
361 * Since: 1.4
363 * Deprecated: This method is deprecated since ATK version 1.8.
364 * Please use ATK_STATE_SELECTED to indicate when a hyperlink within a
365 * Hypertext container is selected.
367 * Returns: True is the AtkHyperlink is selected, False otherwise
369 gboolean
370 atk_hyperlink_is_selected_link (AtkHyperlink *link)
372 AtkHyperlinkClass *klass;
374 g_return_val_if_fail (ATK_IS_HYPERLINK (link), FALSE);
376 klass = ATK_HYPERLINK_GET_CLASS (link);
377 if (klass->is_selected_link)
378 return (klass->is_selected_link) (link);
379 else
380 return FALSE;
383 static void atk_hyperlink_action_iface_init (AtkActionIface *iface)
386 * We do nothing here
388 * When we come to derive a class from AtkHyperlink we will provide an
389 * implementation of the AtkAction interface.