[at-spi2-core] Fix Qt annotations in DBus xml files



commit 7e19ba4dad1639f23b9704187e8790b125936b43
Author: Jos van den Oever <jos vandenoever info>
Date:   Sun Jul 19 23:46:26 2020 +0200

    Fix Qt annotations in DBus xml files
    
    The tools qdbusxml2cpp was reporting errors on these files.
    The annotations are now changed to fix these various errors including
     - missing annotation
     - wrongly nested <annotation/> element
     - wrong Qt type
     - missing direction attribute
    
    The files were checked with
      for f in *.xml; do echo $f; qdbusxml2cpp -p o $f; echo $?; done

 xml/Accessible.xml            |  14 +++---
 xml/Action.xml                |   2 +-
 xml/Cache.xml                 |  12 ++---
 xml/Collection.xml            |  18 +++----
 xml/Component.xml             |   4 +-
 xml/DeviceEventController.xml |  24 ++++-----
 xml/DeviceEventListener.xml   |   2 +-
 xml/Document.xml              |   2 +-
 xml/Event.xml                 | 112 +++++++++++++++++++++---------------------
 xml/Hyperlink.xml             |   2 +-
 xml/Hypertext.xml             |   2 +-
 xml/Image.xml                 |   2 +-
 xml/Registry.xml              |   4 +-
 xml/Selection.xml             |   2 +-
 xml/Socket.xml                |  20 +++-----
 xml/Table.xml                 |  14 +++---
 xml/TableCell.xml             |   8 ++-
 xml/Text.xml                  |   9 ++--
 18 files changed, 125 insertions(+), 128 deletions(-)
---
diff --git a/xml/Accessible.xml b/xml/Accessible.xml
index 7015466..33b98af 100644
--- a/xml/Accessible.xml
+++ b/xml/Accessible.xml
@@ -7,7 +7,7 @@
   <property name="Description" type="s" access="read"/>
 
   <property name="Parent" type="(so)" access="read">
-    <annotation name="com.trolltech.QtDBus.QtTypeName" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName" value="QSpiObjectReference"/>
   </property>
 
   <property name="ChildCount" type="i" access="read"/>
@@ -19,12 +19,12 @@
   <method name="GetChildAtIndex">
     <arg direction="in" name="index" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
   </method>
 
   <method name="GetChildren">
     <arg direction="out" type="a(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReferenceArray"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReferenceArray"/>
   </method>
 
   <method name="GetIndexInParent">
@@ -33,7 +33,7 @@
 
   <method name="GetRelationSet">
     <arg direction="out" type="a(ua(so))"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiRelationArray"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiRelationArray"/>
   </method>
 
   <method name="GetRole">
@@ -50,17 +50,17 @@
 
   <method name="GetState">
     <arg direction="out" type="au"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiIntList"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiIntList"/>
   </method>
 
   <method name="GetAttributes">
     <arg direction="out" type="a{ss}"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiAttributeSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiAttributeSet"/>
   </method>
 
   <method name="GetApplication">
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
   </method>
 
 </interface>
diff --git a/xml/Action.xml b/xml/Action.xml
index 0f5aa85..1626700 100644
--- a/xml/Action.xml
+++ b/xml/Action.xml
@@ -26,7 +26,7 @@
 
   <method name="GetActions">
     <arg direction="out" type="a(sss)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiActionArray"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiActionArray"/>
   </method>
 
   <method name="DoAction">
diff --git a/xml/Cache.xml b/xml/Cache.xml
index e693b54..ce06ba4 100644
--- a/xml/Cache.xml
+++ b/xml/Cache.xml
@@ -3,18 +3,18 @@
 <interface name="org.a11y.atspi.Cache">
 
   <method name="GetItems">
-    <arg name="nodes" type="a((so)(so)iiassusau)" direction="out"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiAccessibleCacheArray"/>
+    <arg direction="out" name="nodes" type="a((so)(so)iiassusau)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiAccessibleCacheArray"/>
   </method>
 
   <signal name="AddAccessible">
-    <arg name="nodeAdded" type="((so)(so)iiassusau)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiAccessibleCacheItem"/>
+    <arg direction="in" name="nodeAdded" type="((so)(so)iiassusau)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiAccessibleCacheItem"/>
   </signal>
 
   <signal name="RemoveAccessible">
-    <arg name="nodeRemoved" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
+    <arg direction="in" name="nodeRemoved" type="(so)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
   </signal>
 
 </interface>
