*** empty log message ***
[platform/core/uifw/at-spi2-atk.git] / cspi / spi_hypertext.c
index c9a65ff..aaa20a8 100644 (file)
@@ -1,3 +1,28 @@
+/*
+ * 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>
+
 /**
  * AccessibleHypertext_ref:
  * @obj: a pointer to the #AccessibleHypertext object on which to operate.
  * Increment the reference count for an #AccessibleHypertext object.
  *       Since AccessibleHypertext is derived from AccessibleText,
  *       this is the same as AccessibleText_unref().
- *
- * Returns: (no return code implemented yet).
- *
  **/
-int
+void
 AccessibleHypertext_ref (AccessibleHypertext *obj)
 {
-  Accessibility_Hypertext_ref (*obj, &ev);
-  return 0;
+  cspi_object_ref (obj);
 }
 
-
 /**
  * AccessibleHypertext_unref:
  * @obj: a pointer to the #AccessibleHypertext object on which to operate.
@@ -24,19 +44,13 @@ AccessibleHypertext_ref (AccessibleHypertext *obj)
  * Decrement the reference count for an #AccessibleHypertext object.
  *       Since AccessibleHypertext is derived from AccessibleText,
  *       this is the same as AccessibleText_unref().
- *
- * Returns: (no return code implemented yet).
- *
  **/
-int
+void
 AccessibleHypertext_unref (AccessibleHypertext *obj)
 {
-  Accessibility_Hypertext_unref (*obj, &ev);
-  return 0;
+  cspi_object_unref (obj);
 }
 
-
-
 /**
  * AccessibleHypertext_getNLinks:
  * @obj: a pointer to the #AccessibleHypertext implementor on which to operate.
@@ -49,15 +63,21 @@ AccessibleHypertext_unref (AccessibleHypertext *obj)
  *        the number cannot be determined (for example, if the
  *        #AccessibleHypertext object is so large that it is not
  *        all currently in the memory cache).
- *
  **/
 long
 AccessibleHypertext_getNLinks (AccessibleHypertext *obj)
 {
-  return (long)
-    Accessibility_Hypertext_getNLinks (*obj, &ev);
-}
+  long retval;
+
+  cspi_return_val_if_fail (obj != NULL, FALSE);
 
+  retval =
+    Accessibility_Hypertext_getNLinks (CSPI_OBJREF (obj), cspi_ev ());
+
+  cspi_return_val_if_ev ("getNLinks", -1);
+
+  return retval;
+}
 
 /**
  * AccessibleHypertext_getLink:
@@ -67,17 +87,24 @@ AccessibleHypertext_getNLinks (AccessibleHypertext *obj)
  * Get the #AccessibleHyperlink object at a specified index.
  *
  * Returns: the #AccessibleHyperlink object specified by #linkIndex.
- *
  **/
 AccessibleHyperlink *
 AccessibleHypertext_getLink (AccessibleHypertext *obj,
-                             long int linkIndex)
+                             long int             linkIndex)
 {
-  return (AccessibleHyperlink *)
-    Accessibility_Hypertext_getLink (*obj,
-                                    (CORBA_long) linkIndex, &ev);
-}
+  AccessibleHyperlink *retval;
+       
+  cspi_return_val_if_fail (obj != NULL, FALSE);
 
+  retval = cspi_object_add (
+    Accessibility_Hypertext_getLink (CSPI_OBJREF (obj),
+                                    linkIndex,
+                                    cspi_ev ()));
+  
+  cspi_return_val_if_ev ("getLink", NULL); 
+
+  return retval;
+}
 
 /**
  * AccessibleHypertext_getLinkIndex:
@@ -90,15 +117,23 @@ AccessibleHypertext_getLink (AccessibleHypertext *obj,
  * Returns: the linkIndex of the #AccessibleHyperlink active at
  *        character offset @characterOffset, or -1 if there is
  *        no hyperlink at the specified character offset.
- *
  **/
 long
 AccessibleHypertext_getLinkIndex (AccessibleHypertext *obj,
-                                  long int characterOffset)
+                                  long int             characterOffset)
 {
-  return (long)
-    Accessibility_Hypertext_getLinkIndex (*obj,
-                                         (CORBA_long) characterOffset, &ev);
+  long retval;
+
+  cspi_return_val_if_fail (obj != NULL, -1);
+
+  retval = 
+    Accessibility_Hypertext_getLinkIndex (CSPI_OBJREF (obj),
+                                         characterOffset,
+                                         cspi_ev ());
+
+  cspi_return_val_if_ev ("getLinkIndex", -1);
+
+  return retval;
 }