Added test for action in test-simple.c.
[platform/core/uifw/at-spi2-atk.git] / libspi / image.c
index 5598ae6..889722a 100644 (file)
@@ -37,7 +37,6 @@ spi_image_interface_new (AtkObject *obj)
   return new_image;
 }
 
-
 static AtkImage *
 get_image_from_servant (PortableServer_Servant servant)
 {
@@ -51,7 +50,6 @@ get_image_from_servant (PortableServer_Servant servant)
   return ATK_IMAGE (object->atko);
 }
 
-
 static void 
 impl_getImagePosition (PortableServer_Servant servant,
                       CORBA_long * x, CORBA_long * y,
@@ -67,7 +65,6 @@ impl_getImagePosition (PortableServer_Servant servant,
                                (AtkCoordType) coordType);
 }
 
-
 static void 
 impl_getImageSize (PortableServer_Servant servant,
                   CORBA_long * width, CORBA_long * height,
@@ -81,6 +78,27 @@ impl_getImageSize (PortableServer_Servant servant,
                            (gint *) width, (gint *) height);
 }
 
+static Accessibility_BoundingBox
+impl_getImageExtents (PortableServer_Servant servant,
+                     const CORBA_short      coordType,
+                     CORBA_Environment     *ev)
+{
+  AtkImage *image;
+  gint x, y, width, height;
+  Accessibility_BoundingBox bbox;
+
+  image = get_image_from_servant (servant);
+
+  atk_image_get_image_size (image, &width, &height);
+  atk_image_get_image_position (image, &x, &y, coordType);
+
+  bbox.x = x;
+  bbox.y = y;
+  bbox.width = width;
+  bbox.height = height;
+
+  return bbox;
+}
 
 static CORBA_string 
 impl__get_imageDescription (PortableServer_Servant servant,
@@ -103,16 +121,15 @@ impl__get_imageDescription (PortableServer_Servant servant,
     }
 }
 
-
 static void
 spi_image_class_init (SpiImageClass *klass)
 {
   POA_Accessibility_Image__epv *epv = &klass->epv;
 
   /* Initialize epv table */
-
-  epv->getImagePosition = impl_getImagePosition;
-  epv->getImageSize = impl_getImageSize;
+  epv->getImagePosition      = impl_getImagePosition;
+  epv->getImageSize          = impl_getImageSize;
+  epv->getImageExtents       = impl_getImageExtents;
   epv->_get_imageDescription = impl__get_imageDescription;
 }