This file is indexed.

/usr/share/pyshared/xcb/xfixes.py is in python-xpyb 1.3.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
#
# This file generated automatically from xfixes.xml by py_client.py.
# Edit at your peril.
#

import xcb
import cStringIO
from struct import pack, unpack_from
from array import array
import xproto
import render
import shape

MAJOR_VERSION = 4
MINOR_VERSION = 0

key = xcb.ExtensionKey('XFIXES')

class QueryVersionCookie(xcb.Cookie):
    pass

class QueryVersionReply(xcb.Reply):
    def __init__(self, parent, offset=0):
        xcb.Reply.__init__(self, parent, offset)
        (self.major_version, self.minor_version,) = unpack_from('xx2x4xII16x', parent, offset)

class SaveSetMode:
    Insert = 0
    Delete = 1

class SaveSetTarget:
    Nearest = 0
    Root = 1

class SaveSetMapping:
    Map = 0
    Unmap = 1

class SelectionEvent:
    SetSelectionOwner = 0
    SelectionWindowDestroy = 1
    SelectionClientClose = 2

class SelectionEventMask:
    SetSelectionOwner = 1
    SelectionWindowDestroy = 2
    SelectionClientClose = 4

class SelectionNotifyEvent(xcb.Event):
    def __init__(self, parent, offset=0):
        xcb.Event.__init__(self, parent, offset)
        (self.subtype, self.window, self.owner, self.selection, self.timestamp, self.selection_timestamp,) = unpack_from('xB2xIIIII8x', parent, offset)

class CursorNotify:
    DisplayCursor = 0

class CursorNotifyMask:
    DisplayCursor = 1

class CursorNotifyEvent(xcb.Event):
    def __init__(self, parent, offset=0):
        xcb.Event.__init__(self, parent, offset)
        (self.subtype, self.window, self.cursor_serial, self.timestamp, self.name,) = unpack_from('xB2xIIII12x', parent, offset)

class GetCursorImageCookie(xcb.Cookie):
    pass

class GetCursorImageReply(xcb.Reply):
    def __init__(self, parent, offset=0):
        xcb.Reply.__init__(self, parent, offset)
        (self.x, self.y, self.width, self.height, self.xhot, self.yhot, self.cursor_serial,) = unpack_from('xx2x4xhhHHHHI8x', parent, offset)
        offset += 32
        self.cursor_image = xcb.List(parent, offset, (self.width * self.height), 'I', 4)

class RegionError(xcb.Error):
    def __init__(self, parent, offset=0):
        xcb.Error.__init__(self, parent, offset)

class BadRegion(xcb.ProtocolException):
    pass

class Region:
    _None = 0

class FetchRegionCookie(xcb.Cookie):
    pass

class FetchRegionReply(xcb.Reply):
    def __init__(self, parent, offset=0):
        xcb.Reply.__init__(self, parent, offset)
        offset += 8
        self.extents = RECTANGLE(parent, offset, 8)
        offset += 8
        offset += 16
        offset += xcb.type_pad(8, offset)
        self.rectangles = xcb.List(parent, offset, (self.length / 2), RECTANGLE, 8)

class GetCursorNameCookie(xcb.Cookie):
    pass

class GetCursorNameReply(xcb.Reply):
    def __init__(self, parent, offset=0):
        xcb.Reply.__init__(self, parent, offset)
        (self.atom, self.nbytes,) = unpack_from('xx2x4xIH18x', parent, offset)
        offset += 32
        self.name = xcb.List(parent, offset, self.nbytes, 'b', 1)

class GetCursorImageAndNameCookie(xcb.Cookie):
    pass

class GetCursorImageAndNameReply(xcb.Reply):
    def __init__(self, parent, offset=0):
        xcb.Reply.__init__(self, parent, offset)
        (self.x, self.y, self.width, self.height, self.xhot, self.yhot, self.cursor_serial, self.cursor_atom, self.nbytes,) = unpack_from('xx2x4xhhHHHHIIH2x', parent, offset)
        offset += 32
        self.name = xcb.List(parent, offset, self.nbytes, 'b', 1)
        offset += len(self.name.buf())
        offset += xcb.type_pad(4, offset)
        self.cursor_image = xcb.List(parent, offset, (self.width * self.height), 'I', 4)

