Added initial implementations of SpiRelation and, for the C bindings
[platform/core/uifw/at-spi2-atk.git] / idl / Event.idl
index 3d32618..2574a80 100644 (file)
 #ifndef __ACCESSIBILITY_EVENT_DEFINED__
 #define __ACCESSIBILITY_EVENT_DEFINED__
 
-#include <Bonobo.idl>
-
-#if !defined(__ACCESSIBILITY_EVENT_COMPILATION) && defined(__ORBIT_IDL__)
-%{
-#pragma include_defs Accessible.h
-#pragma include_defs Event.h
-%}
-#pragma inhibit push
-#endif
-
-#pragma inhibit push
-#include "Accessible.idl"
-#pragma inhibit pop
+#include <Bonobo_Unknown.idl>
 
 module Accessibility
 {
@@ -43,19 +31,16 @@ module Accessibility
 
   struct Event {
     string type;
-    Accessible target;
+    Accessible source;
     long detail1;
     long detail2;
   };
 
   interface EventListener : Bonobo::Unknown {
+    attribute long hash_id;
     oneway void notifyEvent (in Event e);
   };
 
 };
 
-#if !defined(__ACCESSIBILITY_EVENT_COMPILATION) && defined(__ORBIT_IDL__)
-#pragma inhibit pop
-#endif
-
 #endif