2 * AT-SPI - Assistive Technology Service Provider Interface
3 * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
5 * Copyright 2001, 2002 Sun Microsystems Inc.,
6 * Copyright 2001, 2002 Ximian, Inc.
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.
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.
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.
24 #include "atspi-private.h"
29 * atspi_editable_text_set_attributes:
30 * @obj: a pointer to the #AtspiEditableText object to modify.
31 * @attributes: a character string indicating the attributes to apply to the range,
33 * @startOffset: a #long indicating the start of the desired text range.
34 * @endOffset: a #long indicating the first character past the desired range.
36 * Set the attributes applied to a range of text from an #AtspiEditableText
37 * object, and the bounds of the range.
39 * Returns: #TRUE if the operation was successful, otherwise #FALSE.
42 atspi_editable_text_set_attributes (AtspiEditableText *obj,
43 const char *attributes,
48 dbus_int32_t d_start_pos = start_pos, d_end_pos = end_pos;
51 cspi_return_val_if_fail (obj != NULL, FALSE);
53 _atspi_dbus_call (obj, atspi_interface_editable_text, "SetAttributes", error, "sii=>b", attributes, d_start_pos, d_end_pos, &retval);
60 * atspi_editable_text_set_text_contents:
61 * @obj: a pointer to the #AtspiEditableText object to modify.
62 * @new_contents: a character string, encoded in UTF-8, which is to
63 * become the new text contents of the #AtspiEditableText object.
65 * Replace the entire text contents of an #AtspiEditableText object.
67 * Returns: #TRUE if the operation was successful, otherwise #FALSE.
70 atspi_editable_text_set_text_contents (AtspiEditableText *obj,
71 const gchar *new_contents,
74 dbus_bool_t retval = FALSE;
76 g_return_val_if_fail (obj != NULL, FALSE);
78 _atspi_dbus_call (obj, atspi_interface_editable_text, "setTextContents", error, "s=>b", new_contents, &retval);
84 * atspi_editable_text_insert_text:
85 * @obj: a pointer to the #AtspiEditableText object to modify.
86 * @position: an integer indicating the character offset at which to insert
88 * @text: a gchar* pointer to the text to insert, in UTF-8 encoding.
89 * @length: (frankly I'm not sure this parameter should be here)
91 * Insert text into an #AtspiEditableText object.
92 * As with all character offsets, the specified @position may not be the
93 * same as the resulting byte offset, since the text is in a
94 * variable-width encoding.
96 * Returns: #TRUE if the operation was successful, otherwise #FALSE.
99 atspi_editable_text_insert_text (AtspiEditableText *obj,
105 dbus_int32_t d_position = position, d_length = length;
106 dbus_bool_t retval = FALSE;
108 g_return_val_if_fail (obj != NULL, FALSE);
110 _atspi_dbus_call (obj, atspi_interface_editable_text, "InsertText", error, "isi=>b", d_position, text, d_length, &retval);
116 * atspi_editable_text_copy_text:
117 * @obj: a pointer to the #AtspiEditableText object to modify.
118 * @start_pos: an integer indicating the starting character offset
119 * of the text to copy.
120 * @end_pos: an integer indicating the offset of the first character
121 * past the end of the text section to be copied.
123 * Copy text from an #AtspiEditableText object into the clipboard.
125 * see: atspi_editable_text_paste_text
127 * Returns: #TRUE if the operation was successful, otherwise #FALSE.
130 atspi_editable_text_copy_text (AtspiEditableText *obj,
135 dbus_int32_t d_start_pos = start_pos, d_end_pos = end_pos;
137 g_return_val_if_fail (obj != NULL, FALSE);
139 _atspi_dbus_call (obj, atspi_interface_editable_text, "CopyText", error, "ii", start_pos, end_pos);
145 * atspi_editable_text_cut_text:
146 * @obj: a pointer to the #AtspiEditableText object to modify.
147 * @start_pos: an integer indicating the starting character offset
148 * of the text to cut.
149 * @end_pos: an integer indicating the offset of the first character
150 * past the end of the text section to be cut.
152 * Delete text from an #AtspiEditableText object, copying the
153 * excised portion into the clipboard.
155 * see: atspi_editable_text_paste_text
157 * Returns: #TRUE if operation was successful, #FALSE otherwise.
160 atspi_editable_text_cut_text (AtspiEditableText *obj,
165 dbus_int32_t d_start_pos = start_pos, d_end_pos = end_pos;
166 dbus_bool_t retval = FALSE;
168 g_return_val_if_fail (obj != NULL, FALSE);
170 _atspi_dbus_call (obj, atspi_interface_editable_text, "CutText", error, "ii=>b", d_start_pos, d_end_pos, &retval);
176 * atspi_editable_text_delete_text:
177 * @obj: a pointer to the #AtspiEditableText object to modify.
178 * @start_pos: an integer indicating the starting character offset
179 * of the text to delete.
180 * @end_pos: an integer indicating the offset of the first character
181 * past the end of the text section to be deleted.
183 * Delete text from an #AtspiEditableText object, without copying the
184 * excised portion into the clipboard.
186 * see: atspi_editable_text_cut_text
188 * Returns: #TRUE if the operation was successful, otherwise #FALSE.
191 atspi_editable_text_delete_text (AtspiEditableText *obj,
196 dbus_int32_t d_start_pos = start_pos, d_end_pos = end_pos;
197 dbus_bool_t retval = FALSE;
199 g_return_val_if_fail (obj != NULL, FALSE);
201 _atspi_dbus_call (obj, atspi_interface_editable_text, "DeleteText", error, "ii=>b", d_start_pos, d_end_pos, &retval);
207 * atspi_editable_text_paste_text:
208 * @obj: a pointer to the #AtspiEditableText object to modify.
209 * @position: an integer indicating the character offset at which to insert
212 * Insert text from the clipboard into an #AtspiEditableText object.
213 * As with all character offsets, the specified @position may not be the
214 * same as the resulting byte offset, since the text is in a
215 * variable-width encoding.
217 * Returns: #TRUE if the operation was successful, otherwise #FALSE.
220 atspi_editable_text_paste_text (AtspiEditableText *obj,
224 dbus_int32_t d_position = position;
225 dbus_bool_t retval = FALSE;
227 g_return_val_if_fail (obj != NULL, FALSE);
229 _atspi_dbus_call (obj, atspi_interface_editable_text, "PasteText", error, "i=>b", d_position, &retval);
235 atspi_editable_text_base_init (AtspiEditableText *klass)
240 atspi_editable_text_get_type (void)
242 static GType type = 0;
245 static const GTypeInfo tinfo =
247 sizeof (AtspiEditableText),
248 (GBaseInitFunc) atspi_editable_text_base_init,
249 (GBaseFinalizeFunc) NULL,
252 type = g_type_register_static (G_TYPE_INTERFACE, "AtspiEditableText", &tinfo, 0);