class xfixesExtension(xcb.Extension):

    def QueryVersion(self, client_major_version, client_minor_version):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', client_major_version, client_minor_version))
        return self.send_request(xcb.Request(buf.getvalue(), 0, False, True),
                                 QueryVersionCookie(),
                                 QueryVersionReply)

    def QueryVersionUnchecked(self, client_major_version, client_minor_version):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', client_major_version, client_minor_version))
        return self.send_request(xcb.Request(buf.getvalue(), 0, False, False),
                                 QueryVersionCookie(),
                                 QueryVersionReply)

    def ChangeSaveSetChecked(self, mode, target, map, window):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xBBBxI', mode, target, map, window))
        return self.send_request(xcb.Request(buf.getvalue(), 1, True, True),
                                 xcb.VoidCookie())

    def ChangeSaveSet(self, mode, target, map, window):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xBBBxI', mode, target, map, window))
        return self.send_request(xcb.Request(buf.getvalue(), 1, True, False),
                                 xcb.VoidCookie())

    def SelectSelectionInputChecked(self, window, selection, event_mask):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIII', window, selection, event_mask))
        return self.send_request(xcb.Request(buf.getvalue(), 2, True, True),
                                 xcb.VoidCookie())

    def SelectSelectionInput(self, window, selection, event_mask):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIII', window, selection, event_mask))
        return self.send_request(xcb.Request(buf.getvalue(), 2, True, False),
                                 xcb.VoidCookie())

    def SelectCursorInputChecked(self, window, event_mask):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', window, event_mask))
        return self.send_request(xcb.Request(buf.getvalue(), 3, True, True),
                                 xcb.VoidCookie())

    def SelectCursorInput(self, window, event_mask):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', window, event_mask))
        return self.send_request(xcb.Request(buf.getvalue(), 3, True, False),
                                 xcb.VoidCookie())

    def GetCursorImage(self, ):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2x', ))
        return self.send_request(xcb.Request(buf.getvalue(), 4, False, True),
                                 GetCursorImageCookie(),
                                 GetCursorImageReply)

    def GetCursorImageUnchecked(self, ):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2x', ))
        return self.send_request(xcb.Request(buf.getvalue(), 4, False, False),
                                 GetCursorImageCookie(),
                                 GetCursorImageReply)

    def CreateRegionChecked(self, region, rectangles_len, rectangles):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', region))
        for elt in xcb.Iterator(rectangles, 4, 'rectangles', True):
            buf.write(pack('=hhHH', *elt))
        return self.send_request(xcb.Request(buf.getvalue(), 5, True, True),
                                 xcb.VoidCookie())

    def CreateRegion(self, region, rectangles_len, rectangles):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', region))
        for elt in xcb.Iterator(rectangles, 4, 'rectangles', True):
            buf.write(pack('=hhHH', *elt))
        return self.send_request(xcb.Request(buf.getvalue(), 5, True, False),
                                 xcb.VoidCookie())

    def CreateRegionFromBitmapChecked(self, region, bitmap):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', region, bitmap))
        return self.send_request(xcb.Request(buf.getvalue(), 6, True, True),
                                 xcb.VoidCookie())

    def CreateRegionFromBitmap(self, region, bitmap):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', region, bitmap))
        return self.send_request(xcb.Request(buf.getvalue(), 6, True, False),
                                 xcb.VoidCookie())

    def CreateRegionFromWindowChecked(self, region, window, kind):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIIB3x', region, window, kind))
        return self.send_request(xcb.Request(buf.getvalue(), 7, True, True),
                                 xcb.VoidCookie())

    def CreateRegionFromWindow(self, region, window, kind):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIIB3x', region, window, kind))
        return self.send_request(xcb.Request(buf.getvalue(), 7, True, False),
                                 xcb.VoidCookie())

    def CreateRegionFromGCChecked(self, region, gc):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', region, gc))
        return self.send_request(xcb.Request(buf.getvalue(), 8, True, True),
                                 xcb.VoidCookie())

    def CreateRegionFromGC(self, region, gc):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', region, gc))
        return self.send_request(xcb.Request(buf.getvalue(), 8, True, False),
                                 xcb.VoidCookie())

    def CreateRegionFromPictureChecked(self, region, picture):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', region, picture))
        return self.send_request(xcb.Request(buf.getvalue(), 9, True, True),
                                 xcb.VoidCookie())

    def CreateRegionFromPicture(self, region, picture):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', region, picture))
        return self.send_request(xcb.Request(buf.getvalue(), 9, True, False),
                                 xcb.VoidCookie())

    def DestroyRegionChecked(self, region):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', region))
        return self.send_request(xcb.Request(buf.getvalue(), 10, True, True),
                                 xcb.VoidCookie())

    def DestroyRegion(self, region):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', region))
        return self.send_request(xcb.Request(buf.getvalue(), 10, True, False),
                                 xcb.VoidCookie())

    def SetRegionChecked(self, region, rectangles_len, rectangles):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', region))
        for elt in xcb.Iterator(rectangles, 4, 'rectangles', True):
            buf.write(pack('=hhHH', *elt))
        return self.send_request(xcb.Request(buf.getvalue(), 11, True, True),
                                 xcb.VoidCookie())

    def SetRegion(self, region, rectangles_len, rectangles):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', region))
        for elt in xcb.Iterator(rectangles, 4, 'rectangles', True):
            buf.write(pack('=hhHH', *elt))
        return self.send_request(xcb.Request(buf.getvalue(), 11, True, False),
                                 xcb.VoidCookie())

    def CopyRegionChecked(self, source, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', source, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 12, True, True),
                                 xcb.VoidCookie())

    def CopyRegion(self, source, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', source, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 12, True, False),
                                 xcb.VoidCookie())

    def UnionRegionChecked(self, source1, source2, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIII', source1, source2, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 13, True, True),
                                 xcb.VoidCookie())

    def UnionRegion(self, source1, source2, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIII', source1, source2, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 13, True, False),
                                 xcb.VoidCookie())

    def IntersectRegionChecked(self, source1, source2, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIII', source1, source2, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 14, True, True),
                                 xcb.VoidCookie())

    def IntersectRegion(self, source1, source2, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIII', source1, source2, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 14, True, False),
                                 xcb.VoidCookie())

    def SubtractRegionChecked(self, source1, source2, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIII', source1, source2, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 15, True, True),
                                 xcb.VoidCookie())

    def SubtractRegion(self, source1, source2, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIII', source1, source2, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 15, True, False),
                                 xcb.VoidCookie())

    def InvertRegionChecked(self, source, bounds, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', source))
        for elt in xcb.Iterator(bounds, 4, 'bounds', False):
            buf.write(pack('=hhHH', *elt))
        buf.write(pack('=I', destination))
        return self.send_request(xcb.Request(buf.getvalue(), 16, True, True),
                                 xcb.VoidCookie())

    def InvertRegion(self, source, bounds, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', source))
        for elt in xcb.Iterator(bounds, 4, 'bounds', False):
            buf.write(pack('=hhHH', *elt))
        buf.write(pack('=I', destination))
        return self.send_request(xcb.Request(buf.getvalue(), 16, True, False),
                                 xcb.VoidCookie())

    def TranslateRegionChecked(self, region, dx, dy):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIhh', region, dx, dy))
        return self.send_request(xcb.Request(buf.getvalue(), 17, True, True),
                                 xcb.VoidCookie())

    def TranslateRegion(self, region, dx, dy):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIhh', region, dx, dy))
        return self.send_request(xcb.Request(buf.getvalue(), 17, True, False),
                                 xcb.VoidCookie())

    def RegionExtentsChecked(self, source, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', source, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 18, True, True),
                                 xcb.VoidCookie())

    def RegionExtents(self, source, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', source, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 18, True, False),
                                 xcb.VoidCookie())

    def FetchRegion(self, region):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', region))
        return self.send_request(xcb.Request(buf.getvalue(), 19, False, True),
                                 FetchRegionCookie(),
                                 FetchRegionReply)

    def FetchRegionUnchecked(self, region):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', region))
        return self.send_request(xcb.Request(buf.getvalue(), 19, False, False),
                                 FetchRegionCookie(),
                                 FetchRegionReply)

    def SetGCClipRegionChecked(self, gc, region, x_origin, y_origin):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIIhh', gc, region, x_origin, y_origin))
        return self.send_request(xcb.Request(buf.getvalue(), 20, True, True),
                                 xcb.VoidCookie())

    def SetGCClipRegion(self, gc, region, x_origin, y_origin):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIIhh', gc, region, x_origin, y_origin))
        return self.send_request(xcb.Request(buf.getvalue(), 20, True, False),
                                 xcb.VoidCookie())

    def SetWindowShapeRegionChecked(self, dest, dest_kind, x_offset, y_offset, region):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIB3xhhI', dest, dest_kind, x_offset, y_offset, region))
        return self.send_request(xcb.Request(buf.getvalue(), 21, True, True),
                                 xcb.VoidCookie())

    def SetWindowShapeRegion(self, dest, dest_kind, x_offset, y_offset, region):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIB3xhhI', dest, dest_kind, x_offset, y_offset, region))
        return self.send_request(xcb.Request(buf.getvalue(), 21, True, False),
                                 xcb.VoidCookie())

    def SetPictureClipRegionChecked(self, picture, region, x_origin, y_origin):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIIhh', picture, region, x_origin, y_origin))
        return self.send_request(xcb.Request(buf.getvalue(), 22, True, True),
                                 xcb.VoidCookie())

    def SetPictureClipRegion(self, picture, region, x_origin, y_origin):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIIhh', picture, region, x_origin, y_origin))
        return self.send_request(xcb.Request(buf.getvalue(), 22, True, False),
                                 xcb.VoidCookie())

    def SetCursorNameChecked(self, cursor, nbytes, name):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIH2x', cursor, nbytes))
        buf.write(str(buffer(array('b', name))))
        return self.send_request(xcb.Request(buf.getvalue(), 23, True, True),
                                 xcb.VoidCookie())

    def SetCursorName(self, cursor, nbytes, name):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIH2x', cursor, nbytes))
        buf.write(str(buffer(array('b', name))))
        return self.send_request(xcb.Request(buf.getvalue(), 23, True, False),
                                 xcb.VoidCookie())

    def GetCursorName(self, cursor):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', cursor))
        return self.send_request(xcb.Request(buf.getvalue(), 24, False, True),
                                 GetCursorNameCookie(),
                                 GetCursorNameReply)

    def GetCursorNameUnchecked(self, cursor):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', cursor))
        return self.send_request(xcb.Request(buf.getvalue(), 24, False, False),
                                 GetCursorNameCookie(),
                                 GetCursorNameReply)

    def GetCursorImageAndName(self, ):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2x', ))
        return self.send_request(xcb.Request(buf.getvalue(), 25, False, True),
                                 GetCursorImageAndNameCookie(),
                                 GetCursorImageAndNameReply)

    def GetCursorImageAndNameUnchecked(self, ):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2x', ))
        return self.send_request(xcb.Request(buf.getvalue(), 25, False, False),
                                 GetCursorImageAndNameCookie(),
                                 GetCursorImageAndNameReply)

    def ChangeCursorChecked(self, source, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', source, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 26, True, True),
                                 xcb.VoidCookie())

    def ChangeCursor(self, source, destination):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xII', source, destination))
        return self.send_request(xcb.Request(buf.getvalue(), 26, True, False),
                                 xcb.VoidCookie())

    def ChangeCursorByNameChecked(self, src, nbytes, name):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIH2x', src, nbytes))
        buf.write(str(buffer(array('b', name))))
        return self.send_request(xcb.Request(buf.getvalue(), 27, True, True),
                                 xcb.VoidCookie())

    def ChangeCursorByName(self, src, nbytes, name):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIH2x', src, nbytes))
        buf.write(str(buffer(array('b', name))))
        return self.send_request(xcb.Request(buf.getvalue(), 27, True, False),
                                 xcb.VoidCookie())

    def ExpandRegionChecked(self, source, destination, left, right, top, bottom):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIIHHHH', source, destination, left, right, top, bottom))
        return self.send_request(xcb.Request(buf.getvalue(), 28, True, True),
                                 xcb.VoidCookie())

    def ExpandRegion(self, source, destination, left, right, top, bottom):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xIIHHHH', source, destination, left, right, top, bottom))
        return self.send_request(xcb.Request(buf.getvalue(), 28, True, False),
                                 xcb.VoidCookie())

    def HideCursorChecked(self, window):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', window))
        return self.send_request(xcb.Request(buf.getvalue(), 29, True, True),
                                 xcb.VoidCookie())

    def HideCursor(self, window):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', window))
        return self.send_request(xcb.Request(buf.getvalue(), 29, True, False),
                                 xcb.VoidCookie())

    def ShowCursorChecked(self, window):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', window))
        return self.send_request(xcb.Request(buf.getvalue(), 30, True, True),
                                 xcb.VoidCookie())

    def ShowCursor(self, window):
        buf = cStringIO.StringIO()
        buf.write(pack('=xx2xI', window))
        return self.send_request(xcb.Request(buf.getvalue(), 30, True, False),
                                 xcb.VoidCookie())

_events = {
    0 : SelectionNotifyEvent,
    1 : CursorNotifyEvent,
}

_errors = {
    0 : (RegionError, BadRegion),
}

xcb._add_ext(key, xfixesExtension, _events, _errors)