2001-12-11 Michael Meeks <michael@ximian.com>
[platform/core/uifw/at-spi2-atk.git] / libspi / image.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.
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 /* image.c : implements the Image interface */
24
25 #include <config.h>
26 #include <stdio.h>
27 #include <libspi/image.h>
28
29
30 SpiImage *
31 spi_image_interface_new (AtkObject *obj)
32 {
33   SpiImage *new_image = g_object_new (SPI_IMAGE_TYPE, NULL);
34
35   spi_base_construct (SPI_BASE (new_image), obj);
36
37   return new_image;
38 }
39
40 static AtkImage *
41 get_image_from_servant (PortableServer_Servant servant)
42 {
43   SpiBase *object = SPI_BASE (bonobo_object_from_servant (servant));
44
45   if (!object)
46     {
47       return NULL;
48     }
49
50   return ATK_IMAGE (object->atko);
51 }
52
53 static void 
54 impl_getImagePosition (PortableServer_Servant servant,
55                        CORBA_long * x, CORBA_long * y,
56                        const CORBA_short coordType,
57                        CORBA_Environment *ev)
58 {
59   AtkImage *image = get_image_from_servant (servant);
60
61   g_return_if_fail (image != NULL);
62
63   atk_image_get_image_position (image,
64                                 (gint *) x, (gint *) y,
65                                 (AtkCoordType) coordType);
66 }
67
68 static void 
69 impl_getImageSize (PortableServer_Servant servant,
70                    CORBA_long * width, CORBA_long * height,
71                    CORBA_Environment *ev)
72 {
73   AtkImage *image = get_image_from_servant (servant);
74
75   g_return_if_fail (image != NULL);
76
77   atk_image_get_image_size (image,
78                             (gint *) width, (gint *) height);
79 }
80
81 static Accessibility_BoundingBox
82 impl_getImageExtents (PortableServer_Servant servant,
83                       const CORBA_short      coordType,
84                       CORBA_Environment     *ev)
85 {
86   AtkImage *image;
87   gint x, y, width, height;
88   Accessibility_BoundingBox bbox;
89
90   image = get_image_from_servant (servant);
91
92   atk_image_get_image_size (image, &width, &height);
93   atk_image_get_image_position (image, &x, &y, coordType);
94
95   bbox.x = x;
96   bbox.y = y;
97   bbox.width = width;
98   bbox.height = height;
99
100   return bbox;
101 }
102
103 static CORBA_string 
104 impl__get_imageDescription (PortableServer_Servant servant,
105                             CORBA_Environment     *ev)
106 {
107   const char *rv;
108   AtkImage   *image = get_image_from_servant (servant);
109
110   g_return_val_if_fail (image != NULL, CORBA_string_dup (""));
111
112   rv = atk_image_get_image_description (image);
113
114   if (rv)
115     {
116       return CORBA_string_dup (rv);
117     }
118   else
119     {
120       return CORBA_string_dup ("");
121     }
122 }
123
124 static void
125 spi_image_class_init (SpiImageClass *klass)
126 {
127   POA_Accessibility_Image__epv *epv = &klass->epv;
128
129   /* Initialize epv table */
130   epv->getImagePosition      = impl_getImagePosition;
131   epv->getImageSize          = impl_getImageSize;
132   epv->getImageExtents       = impl_getImageExtents;
133   epv->_get_imageDescription = impl__get_imageDescription;
134 }
135
136 static void
137 spi_image_init (SpiImage *image)
138 {
139 }
140
141 BONOBO_TYPE_FUNC_FULL (SpiImage,
142                        Accessibility_Image,
143                        SPI_TYPE_BASE,
144                        spi_image);