inputproto: Changes to 'master'

Peter Hutterer whot at kemper.freedesktop.org
Wed Jun 3 22:35:45 PDT 2009


 Makefile.am  |    6 
 XI.h         |   32 -
 XI2.h        |  155 +++++
 XI2proto.h   | 1030 ++++++++++++++++++++++++++++++++++++++
 XI2proto.txt | 1559 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 XIproto.h    |  347 -------------
 configure.ac |    2 
 7 files changed, 2757 insertions(+), 374 deletions(-)

New commits:
commit 56da196866d8c883b9b25b04dd584fbcb159ffd3
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu Jun 4 13:35:42 2009 +1000

    XIQueryVersion may return a BadValue for major_version less than 2.
    
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 0d75208a554577d652ca9e2856a4f12b0d720a1f
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Mon Jun 1 09:12:42 2009 +1000

    Move the XI2 index into versions[] over to XI2.h

commit 8aff0836afaef4397f9df273cc90edeca1ab9641
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Fri May 29 13:25:32 2009 +1000

    Specify modifier interactions with attached slave devices on passive grabs.

commit e102c504ec58e6bc4620e7cd01ea34de665e5fd9
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Wed May 27 14:12:58 2009 +1000

    inputproto 1.9.99.10

commit 6b61bef5da91ca24d1bfcf9d314b8b8587c3e4fc
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu May 28 08:20:37 2009 +1000

    Mirror the core enter/focus modes and add the passive grab mode.
    
    If an enter/focus grabs activates (or deactivates), send an extra set of
    enter/focus in (or leave/focus out) events to the grabbing client with mode
    XIPassiveGrabNotify.
    
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 1b2dc24bf51a325ea3fafb46768467675b00be52
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Mon May 25 15:48:25 2009 +1000

    Add Enter/FocusIn passive grabs.
    
    Same behaviour as button/keysym grabs but triggered on enter/leave and
    focus in/out events.

commit d0c6633f7bc2519c0b6c662a1f39a8ce56ab768a
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Wed May 27 13:11:49 2009 +1000

    XI2proto.txt: remove one more keycode mentioning, fix typo

commit 31f492bf9471fc593275fb95f97312db21439641
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Mon May 25 12:14:12 2009 +1000

    Add XIGetSelectedEvents request and reply.
    
    Counterpart to XISelectEvents, used to retrieve event masks from the server.

commit f065f6c12aa5c2e79f1af38908e86d20a2efdc86
Author: Benjamin Close <Benjamin.Close at clearchain.com>
Date:   Tue May 19 11:27:03 2009 +1000

    XI2proto.h: fix two comments referring to the old naming scheme.
    
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 3aca2d6ba53c8ddf5c40ae4b1411e50134b404a5
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Fri May 15 20:14:16 2009 +1000

    inputproto 1.9.99.9

commit 8c2872367765170c37f829d635c97dc3d68861b7
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Sat May 16 11:49:21 2009 +1000

    Document naming conventions for XI2proto.h.

commit b32e5830c0acbdba4798fad107bf8404c978753c
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Sat May 16 11:46:44 2009 +1000

    XI2proto: define Window, Cursor, Atom and Time as uint32_t.
    
    Since we're using stdint in the rest of the file, might as well ignore
    CARD32 here.

commit f4f09d40e0fd94d267b280f2a82385dca1141347
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Sat May 16 11:31:03 2009 +1000

    XI2.h: remove XI2Mask, add XISetMask and friends.
    
    XISetMask, XIClearMask, XIMaskIsSet serve to set, clear or check a bit in
    the provided array.
    XIMaskLen is a macro to get the minimum length of a mask for a given event
    type.
    
    They are expected to be common ways to deal with event masks, i.e. clients
    will do:
    
    unsigned char mask[XIMaskLen(XI_ButtonRelease)] = {0};
    XISetMask(mask, XI_ButtonPress)
    XISetMask(mask, XI_ButtonRelease)
    
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 0ae6581bc62b3b734c84b12e9a92d945d3e98aa7
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Sat May 16 11:25:49 2009 +1000

    Add XIAnyButton and XIAnyKeysym.

