summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIan Osgood <iano@quirkster.com>2006-06-06 10:02:16 -0700
committerIan Osgood <iano@quirkster.com>2006-06-06 10:02:16 -0700
commit356cf013ec205580037b5f3c46442c601a9795a4 (patch)
tree89604fc797082fb1489c60d0dd7c21478e2b8049 /src
parenta2cf7b73787354b62dc9ad34658b91f25e0bc204 (diff)
Update XFixes to protocol version 4.
Use <bit> construct for mask enums.
Diffstat (limited to 'src')
-rw-r--r--src/extensions/xfixes.xml27
1 files changed, 14 insertions, 13 deletions
diff --git a/src/extensions/xfixes.xml b/src/extensions/xfixes.xml
index ab59637..b82c63b 100644
--- a/src/extensions/xfixes.xml
+++ b/src/extensions/xfixes.xml
@@ -24,7 +24,7 @@ institutions shall not be used in advertising or otherwise to promote the
sale, use or other dealings in this Software without prior written
authorization from the authors.
-->
-<!-- This file describes version 3 of XFixes. -->
+<!-- This file describes version 4 of XFixes. -->
<xcb header="xfixes" extension-xname="XFIXES" extension-name="XFixes">
<import>render</import>
<import>shape</import>
@@ -71,15 +71,9 @@ authorization from the authors.
</enum>
<enum name="SelectionEventMask">
- <item name="SetSelectionOwner">
- <op op="&lt;&lt;"><value>1</value><value>0</value></op>
- </item>
- <item name="SelectionWindowDestroy">
- <op op="&lt;&lt;"><value>1</value><value>1</value></op>
- </item>
- <item name="SelectionClientClose">
- <op op="&lt;&lt;"><value>1</value><value>2</value></op>
- </item>
+ <item name="SetSelectionOwner"> <bit>0</bit></item>
+ <item name="SelectionWindowDestroy"><bit>1</bit></item>
+ <item name="SelectionClientClose"> <bit>2</bit></item>
</enum>
<event name="SelectionNotify" number="0">
@@ -103,9 +97,7 @@ authorization from the authors.
</enum>
<enum name="CursorNotifyMask">
- <item name="DisplayCursor">
- <op op="&lt;&lt;"><value>1</value><value>0</value></op>
- </item>
+ <item name="DisplayCursor"><bit>0</bit></item>
</enum>
<event name="CursorNotify" number="1">
@@ -319,4 +311,13 @@ authorization from the authors.
<field type="CARD16" name="top" />
<field type="CARD16" name="bottom" />
</request>
+
+ <!-- Version 4 -->
+ <request name="HideCursor" opcode="29">
+ <field type="WINDOW" name="window" />
+ </request>
+
+ <request name="ShowCursor" opcode="30">
+ <field type="WINDOW" name="window" />
+ </request>
</xcb>