2001-12-10 Michael Meeks <michael@ximian.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   if (!object)
48     {
49       return NULL;
50     }
51
52   return ATK_HYPERTEXT (object->atko);
53 }
54
55
56 static CORBA_long
57 impl_getNLinks (PortableServer_Servant servant,
58                 CORBA_Environment     *ev)
59 {
60   AtkHypertext *hypertext = get_hypertext_from_servant (servant);
61
62   g_return_val_if_fail (hypertext != NULL, 0);
63
64   return (CORBA_long) atk_hypertext_get_n_links (hypertext);
65 }
66
67
68 static Accessibility_Hyperlink
69 impl_getLink (PortableServer_Servant servant,
70               const CORBA_long       linkIndex,
71               CORBA_Environment     *ev)
72 {
73   AtkHyperlink *link;
74   Accessibility_Hyperlink rv;
75   AtkHypertext *hypertext = get_hypertext_from_servant (servant);
76
77   g_return_val_if_fail (hypertext != NULL, CORBA_OBJECT_NIL);
78   
79   link = atk_hypertext_get_link (hypertext, linkIndex);
80   g_return_val_if_fail (link != NULL, CORBA_OBJECT_NIL);
81
82   rv = BONOBO_OBJREF (spi_hyperlink_new (ATK_OBJECT (link)));
83
84   return CORBA_Object_duplicate (rv, ev);
85 }
86
87
88 static CORBA_long
89 impl_getLinkIndex (PortableServer_Servant servant,
90                    const CORBA_long       characterIndex,
91                    CORBA_Environment     *ev)
92 {
93   AtkHypertext *hypertext = get_hypertext_from_servant (servant);
94
95   g_return_val_if_fail (hypertext != NULL, 0);
96
97   return (CORBA_long)
98     atk_hypertext_get_link_index (hypertext,
99                                   (gint) characterIndex);
100 }
101
102
103 static void
104 spi_hypertext_class_init (SpiHypertextClass *klass)
105 {
106   POA_Accessibility_Hypertext__epv *epv = &klass->epv;
107
108   /* Initialize epv table */
109
110   epv->getNLinks = impl_getNLinks;
111   epv->getLink = impl_getLink;
112   epv->getLinkIndex = impl_getLinkIndex;
113 }
114
115
116 static void
117 spi_hypertext_init (SpiHypertext *hypertext)
118 {
119 }
120
121
122 BONOBO_TYPE_FUNC_FULL (SpiHypertext,
123                        Accessibility_Hypertext,
124                        BONOBO_TYPE_OBJECT,
125                        spi_hypertext);