Changed IDL for State, Component, and Image to reduce use of out params.
[platform/core/uifw/at-spi2-atk.git] / idl / Image.idl
index b25aa5c..d819172 100644 (file)
@@ -24,9 +24,8 @@ module Accessibility {
 
   interface Image : Bonobo::Unknown  {
     readonly attribute string imageDescription;
-    readonly attribute long height;
-    readonly attribute long width;
-    readonly attribute long xpos;
-    readonly attribute long ypos;
+    BoundingBox getImageExtents (in short coordType);
+    void getImagePosition (out long x, out long y, in short coordType);
+    void getImageSize (out long width, out long height);
   };
 };