commit 4cc6992b08b6c7aed0d1242e3382fb53d51a0fe2
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu May 14 12:09:38 2009 +1000

    XIQueryPointer needs to include sensible button/modifier state.
    
    This includes shuffling the xXIModifierInfo and xXIGroupInfo structs to the
    common structs section.

commit d041f30777c09f07ac79fface61bfbfa654306f2
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu May 14 10:29:49 2009 +1000

    Add an introduction to XI2proto.txt

commit e1138da90235797248f38d7f613566fb8418c396
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue May 12 19:24:31 2009 +1000

    XI2proto.txt: remove more mentioning of keycode grabs

commit 7aba20ed4c404b80112a0bb28220a2c646f319e4
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue May 12 16:51:05 2009 +1000

    Remove superfluous "Device" from protocol requests and events.
    
    Anything with prefix XI is per-device anyway.

commit 12635cbd4aea0ba3b38b96682d63bb71ba8c737e
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue May 12 16:14:01 2009 +1000

    Add per-device flags to XIDeviceHierarchyEvents

commit 886d2aceb77070292e984ed2b25e31ac9c82aba7
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue May 12 13:45:48 2009 +1000

    Define Cursor as CARD32.
    
    Reported-by: Benjamin Close <benjamin.close at clearchain.com>
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 32277164bcff6b18a498f12886828187e1f96249
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Mon May 11 14:35:35 2009 +1000

    XI2proto.h: doxygen-ify

commit e9dfa4015520abd49779e96e7d54da763a54484b
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Mon May 11 13:46:53 2009 +1000

    XI2proto.h: s/uint32_t/Time/ where appropriate

commit a47a2b50845499e3f9144739db5644952faf8ea2
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu May 7 16:19:47 2009 +1000

    Prefix all XI2 constants with "XI" -> inputproto 1.99.9.8
    
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 2edc35c032c2792d9528a396f596d466d4f10764
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Wed May 6 16:33:34 2009 +1000

    Add XI2 property requests.
    
    Basically the same as XI 1.5, save the 16 bit deviceids.

commit 504b480c946fe4c4a96500ef8c5da100b787ab32
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Sat Apr 25 11:08:21 2009 +1000

    XI2: add passive grabs.
    
    Most notably XI2 provides keysym grabs instead of keycode grabs.

commit 5d60550fdeb375a88ac9da42bcad4ee69b0df64a
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Sat Apr 25 10:43:43 2009 +1000

    XI2 spec: Add some more Grab/Ungrab/AllowEvents documentation.

commit 6d28cb22ada7a1abb6ab11863c82c9834d1a4b00
Author: Benjamin Close <Benjamin.Close at clearchain.com>
Date:   Wed Apr 22 13:10:50 2009 +0930

    Define the Cursor datasize correctly
    
    On 64 bit machines, without Cursor defined Xlib would allocate 64 bits
    rather than 32 to any structs using Cursor. This led to data not
    correctly being available on the wire hence the Xserver would do strange
    things. We hence define Cursor to what it should be and make sure
    we undefine it after we've finished to users of XIproto.h aren't affected
    
    Fix-by: Peter Hutterer <peter.hutterer at who-t.net>
    Signed-off-by: Benjamin Close <Benjamin.Close at clearchain.com>
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 589dc6ffa509c1c7da2d94dc89b2246c3dfdc81d
Author: Paul "TBBle" Hampson <Paul.Hampson at Pobox.com>
Date:   Wed Apr 22 09:00:14 2009 +1000

    Fix typo in XI2proto.txt
    
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 3380ae0ac0220c7f8fea9df855113819b472a233
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu Apr 16 11:37:20 2009 +1000

    Add XIAllowEvents.
    
    Basically the same as the core protocol AllowEvents.

commit 3c273d7145ed5f53b54d2812ad2ac8430d449555
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Sun Apr 19 21:33:42 2009 +1000

    Change FP1616 into a single int32_t.

commit 8914a9a2a99e334f66d6040d05b3d5f5b603780f
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Fri Apr 10 17:31:05 2009 +1000

    Add GrabDevice and UngrabDevice XI2 requests.