diff --git a/xml/Collection.xml b/xml/Collection.xml
index 7b39776..a6dff74 100644
--- a/xml/Collection.xml
+++ b/xml/Collection.xml
@@ -4,44 +4,44 @@
 
   <method name="GetMatches">
     <arg direction="in" name="rule" type="(auuasuauusub)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In1" value="QSpiMatchRule"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiMatchRule"/>
     <arg direction="in" name="sortby" type="u"/>
     <arg direction="in" name="count" type="i"/>
     <arg direction="in" name="traverse" type="b"/>
     <arg direction="out" type="a(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiReferenceSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiReferenceSet"/>
   </method>
 
   <method name="GetMatchesTo">
     <arg direction="in" name="current_object" type="o"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
     <arg direction="in" name="rule" type="(auuasuauusub)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In1" value="QSpiMatchRule"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="QSpiMatchRule"/>
     <arg direction="in" name="sortby" type="u"/>
     <arg direction="in" name="tree" type="u"/>
     <arg direction="in" name="limit_scope" type="b"/>
     <arg direction="in" name="count" type="i"/>
     <arg direction="in" name="traverse" type="b"/>
     <arg direction="out" type="a(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiReferenceSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiReferenceSet"/>
   </method>
 
   <method name="GetMatchesFrom">
     <arg direction="in" name="current_object" type="o"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
     <arg direction="in" name="rule" type="(auuasuauusub)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In1" value="QSpiMatchRule"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="QSpiMatchRule"/>
     <arg direction="in" name="sortby" type="u"/>
     <arg direction="in" name="tree" type="u"/>
     <arg direction="in" name="count" type="i"/>
     <arg direction="in" name="traverse" type="b"/>
     <arg direction="out" type="a(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiReferenceSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiReferenceSet"/>
   </method>
 
   <method name="GetActiveDescendant">
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiReferenceSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiReferenceSet"/>
   </method>
 
 </interface>
diff --git a/xml/Component.xml b/xml/Component.xml
index c1258d2..94056ff 100644
--- a/xml/Component.xml
+++ b/xml/Component.xml
@@ -14,13 +14,13 @@
     <arg direction="in" name="y" type="i"/>
     <arg direction="in" name="coord_type" type="u"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
   </method>
 
   <method name="GetExtents">
     <arg direction="in" name="coord_type" type="u"/>
     <arg direction="out" type="(iiii)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiRect"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiRect"/>
   </method>
 
   <method name="GetPosition">
diff --git a/xml/DeviceEventController.xml b/xml/DeviceEventController.xml
index 0af9aac..460e79a 100644
--- a/xml/DeviceEventController.xml
+++ b/xml/DeviceEventController.xml
@@ -4,24 +4,20 @@
 
   <method name="RegisterKeystrokeListener">
     <arg direction="in" name="listener" type="o"/>
-    <arg direction="in" name="keys" type="a(iisi)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In1" value="QSpiKeyTypeArray"/>
-    </arg>
+    <arg direction="in" name="keys" type="a(iisi)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="QSpiKeyTypeArray"/>
     <arg direction="in" name="mask" type="u"/>
-    <arg direction="in" name="type" type="au">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In3" value="QSpiEventTypeArray"/>
-    </arg>
-    <arg direction="in" name="mode" type="(bbb)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In4" value="QSpiEventMode"/>
-    </arg>
+    <arg direction="in" name="type" type="au"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In3" value="QSpiEventTypeArray"/>
+    <arg direction="in" name="mode" type="(bbb)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In4" value="QSpiEventMode"/>
     <arg direction="out" type="b"/>
   </method>
 
   <method name="DeregisterKeystrokeListener">
     <arg direction="in" name="listener" type="o"/>
-    <arg direction="in" name="keys" type="a(iisi)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In1" value="QSpiKeyTypeArray"/>
-    </arg>
+    <arg direction="in" name="keys" type="a(iisi)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="QSpiKeyTypeArray"/>
     <arg direction="in" name="mask" type="u"/>
     <arg direction="in" name="type" type="u"/>
   </method>
@@ -52,12 +48,12 @@
   <method name="NotifyListenersSync">
     <arg direction="in" name="event" type="(uiuuisb)"/>
     <arg direction="out" type="b"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiDeviceEvent"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiDeviceEvent"/>
   </method>
 
   <method name="NotifyListenersAsync">
     <arg direction="in" name="event" type="(uiuuisb)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiDeviceEvent"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiDeviceEvent"/>
   </method>
 
 </interface>
diff --git a/xml/DeviceEventListener.xml b/xml/DeviceEventListener.xml
index a6dd3b6..2c72973 100644
--- a/xml/DeviceEventListener.xml
+++ b/xml/DeviceEventListener.xml
@@ -4,7 +4,7 @@
 
   <method name="NotifyEvent">
     <arg direction="in" name="event" type="(uiuuisb)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiDeviceEvent"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiDeviceEvent"/>
     <arg direction="out" type="b"/>
   </method>
 
