Fix a couple of crashes
[platform/upstream/at-spi2-core.git] / atspi / atspi-hyperlink.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001, 2002 Sun Microsystems Inc.,
6  * Copyright 2001, 2002 Ximian, Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #include "atspi-private.h"
25
26 G_DEFINE_TYPE (AtspiHyperlink, atspi_hyperlink, ATSPI_TYPE_OBJECT)
27
28 static void
29 atspi_hyperlink_init (AtspiHyperlink *hyperlink)
30 {
31 }
32
33 static void
34 atspi_hyperlink_class_init (AtspiHyperlinkClass *klass)
35 {
36 }
37
38 AtspiHyperlink *
39 atspi_hyperlink_new (AtspiApplication *app, const gchar *path)
40 {
41   AtspiHyperlink *hyperlink;
42   
43   hyperlink = g_object_new (ATSPI_TYPE_HYPERLINK, NULL);
44   g_return_val_if_fail (hyperlink != NULL, NULL);
45
46   hyperlink->parent.app = g_object_ref (app);
47   hyperlink->parent.path = g_strdup (path);
48
49   return hyperlink;
50 }
51
52 /**
53  * atspi_hyperlink_get_n_anchors:
54  * @obj: a pointer to the #AtspiHyperlink object on which to operate.
55  *
56  * Get the total number of anchors which an #AtspiHyperlink implementor has.
57  *       Though typical hyperlinks have only one anchor, client-side image maps and
58  *       other hypertext objects may potentially activate or refer to multiple
59  *       URIs.  For each anchor there is a corresponding URI and object.
60  * see atspi_hyperlink_get_uri() and atspi_hyperlink_get_object().
61  *
62  * Returns: a #gint indicating the number of anchors in this hyperlink.
63  **/
64 gint
65 atspi_hyperlink_get_n_anchors (AtspiHyperlink *obj, GError **error)
66 {
67   dbus_int32_t retval;
68
69   g_return_val_if_fail (obj != NULL, -1);
70
71   _atspi_dbus_get_property (obj, atspi_interface_hyperlink, "NAnchors", error, "i", &retval);
72
73   return retval;
74 }
75
76 /**
77  * atspi_hyperlink_get_uri:
78  * @obj: a pointer to the #AtspiHyperlink implementor on which to operate.
79  * @i: a (zero-index) integer indicating which hyperlink anchor to query.
80  *
81  * Get the URI associated with a particular hyperlink anchor.  
82  *
83  * Returns: a UTF-8 string giving the URI of the @ith hyperlink anchor.
84  **/
85 gchar *
86 atspi_hyperlink_get_uri (AtspiHyperlink *obj, int i, GError **error)
87 {
88   dbus_int32_t d_i = i;
89   char *retval = NULL;
90
91   g_return_val_if_fail (obj != NULL, NULL);
92
93   _atspi_dbus_call (obj, atspi_interface_hyperlink, "GetURI", error, "i=>s", d_i, &retval);
94
95   if (!retval)
96     retval = g_strdup ("");
97
98   return retval;
99 }
100
101 /**
102  * atspi_hyperlink_get_object:
103  * @obj: a pointer to the #AtspiHyperlink implementor on which to operate.
104  * @i: a (zero-index) long integer indicating which hyperlink anchor to query.
105  *
106  * Get the object associated with a particular hyperlink anchor, as an #Accessible. 
107  *
108  * Returns: (transfer full): an #AtspiAccessible that represents the object
109  *        associated with the @ith anchor of the specified #AtspiHyperlink.
110  **/
111 AtspiAccessible*
112 atspi_hyperlink_get_object (AtspiHyperlink *obj, gint i, GError **error)
113 {
114   dbus_int32_t d_i = i;
115   DBusMessage *reply;
116
117   g_return_val_if_fail (obj != NULL, NULL);
118
119   reply = _atspi_dbus_call_partial (obj, atspi_interface_hyperlink, "GetObject", error, "i", d_i);
120
121   return _atspi_dbus_return_accessible_from_message (reply);
122 }
123
124 /**
125  * atspi_hyperlink_get_index_range:
126  * @obj: a pointer to the #AtspiHyperlink implementor on which to operate.
127  *
128  *
129  * Get the starting and ending character offsets of the text range associated with
130  *       a #AtspiHyperlink, in its originating #AtspiHypertext.
131  **/
132 AtspiRange *
133 atspi_hyperlink_get_index_range (AtspiHyperlink *obj, GError **error)
134 {
135   dbus_int32_t d_start_offset, d_end_offset;
136   AtspiRange *ret = g_new (AtspiRange, 1);
137
138   if (ret)
139     ret->start_offset = ret->end_offset = -1;
140
141   if (!obj || !ret)
142     return ret;
143
144   _atspi_dbus_call (obj, atspi_interface_hyperlink, "GetIndexRange", error, "=>ii", &d_start_offset, &d_end_offset);
145
146   ret->start_offset = d_start_offset;
147   ret->end_offset = d_end_offset;
148   return ret;
149 }
150
151 /**
152  * atspi_hyperlink_get_start_index:
153  * @obj: a pointer to the #AtspiHyperlink implementor on which to operate.
154  *
155  *
156  * Get the starting character offset of the text range associated with
157  *       a #AtspiHyperlink, in its originating #AtspiHypertext.
158  **/
159 gint
160 atspi_hyperlink_get_start_index (AtspiHyperlink *obj, GError **error)
161 {
162   dbus_int32_t d_start_offset = -1;
163
164   if (!obj)
165     return -1;
166
167   _atspi_dbus_get_property (obj, atspi_interface_hyperlink, "StartIndex",
168                             error, "i", &d_start_offset);
169
170   return d_start_offset;
171 }
172 /**
173  * atspi_hyperlink_get_end_index:
174  * @obj: a pointer to the #AtspiHyperlink implementor on which to operate.
175  *
176  *
177  * Get the ending character offset of the text range associated with
178  *       a #AtspiHyperlink, in its originating #AtspiHypertext.
179  **/
180 gint
181 atspi_hyperlink_get_end_index (AtspiHyperlink *obj, GError **error)
182 {
183   dbus_int32_t d_end_offset = -1;
184
185   if (!obj)
186     return -1;
187
188   _atspi_dbus_get_property (obj, atspi_interface_hyperlink, "EndIndex", error,
189                             "i", &d_end_offset);
190
191   return d_end_offset;
192 }
193
194
195 /**
196  * atspi_hyperlink_is_valid:
197  * @obj: a pointer to the #AtspiHyperlink on which to operate.
198  *
199  * Tell whether an #AtspiHyperlink object is still valid with respect to its
200  *          originating hypertext object.
201  *
202  * Returns: #TRUE of the specified #AtspiHyperlink is still valid with respect
203  *          to its originating #AtspiHypertext object, #FALSE otherwise.
204  **/
205 gboolean
206 atspi_hyperlink_is_valid (AtspiHyperlink *obj, GError **error)
207 {
208   dbus_bool_t retval;
209
210   g_return_val_if_fail (obj != NULL, FALSE);
211
212   _atspi_dbus_call (obj, atspi_interface_hyperlink, "IsValid", error, "=>b", &retval);
213
214   return retval;
215 }