2001-12-18 Marc Mulcahy <marc.mulcahy@sun.com>
[platform/core/uifw/at-spi2-atk.git] / libspi / hypertext.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001 Sun Microsystems Inc, Ximian Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /* hypertext.c : implements the HyperText interface */
24
25 #include <config.h>
26 #include <stdio.h>
27 #include <atk/atkhypertext.h>
28 #include <libspi/hyperlink.h>
29 #include <libspi/hypertext.h>
30
31 SpiHypertext *
32 spi_hypertext_interface_new (AtkObject *obj)
33 {
34   SpiHypertext *new_hypertext = g_object_new (SPI_HYPERTEXT_TYPE, NULL);
35
36   spi_text_construct (SPI_TEXT (new_hypertext), obj);
37
38   return new_hypertext;
39 }
40
41
42 static AtkHypertext *
43 get_hypertext_from_servant (PortableServer_Servant servant)
44 {
45   SpiBase *object = SPI_BASE (bonobo_object_from_servant (servant));
46
47   g_return_val_if_fail (object, NULL);
48   g_return_val_if_fail (ATK_IS_OBJECT(object->gobj), NULL);
49   return ATK_HYPERTEXT (object->gobj);
50 }
51
52
53 static CORBA_long
54 impl_getNLinks (PortableServer_Servant servant,
55                 CORBA_Environment     *ev)
56 {
57   AtkHypertext *hypertext = get_hypertext_from_servant (servant);
58
59   g_return_val_if_fail (hypertext != NULL, 0);
60
61   return (CORBA_long) atk_hypertext_get_n_links (hypertext);
62 }
63
64
65 static Accessibility_Hyperlink
66 impl_getLink (PortableServer_Servant servant,
67               const CORBA_long       linkIndex,
68               CORBA_Environment     *ev)
69 {
70   AtkHyperlink *link;
71   Accessibility_Hyperlink rv;
72   AtkHypertext *hypertext = get_hypertext_from_servant (servant);
73
74   g_return_val_if_fail (hypertext != NULL, CORBA_OBJECT_NIL);
75   
76   link = atk_hypertext_get_link (hypertext, linkIndex);
77   g_return_val_if_fail (link != NULL, CORBA_OBJECT_NIL);
78
79   rv = BONOBO_OBJREF (spi_hyperlink_new (ATK_OBJECT (link)));
80
81   return CORBA_Object_duplicate (rv, ev);
82 }
83
84
85 static CORBA_long
86 impl_getLinkIndex (PortableServer_Servant servant,
87                    const CORBA_long       characterIndex,
88                    CORBA_Environment     *ev)
89 {
90   AtkHypertext *hypertext = get_hypertext_from_servant (servant);
91
92   g_return_val_if_fail (hypertext != NULL, 0);
93
94   return (CORBA_long)
95     atk_hypertext_get_link_index (hypertext,
96                                   (gint) characterIndex);
97 }
98
99
100 static void
101 spi_hypertext_class_init (SpiHypertextClass *klass)
102 {
103   POA_Accessibility_Hypertext__epv *epv = &klass->epv;
104
105   /* Initialize epv table */
106
107   epv->getNLinks = impl_getNLinks;
108   epv->getLink = impl_getLink;
109   epv->getLinkIndex = impl_getLinkIndex;
110 }
111
112
113 static void
114 spi_hypertext_init (SpiHypertext *hypertext)
115 {
116 }
117
118
119 BONOBO_TYPE_FUNC_FULL (SpiHypertext,
120                        Accessibility_Hypertext,
121                        BONOBO_TYPE_OBJECT,
122                        spi_hypertext);