Added new, more efficient screen review API to AccessibleText.
[platform/core/uifw/at-spi2-atk.git] / idl / Accessibility_Image.idl
index a186e6a..54df08d 100644 (file)
 
 module Accessibility {
 
-  interface Image {
-        string getImageDescription ();
-        long getImageHeight ();
-        long getImageWidth ();
+  interface Image : Bonobo::Unknown  {
+    readonly attribute string imageDescription;
+    BoundingBox getImageExtents (in short coordType);
+    void getImagePosition (out long x, out long y, in short coordType);
+    void getImageSize (out long width, out long height);
+    /**
+     * unImplemented:
+     *
+     * placeholders for future expansion.
+     */
+    void unImplemented ();
+    void unImplemented2 ();
+    void unImplemented3 ();
+    void unImplemented4 ();
   };
 };