diff --git a/xml/Document.xml b/xml/Document.xml
index d12a306..a82eb98 100644
--- a/xml/Document.xml
+++ b/xml/Document.xml
@@ -17,7 +17,7 @@
 
   <method name="GetAttributes">
     <arg direction="out" type="{ss}"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiAttrubutes"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiAttributeSet"/>
   </method>
 
 </interface>
diff --git a/xml/Event.xml b/xml/Event.xml
index fac67de..3614358 100644
--- a/xml/Event.xml
+++ b/xml/Event.xml
@@ -3,190 +3,190 @@
 
 <interface name="org.a11y.atspi.Event.Object">
        <signal name="PropertyChange"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="BoundsChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="LinkSelected"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="StateChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="ChildrenChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="VisibleDataChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="SelectionChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="ModelChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="ActiveDescendantChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="RowInserted"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="RowReordered"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="RowDeleted"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="ColumnInserted"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="ColumnReordered"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="ColumnDeleted"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="TextBoundsChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="TextSelectionChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="TextChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="TextAttributesChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="TextCaretMoved"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="AttributesChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Window">
        <signal name="PropertyChange"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Minimize"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Maximize"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Restore"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Close"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Create"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Reparent"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="DesktopCreate"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="DesktopDestroy"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Destroy"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Activate"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Deactivate"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Raise"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Lower"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Move"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Resize"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Shade"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="uUshade"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Restyle"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Mouse">
        <signal name="Abs"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Rel"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Button"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Keyboard">
        <signal name="Modifiers"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Terminal">
        <signal name="LineChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="ColumncountChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="LinecountChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="ApplicationChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="CharwidthChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Document">
        <signal name="LoadComplete"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="Reload"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="LoadStopped"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="ContentChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="AttributesChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
        <signal name="PageChanged"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
 </interface>
 
 <interface name="org.a11y.atspi.Event.Focus">
        <signal name="Focus"><arg direction="in" type="(suuv)"/>
-          <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
+          <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiEvent"/>
         </signal>
 </interface>
 
diff --git a/xml/Hyperlink.xml b/xml/Hyperlink.xml
index 75f8099..80d5777 100644
--- a/xml/Hyperlink.xml
+++ b/xml/Hyperlink.xml
@@ -11,7 +11,7 @@
   <method name="GetObject">
     <arg direction="in" name="i" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
   </method>
 
   <method name="GetURI">
diff --git a/xml/Hypertext.xml b/xml/Hypertext.xml
index 18a3b34..79b5277 100644
--- a/xml/Hypertext.xml
+++ b/xml/Hypertext.xml
@@ -9,7 +9,7 @@
   <method name="GetLink">
     <arg direction="in" name="linkIndex" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
   </method>
 
   <method name="GetLinkIndex">
diff --git a/xml/Image.xml b/xml/Image.xml
index 43536ee..1dd72f1 100644
--- a/xml/Image.xml
+++ b/xml/Image.xml
@@ -9,7 +9,7 @@
   <method name="GetImageExtents">
     <arg direction="in" name="coordType" type="u"/>
     <arg direction="out" type="(iiii)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiRect"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiRect"/>
   </method>
 
   <method name="GetImagePosition">
diff --git a/xml/Registry.xml b/xml/Registry.xml
index a3ab93c..7603328 100644
--- a/xml/Registry.xml
+++ b/xml/Registry.xml
@@ -13,8 +13,8 @@
   </method>
 
   <method name="GetRegisteredEvents">
-    <arg direction="out" name="events" type="a(ss)">
-    </arg>
+    <arg direction="out" name="events" type="a(ss)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiEventListenerArray"/>
   </method>
 
   <signal name="EventListenerRegistered">
diff --git a/xml/Selection.xml b/xml/Selection.xml
index 2e19187..7b0ad21 100644
--- a/xml/Selection.xml
+++ b/xml/Selection.xml
@@ -7,7 +7,7 @@
   <method name="GetSelectedChild">
     <arg direction="in" name="selectedChildIndex" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
   </method>
 
   <method name="SelectChild">
diff --git a/xml/Socket.xml b/xml/Socket.xml
index 5f9367e..75ec99f 100644
--- a/xml/Socket.xml
+++ b/xml/Socket.xml
@@ -3,24 +3,20 @@
 <interface name="org.a11y.atspi.Socket">
 
   <method name="Embed">
