X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=cspi%2Fspi_hyperlink.c;h=1eae6ba3ed3e1003d20a20d276edb28c13f2b306;hb=54e12e5a757d6eace45f45f08edaa778af6e0960;hp=4d039b61ee5fb598ddef1134638e4df8b9788aae;hpb=fb1e8ce4bd1b97a4029321017b414bd04cef087d;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/cspi/spi_hyperlink.c b/cspi/spi_hyperlink.c index 4d039b6..1eae6ba 100644 --- a/cspi/spi_hyperlink.c +++ b/cspi/spi_hyperlink.c @@ -1,35 +1,50 @@ +/* + * 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 + /** * AccessibleHyperlink_ref: * @obj: a pointer to the #AccessibleHyperlink object on which to operate. * * Increment the reference count for an #AccessibleHyperlink object. - * - * Returns: (no return code implemented yet). - * **/ -int +void AccessibleHyperlink_ref (AccessibleHyperlink *obj) { - Accessibility_Hyperlink_ref (*obj, &ev); - return 0; + cspi_object_ref (obj); } - - /** * AccessibleHyperlink_unref: * @obj: a pointer to the #AccessibleHyperlink object on which to operate. * * Decrement the reference count for an #AccessibleHyperlink object. - * - * Returns: (no return code implemented yet). - * **/ -int +void AccessibleHyperlink_unref (AccessibleHyperlink *obj) { - Accessibility_Hyperlink_unref (*obj, &ev); - return 0; + cspi_object_ref (obj); } /** @@ -43,15 +58,21 @@ AccessibleHyperlink_unref (AccessibleHyperlink *obj) * @see AccessibleHyperlink_getURI() and AccessibleHyperlink_getObject(). * * Returns: a #long indicating the number of anchors in this hyperlink. - * **/ long AccessibleHyperlink_getNAnchors (AccessibleHyperlink *obj) { - return (long) - Accessibility_Hyperlink__get_nAnchors (*obj, &ev); -} + long retval; + cspi_return_val_if_fail (obj != NULL, -1); + + retval = + Accessibility_Hyperlink__get_nAnchors (CSPI_OBJREF (obj), cspi_ev ()); + + cspi_return_val_if_ev ("getNAnchors", -1); + + return retval; +} /** * AccessibleHyperlink_getURI: @@ -61,15 +82,22 @@ AccessibleHyperlink_getNAnchors (AccessibleHyperlink *obj) * Get the URI associated with a particular hyperlink anchor. * * Returns: a UTF-8 string giving the URI of the @ith hyperlink anchor. - * **/ char * AccessibleHyperlink_getURI (AccessibleHyperlink *obj, - long int i) + long int i) { - return (char *) - Accessibility_Hyperlink_getURI (*obj, - (CORBA_long) i, &ev); + char *retval; + + cspi_return_val_if_fail (obj != NULL, NULL); + + retval = + Accessibility_Hyperlink_getURI (CSPI_OBJREF (obj), + i, cspi_ev ()); + + cspi_return_val_if_ev ("getURI", NULL); + + return retval; } /** @@ -81,15 +109,16 @@ AccessibleHyperlink_getURI (AccessibleHyperlink *obj, * * Returns: an #Accessible that represents the object associated with the @ith anchor * of the specified #AccessibleHyperlink. - * **/ Accessible* AccessibleHyperlink_getObject (AccessibleHyperlink *obj, - long int i) + long int i) { - return Obj_Add ( - Accessibility_Hyperlink_getObject (*obj, - (CORBA_long) i, &ev)); + cspi_return_val_if_fail (obj != NULL, NULL); + + return cspi_object_add ( + Accessibility_Hyperlink_getObject (CSPI_OBJREF (obj), + i, cspi_ev ())); } /** @@ -103,20 +132,24 @@ AccessibleHyperlink_getObject (AccessibleHyperlink *obj, * * Get the starting and ending character offsets of the text range associated with * a #AccessibleHyperlink, in its originating #AccessibleHypertext. - * **/ void AccessibleHyperlink_getIndexRange (AccessibleHyperlink *obj, long int *startIndex, long int *endIndex) { - *startIndex = (long) - Accessibility_Hyperlink__get_startIndex (*obj, &ev); - *endIndex = (long) - Accessibility_Hyperlink__get_endIndex (*obj, &ev); -} + CORBA_long si, ei; + + cspi_return_if_fail (obj != NULL); +si = Accessibility_Hyperlink__get_startIndex (CSPI_OBJREF (obj), cspi_ev ()); + cspi_return_if_ev ("startIndex"); + ei = Accessibility_Hyperlink__get_endIndex (CSPI_OBJREF (obj), cspi_ev ()); + cspi_return_if_ev ("endIndex"); + *startIndex = si; + *endIndex = ei; +} /** * AccessibleHyperlink_isValid: @@ -127,13 +160,20 @@ AccessibleHyperlink_getIndexRange (AccessibleHyperlink *obj, * * Returns: #TRUE of the specified #AccessibleHyperlink is still valid with respect * to its originating #AccessibleHypertext object, #FALSE otherwise. - * **/ -boolean +SPIBoolean AccessibleHyperlink_isValid (AccessibleHyperlink *obj) { - return (boolean) - Accessibility_Hyperlink_isValid (*obj, &ev); + SPIBoolean retval; + + cspi_return_val_if_fail (obj != NULL, FALSE); + + retval = + Accessibility_Hyperlink_isValid (CSPI_OBJREF (obj), cspi_ev ()); + + cspi_return_val_if_ev ("isValid", FALSE); + + return retval; }