commit 1956df7e45a49464dee2d7beff36f38ea00e9cb8
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Fri Apr 10 14:56:20 2009 +1000

    Revert "Add major/minor version as supported by client to GetExtensionVersionReq."
    
    This reverts commit f6e41306f76de966884d4b72c5fb5e5d6d534ce4.
    Sending the supported version hidden in another request is potentially
    dangerous, so let's not do it.
    
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 55ee1f97d446403b9c2ed2e3c321afa4d683c93f
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Fri Apr 10 14:35:00 2009 +1000

    XI2proto.txt: fix typo
    
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit d5105dc8516dd89cad0cd841081ff85d0a672bae
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Fri Apr 10 14:17:51 2009 +1000

    We don't need to define KeyCode and Mask.
    
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 75daa0db2c87d065e80afdf248965f34f7073cd5
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Fri Apr 10 14:17:02 2009 +1000

    Undef Window, Time, etc. after usage again to avoid pollution.
    
    Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>

commit 6c9785ea2581924fc748f61160a2faa4ab8eded0
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue Mar 3 15:15:50 2009 +1000

    Remove IsFloating - we don't need this in XI 1.x anymore.

commit 069880638b1c2af821c6d84fde4119668c533063
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue Mar 3 15:13:22 2009 +1000

    Move XI_2_Major/Minor to XI2.h

commit 2570457174fb951d3f5f725f87e8f7f45059158b
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue Mar 3 16:13:05 2009 +1000

    Move AttachToMaster, Floating to XI2.h

commit 1d933800acfa31f0a8f014224c1708f0076f3db0
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue Mar 3 15:58:24 2009 +1000

    Move CH_* constants to xi2

commit 5aa07308a10315f9305cd9637c71f98432c75ecf
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Wed Feb 4 14:33:57 2009 +1000

    Remove XI2 requests from XIproto.h
    
    All requests been moved to XI2proto.h. Only ExtendedGrabDevice is gone for
    good.

commit 05f997e68921a1443728a9c58050eb82b73eaea8
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu Feb 26 15:22:55 2009 +1000

    Bump to 1.9.99.7

commit 7a73c3c64b1affa946deb66dd22042ee12fd747d
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu Mar 12 15:43:26 2009 +1000

    Add XISetDeviceFocus and XIGetDeviceFocus requests

commit 0ca1de737aa5cd714a4df3a45422dce415f9df55
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Wed Mar 11 16:32:06 2009 +1000

    Add focus events

commit da74983b7d18ad06fe828040072d4a985ce4d448
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Wed Mar 11 13:32:09 2009 +1000

    Add buttons + modifier/group information to enter/leave events.

commit c9ebfba4a128f0d0eda920a02af013b795adfec5
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Wed Mar 11 12:30:16 2009 +1000

    Define FP1616 as one int16_t, one uint16_t.

commit 2339bc5b0eea89e676ac58a38ac5eb6a8ae6e6f9
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue Mar 10 15:42:28 2009 +1000

    ValuatorInfo moved to FP3232

commit cac1bcbf6d544f29c3379bc0462bb237e8ff8399
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue Mar 10 15:35:04 2009 +1000

    Add FP3232 typedef.

commit fc7f67959ad72c76e852827963d6a42b7d533b89
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Tue Mar 10 12:26:18 2009 +1000

    XI2: remove button state from the RawEvent.
    
    A RawEvent is supposed to represent the state posted by the device. If a
    client needs button state, then the client must keep track of it.

commit d2ba9af0517f54fb58358e41859f5e4ead9b64f2
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu Feb 26 15:10:28 2009 +1000

    Split CH_ChangeAttachment into CH_AttachSlave and CH_DetachSlave
    
    CH_ChangeAttachment is still there, but won't be for long.

commit 69f5b8a3ff8258cc6d50cca7d5382b0fe9fed893
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu Feb 5 15:57:56 2009 +1000

    Add XI2.h and XI2proto.h, and a few required defines to XI.h

commit 27dc5a8313d48a78a628563132142a97f7a47843
Author: Peter Hutterer <peter.hutterer at who-t.net>
Date:   Thu Feb 5 14:18:28 2009 +1000

    Add XI2 protocol specification document.



More information about the xorg-commit mailing list