2004-02-11 Padraig O'Briain <padraig.obriain@sun.com>
[platform/core/uifw/at-spi2-atk.git] / idl / Accessibility_State.idl
index ecb7e73..9c43288 100644 (file)
@@ -108,12 +108,24 @@ module Accessibility {
   STATE_VERTICAL,
   /* Indicates this object is visible */
   STATE_VISIBLE,
+  /*
+   * Indicates that "active-descendant-changed" event is sent when children
+   * become 'active' (i.e. are selected or navigated to onscreen).  Used to
+   * prevent need to enumerate all children in very large containers, like
+   * tables.
+   */
+  STATE_MANAGES_DESCENDANTS,
+  /*
+   * Indicates that a check box is in a state other than checked or not checked.
+   */
+  STATE_INDETERMINATE,
+
   STATE_LAST_DEFINED
   };
 
   typedef sequence <StateType> StateSeq;
 
-  interface StateSet {
+  interface StateSet : Bonobo::Unknown {
     boolean            contains (in StateType state);
     void               add (in StateType state);
     void               remove (in StateType state);
@@ -132,6 +144,8 @@ module Accessibility {
      */
     void unImplemented ();
     void unImplemented2 ();
+    void unImplemented3 ();
+    void unImplemented4 ();
   };
 };