2004-02-11 Padraig O'Briain <padraig.obriain@sun.com>
[platform/core/uifw/at-spi2-atk.git] / idl / Accessibility_Relation.idl
index 9a8931a..2d2b1e4 100644 (file)
 module Accessibility {
 
   enum RelationType {
+    RELATION_NULL,
     RELATION_LABEL_FOR,
     RELATION_LABELLED_BY,
     RELATION_CONTROLLER_FOR,
     RELATION_CONTROLLED_BY,
     RELATION_MEMBER_OF,
     RELATION_TOOLTIP_FOR,
-    RELATION_LEAFNODE_OF
+    RELATION_NODE_CHILD_OF,
+    RELATION_EXTENDED,
+    RELATION_FLOWS_TO,
+    RELATION_FLOWS_FROM,
+    RELATION_SUBWINDOW_OF,
+    RELATION_EMBEDS,
+    RELATION_EMBEDDED_BY,
+    RELATION_POPUP_FOR,
+    RELATION_LAST_DEFINED
   };
 
   /*
@@ -41,11 +50,14 @@ module Accessibility {
 
   interface Relation : Bonobo::Unknown {
     RelationType        getRelationType ();
+    string getRelationTypeName ();
     short               getNTargets ();
     Object             getTarget (in short index);
     /* placeholders for future expansion */
     void unImplemented ();
     void unImplemented2 ();
+    void unImplemented3 ();
+    void unImplemented4 ();
   };
 };