-    <arg direction="in" name="plug" type="(so)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
-    </arg>
-    <arg direction="out" name="socket" type="(so)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
-    </arg>
+    <arg direction="in" name="plug" type="(so)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
+    <arg direction="out" name="socket" type="(so)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
   </method>
 
   <method name="Unembed">
-    <arg direction="in" name="plug" type="(so)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
-    </arg>
+    <arg direction="in" name="plug" type="(so)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
   </method>
 
   <signal name="Available">
-    <arg direction="in" name="socket" type="(so)">
-      <annotation name="com.trolltech.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
-    </arg>
+    <arg direction="in" name="socket" type="(so)"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QSpiObjectReference"/>
   </method>
 
 </interface>
diff --git a/xml/Table.xml b/xml/Table.xml
index 181acaa..3b35989 100644
--- a/xml/Table.xml
+++ b/xml/Table.xml
@@ -7,11 +7,11 @@
   <property name="NColumns" type="i" access="read"/>
 
   <property name="Caption" type="(so)" access="read">
-    <annotation name="com.trolltech.QtDBus.QtTypeName" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName" value="QSpiObjectReference"/>
   </property>
 
   <property name="Summary" type="(so)" access="read">
-    <annotation name="com.trolltech.QtDBus.QtTypeName" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName" value="QSpiObjectReference"/>
   </property>
 
   <property name="NSelectedRows" type="i" access="read"/>
@@ -22,7 +22,7 @@
     <arg direction="in" name="row" type="i"/>
     <arg direction="in" name="column" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
   </method>
 
   <method name="GetIndexAt">
@@ -66,23 +66,23 @@
   <method name="GetRowHeader">
     <arg direction="in" name="row" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
   </method>
 
   <method name="GetColumnHeader">
     <arg direction="in" name="column" type="i"/>
     <arg direction="out" type="(so)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
   </method>
 
   <method name="GetSelectedRows">
     <arg direction="out" type="ai"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiIntList"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiIntList"/>
   </method>
 
   <method name="GetSelectedColumns">
     <arg direction="out" type="ai"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiIntList"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiIntList"/>
   </method>
 
   <method name="IsRowSelected">
diff --git a/xml/TableCell.xml b/xml/TableCell.xml
index c60a074..dbdbe8c 100644
--- a/xml/TableCell.xml
+++ b/xml/TableCell.xml
@@ -4,11 +4,15 @@
 
   <property access="read" name="ColumnSpan" type="i" />
 
-  <property access="read" name="Position" type="(ii)" />
+  <property access="read" name="Position" type="(ii)">
+    <annotation name="org.qtproject.QtDBus.QtTypeName" value="QPoint"/>
+  </property>
 
   <property access="read" name="RowSpan" type="i" />
 
-  <property access="read" name="Table" type="(so)" />
+  <property access="read" name="Table" type="(so)" >
+    <annotation name="org.qtproject.QtDBus.QtTypeName" value="QSpiObjectReference"/>
+  </property>
 
   <method name="GetRowColumnSpan">
     <arg direction="out" type="b" />
diff --git a/xml/Text.xml b/xml/Text.xml
index 313131e..fe9f44b 100644
--- a/xml/Text.xml
+++ b/xml/Text.xml
@@ -65,12 +65,12 @@
     <arg direction="out" type="a{ss}"/>
     <arg direction="out" name="startOffset" type="i"/>
     <arg direction="out" name="endOffset" type="i"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiAttributeSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiAttributeSet"/>
   </method>
 
   <method name="GetDefaultAttributes">
     <arg direction="out" type="a{ss}"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiAttributeSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiAttributeSet"/>
   </method>
 
   <method name="GetCharacterExtents">
@@ -136,7 +136,7 @@
     <arg direction="in" name="xClipType" type="u"/>
     <arg direction="in" name="yClipType" type="u"/>
     <arg direction="out" type="a(iisv)"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiRangeList"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiRangeList"/>
   </method>
 
   <method name="GetAttributeRun">
@@ -145,11 +145,12 @@
     <arg direction="out" type="a{ss}"/>
     <arg direction="out" name="startOffset" type="i"/>
     <arg direction="out" name="endOffset" type="i"/>
-    <annotation name="com.trolltech.QtDBus.QtTypeName.Out0" value="QSpiAttributeSet"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiAttributeSet"/>
   </method>
 
   <method name="GetDefaultAttributeSet">
     <arg direction="out" type="a{ss}"/>
+    <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiAttributeSet"/>
   </method>
 
   <method name="ScrollSubstringTo">


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]