API revisions: tweaks to key event API, added some reserved slots for
[platform/core/uifw/at-spi2-atk.git] / idl / Accessibility_Component.idl
index 4900684..71e30b7 100644 (file)
@@ -20,7 +20,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include <Event.idl>
+#include <Accessibility_Event.idl>
 
 module Accessibility {
 
@@ -39,7 +39,7 @@ module Accessibility {
 
         boolean contains (in long x, in long y, in short coord_type);
         Accessible getAccessibleAtPoint (in long x, in long y, in short coord_type);
-        void getExtents (out long x, out long y, out long width, out long height, in short coord_type);
+        BoundingBox getExtents (in short coord_type);
         void getPosition (out long x, out long y, in short coord_type);
         void getSize (out long width, out long height);
        ComponentLayer getLayer ();
@@ -47,5 +47,13 @@ module Accessibility {
         void grabFocus ();
         void registerFocusHandler (in EventListener handler);
         void deregisterFocusHandler (in EventListener handler);
-  };  
+
+       /**
+        * unImplemented:
+        *
+        * placeholders for future expansion.
+        */
+       void unImplemented ();
+       void unImplemented2 ();
+  };
 };