Changes to introspection generation to remove DOCTYPE and XML
[platform/core/uifw/at-spi2-atk.git] / cspi / spi_editabletext.c
index df1b8f1..30b0fd5 100644 (file)
-int
-SpiAccessibleEditableText_ref (SpiAccessibleEditableText *obj)
-{
-  Accessibility_EditableText_ref (*obj, &ev);
-  return 0;
-}
+/*
+ * AT-SPI - Assistive Technology Service Provider Interface
+ * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
+ *
+ * Copyright 2001, 2002 Sun Microsystems Inc.,
+ * Copyright 2001, 2002 Ximian, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
 
+#include <cspi/spi-private.h>
 
+/**
+ * AccessibleEditableText_ref:
+ * @obj: a pointer to the #AccessibleEditableText object on which to operate.
+ *
+ * Increment the reference count for an #AccessibleEditableText object.
+ *       Since AccessibleEditableText is derived from AccessibleText,
+ *       this is the same as AccessibleText_ref().
+ **/
+void
+AccessibleEditableText_ref (AccessibleEditableText *obj)
+{
+  cspi_object_ref (obj);
+}
 
-int
-SpiAccessibleEditableText_unref (SpiAccessibleEditableText *obj)
+/**
+ * AccessibleEditableText_unref:
+ * @obj: a pointer to the #AccessibleEditableText object on which to operate.
+ *
+ * Decrement the reference count for an #AccessibleEdiitableText object.
+ *       Since AccessibleEditableText is derived from AccessibleText,
+ *       this is the same as AccessibleText_unref().
+ **/
+void
+AccessibleEditableText_unref (AccessibleEditableText *obj)
 {
-  Accessibility_EditableText_unref (*obj, &ev);
-  return 0;
+  cspi_object_unref (obj);
 }
 
+/**
+ * AccessibleEditableText_setAttributes:
+ * @obj: a pointer to the #AccessibleEditableText object to modify.
+ * @attributes: a character string indicating the attributes to apply to the range,
+ *        delimited by ':'.
+ * @startOffset: a #long indicating the start of the desired text range.
+ * @endOffset: a #long indicating the first character past the desired range.
+ *
+ * Set the attributes applied to a range of text from an #AccessibleEditableText
+ *          object, and the bounds of the range.
+ *
+ * Returns: #TRUE if the operation was successful, otherwise #FALSE.
+ **/
+SPIBoolean
+AccessibleEditableText_setAttributes (AccessibleEditableText *obj,
+                                     const char *attributes,
+                                     long int startPos,
+                                     long int endPos)
+{
+  SPIBoolean retval;
 
+  cspi_return_val_if_fail (obj != NULL, FALSE);
 
-boolean
-SpiAccessibleEditableText_setAttributes (SpiAccessibleEditableText *obj,
-                                        const char *attributes,
-                                        long startPos, long endPos)
-{
-  return (boolean)
-    Accessibility_EditableText_setAttributes (*obj,
-                                                (CORBA_char *) attributes,
-                                                (CORBA_long) startPos, (CORBA_long) endPos, &ev);
-}
+  retval = 
+    Accessibility_EditableText_setAttributes (CSPI_OBJREF (obj),
+                                             attributes,
+                                             startPos,
+                                             endPos, cspi_ev ());
 
+  cspi_return_val_if_ev ("setAttributes", FALSE);
 
+  return retval;
+}
 
-void
-SpiAccessibleEditableText_setTextContents (SpiAccessibleEditableText *obj,
+/**
+ * AccessibleEditableText_setTextContents:
+ * @obj: a pointer to the #AccessibleEditableText object to modify.
+ * @newContents: a character string, encoded in UTF-8, which is to
+ *      become the new text contents of the #AccessibleEditableText object.
+ *
+ * Replace the entire text contents of an #AccessibleEditableText object.
+ *
+ * Returns: #TRUE if the operation was successful, otherwise #FALSE.
+ **/
+SPIBoolean
+AccessibleEditableText_setTextContents (AccessibleEditableText *obj,
                                         const char *newContents)
 {
-  Accessibility_EditableText_setTextContents (*obj,
-                                             (CORBA_char *) newContents, &ev);
-}
+  SPIBoolean retval;
 
+  cspi_return_val_if_fail (obj != NULL, FALSE);
 
+  retval = Accessibility_EditableText_setTextContents (CSPI_OBJREF (obj),
+                                                                         newContents, cspi_ev ());
 
-void
-SpiAccessibleEditableText_insertText (SpiAccessibleEditableText *obj,
-                                   long position,
-                                   char *text,
-                                   long length)
-{
-  Accessibility_EditableText_insertText (*obj,
-                                        (CORBA_long) position, (CORBA_char *) text,
-                                        (CORBA_long) length, &ev);
+  cspi_return_val_if_ev ("setTextContents", FALSE);
+
+  return retval;
 }
 
+/**
+ * AccessibleEditableText_insertText:
+ * @obj: a pointer to the #AccessibleEditableText object to modify.
+ * @position: an integer indicating the character offset at which to insert
+ *       the new text.  
+ * @text: a char* pointer to the text to insert, in UTF-8 encoding.
+ * @length: (frankly I'm not sure this parameter should be here)
+ *
+ * Insert text into an #AccessibleEditableText object.
+ * As with all character offsets, the specified @position may not be the
+ *       same as the resulting byte offset, since the text is in a
+ *       variable-width encoding.
+ *
+ * Returns: #TRUE if the operation was successful, otherwise #FALSE.
+ **/
+SPIBoolean
+AccessibleEditableText_insertText (AccessibleEditableText *obj,
+                                   long int position,
+                                   const char *text,
+                                   long int length)
+{
+  SPIBoolean retval;
 
+  cspi_return_val_if_fail (obj != NULL, FALSE);
 
-void
-SpiAccessibleEditableText_copyText (SpiAccessibleText *obj,
-                                 long startPos,
-                                 long endPos)
-{
-  Accessibility_EditableText_copyText (*obj,
-                                      (CORBA_long) startPos, (CORBA_long) endPos, &ev);
-}
+  retval = Accessibility_EditableText_insertText (CSPI_OBJREF (obj),
+                                        position, text,
+                                        length, cspi_ev ());
 
+  cspi_return_val_if_ev ("insertText", FALSE);
 
+  return retval;
+}
 
-void
-SpiAccessibleEditableText_cutText (SpiAccessibleEditableText *obj,
-                                long startPos,
-                                long endPos)
+/**
+ * AccessibleEditableText_copyText:
+ * @obj: a pointer to the #AccessibleEditableText object to modify.
+ * @startPos: an integer indicating the starting character offset
+ *       of the text to copy.
+ * @endPos: an integer indicating the offset of the first character
+ *       past the end of the text section to be copied.
+ *
+ * Copy text from an #AccessibleEditableText object into the clipboard.
+ *
+ * @see: AccessibleEditableText_pasteText 
+ *
+ * Returns: #TRUE if the operation was successful, otherwise #FALSE.
+ **/
+SPIBoolean
+AccessibleEditableText_copyText (AccessibleText *obj,
+                                 long int startPos,
+                                 long int endPos)
 {
-  Accessibility_EditableText_cutText (*obj,
-                                      (CORBA_long) startPos, (CORBA_long) endPos, &ev);
+  cspi_return_val_if_fail (obj != NULL, FALSE);
+
+  Accessibility_EditableText_copyText (
+    CSPI_OBJREF (obj), startPos,
+    endPos, cspi_ev ());
+
+  cspi_return_val_if_ev ("copyText", FALSE);
+
+  return TRUE;
 }
 
+/**
+ * AccessibleEditableText_cutText:
+ * @obj: a pointer to the #AccessibleEditableText object to modify.
+ * @startPos: an integer indicating the starting character offset
+ *       of the text to cut.
+ * @endPos: an integer indicating the offset of the first character
+ *       past the end of the text section to be cut.
+ *
+ * Delete text from an #AccessibleEditableText object, copying the
+ *       excised portion into the clipboard.
+ *
+ * @see: AccessibleEditableText_pasteText
+ *
+ * Returns: #TRUE if operation was successful, #FALSE otherwise.
+ **/
+SPIBoolean
+AccessibleEditableText_cutText (AccessibleEditableText *obj,
+                                long int startPos,
+                                long int endPos)
+{
+  SPIBoolean retval;
+
+  cspi_return_val_if_fail (obj != NULL, FALSE);
 
+  retval = Accessibility_EditableText_cutText (
+    CSPI_OBJREF (obj),
+    startPos, endPos, cspi_ev ());
 
-void
-SpiAccessibleEditableText_deleteText (SpiAccessibleEditableText *obj,
+  cspi_return_val_if_ev ("cutText", FALSE);
+
+  return retval;
+}
+
+/**
+ * AccessibleEditableText_deleteText:
+ * @obj: a pointer to the #AccessibleEditableText object to modify.
+ * @startPos: an integer indicating the starting character offset
+ *       of the text to delete.
+ * @endPos: an integer indicating the offset of the first character
+ *       past the end of the text section to be deleted.
+ *
+ * Delete text from an #AccessibleEditableText object, without copying the
+ *       excised portion into the clipboard.
+ *
+ * @see: AccessibleEditableText_cutText
+ *
+ * Returns: #TRUE if the operation was successful, otherwise #FALSE.
+ **/
+SPIBoolean
+AccessibleEditableText_deleteText (AccessibleEditableText *obj,
                                    long startPos,
                                    long endPos)
 {
-  Accessibility_EditableText_deleteText (*obj,
-                                      (CORBA_long) startPos, (CORBA_long) endPos, &ev);
-}
+  SPIBoolean retval;
 
+  cspi_return_val_if_fail (obj != NULL, FALSE);
 
+  retval = Accessibility_EditableText_deleteText (
+    CSPI_OBJREF (obj),
+    startPos, endPos, cspi_ev ());
 
-void
-SpiAccessibleEditableText_pasteText (SpiAccessibleEditableText *obj,
-                                  long position)
-{
-  Accessibility_EditableText_pasteText (*obj,
-                                       (CORBA_long) position, &ev);
+  cspi_return_val_if_ev ("deleteText", FALSE);
+
+  return retval;
 }
 
+/**
+ * AccessibleEditableText_pasteText:
+ * @obj: a pointer to the #AccessibleEditableText object to modify.
+ * @position: an integer indicating the character offset at which to insert
+ *       the new text.  
+ *
+ * Insert text from the clipboard into an #AccessibleEditableText object.
+ * As with all character offsets, the specified @position may not be the
+ *       same as the resulting byte offset, since the text is in a
+ *       variable-width encoding.
+ *
+ * Returns: #TRUE if the operation was successful, otherwise #FALSE.
+ **/
+SPIBoolean
+AccessibleEditableText_pasteText (AccessibleEditableText *obj,
+                                  long int position)
+{
+  SPIBoolean retval;
+
+  cspi_return_val_if_fail (obj != NULL, FALSE);
+
+  retval = Accessibility_EditableText_pasteText (
+    CSPI_OBJREF (obj), position, cspi_ev ());
+
+  cspi_return_val_if_ev ("pasteText", FALSE);
+
+  return retval;
+}