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
// Generated automatically from shape.xml by rs_client.py version 0.8.2.
// Do not edit!


#![allow(improper_ctypes)]

use ffi::base::*;
use ffi::xproto::*;

use libc::{c_char, c_int, c_uint, c_void};
use std;


pub const XCB_SHAPE_MAJOR_VERSION: u32 = 1;
pub const XCB_SHAPE_MINOR_VERSION: u32 = 1;

pub type xcb_shape_op_t = u8;

#[repr(C)]
pub struct xcb_shape_op_iterator_t {
    pub data:  *mut xcb_shape_op_t,
    pub rem:   c_int,
    pub index: c_int,
}

pub type xcb_shape_kind_t = u8;

#[repr(C)]
pub struct xcb_shape_kind_iterator_t {
    pub data:  *mut xcb_shape_kind_t,
    pub rem:   c_int,
    pub index: c_int,
}

pub type xcb_shape_so_t = u32;
pub const XCB_SHAPE_SO_SET      : xcb_shape_so_t = 0x00;
pub const XCB_SHAPE_SO_UNION    : xcb_shape_so_t = 0x01;
pub const XCB_SHAPE_SO_INTERSECT: xcb_shape_so_t = 0x02;
pub const XCB_SHAPE_SO_SUBTRACT : xcb_shape_so_t = 0x03;
pub const XCB_SHAPE_SO_INVERT   : xcb_shape_so_t = 0x04;

pub type xcb_shape_sk_t = u32;
pub const XCB_SHAPE_SK_BOUNDING: xcb_shape_sk_t = 0x00;
pub const XCB_SHAPE_SK_CLIP    : xcb_shape_sk_t = 0x01;
pub const XCB_SHAPE_SK_INPUT   : xcb_shape_sk_t = 0x02;

pub const XCB_SHAPE_NOTIFY: u8 = 0;

#[repr(C)]
pub struct xcb_shape_notify_event_t {
    pub response_type:   u8,
    pub shape_kind:      xcb_shape_kind_t,
    pub sequence:        u16,
    pub affected_window: xcb_window_t,
    pub extents_x:       i16,
    pub extents_y:       i16,
    pub extents_width:   u16,
    pub extents_height:  u16,
    pub server_time:     xcb_timestamp_t,
    pub shaped:          u8,
    pub pad0:            [u8; 11],
}

impl Copy for xcb_shape_notify_event_t {}
impl Clone for xcb_shape_notify_event_t {
    fn clone(&self) -> xcb_shape_notify_event_t { *self }
}

pub const XCB_SHAPE_QUERY_VERSION: u8 = 0;

#[repr(C)]
pub struct xcb_shape_query_version_request_t {
    pub major_opcode: u8,
    pub minor_opcode: u8,
    pub length:       u16,
}

impl Copy for xcb_shape_query_version_request_t {}
impl Clone for xcb_shape_query_version_request_t {
    fn clone(&self) -> xcb_shape_query_version_request_t { *self }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct xcb_shape_query_version_cookie_t {
    sequence: c_uint
}

#[repr(C)]
pub struct xcb_shape_query_version_reply_t {
    pub response_type: u8,
    pub pad0:          u8,
    pub sequence:      u16,
    pub length:        u32,
    pub major_version: u16,
    pub minor_version: u16,
}

impl Copy for xcb_shape_query_version_reply_t {}
impl Clone for xcb_shape_query_version_reply_t {
    fn clone(&self) -> xcb_shape_query_version_reply_t { *self }
}

pub const XCB_SHAPE_RECTANGLES: u8 = 1;

#[repr(C)]
pub struct xcb_shape_rectangles_request_t {
    pub major_opcode:       u8,
    pub minor_opcode:       u8,
    pub length:             u16,
    pub operation:          xcb_shape_op_t,
    pub destination_kind:   xcb_shape_kind_t,
    pub ordering:           u8,
    pub pad0:               u8,
    pub destination_window: xcb_window_t,
    pub x_offset:           i16,
    pub y_offset:           i16,
}

pub const XCB_SHAPE_MASK: u8 = 2;

#[repr(C)]
pub struct xcb_shape_mask_request_t {
    pub major_opcode:       u8,
    pub minor_opcode:       u8,
    pub length:             u16,
    pub operation:          xcb_shape_op_t,
    pub destination_kind:   xcb_shape_kind_t,
    pub pad0:               [u8; 2],
    pub destination_window: xcb_window_t,
    pub x_offset:           i16,
    pub y_offset:           i16,
    pub source_bitmap:      xcb_pixmap_t,
}

impl Copy for xcb_shape_mask_request_t {}
impl Clone for xcb_shape_mask_request_t {
    fn clone(&self) -> xcb_shape_mask_request_t { *self }
}

pub const XCB_SHAPE_COMBINE: u8 = 3;

#[repr(C)]
pub struct xcb_shape_combine_request_t {
    pub major_opcode:       u8,
    pub minor_opcode:       u8,
    pub length:             u16,
    pub operation:          xcb_shape_op_t,
    pub destination_kind:   xcb_shape_kind_t,
    pub source_kind:        xcb_shape_kind_t,
    pub pad0:               u8,
    pub destination_window: xcb_window_t,
    pub x_offset:           i16,
    pub y_offset:           i16,
    pub source_window:      xcb_window_t,
}

impl Copy for xcb_shape_combine_request_t {}
impl Clone for xcb_shape_combine_request_t {
    fn clone(&self) -> xcb_shape_combine_request_t { *self }
}

pub const XCB_SHAPE_OFFSET: u8 = 4;

#[repr(C)]
pub struct xcb_shape_offset_request_t {
    pub major_opcode:       u8,
    pub minor_opcode:       u8,
    pub length:             u16,
    pub destination_kind:   xcb_shape_kind_t,
    pub pad0:               [u8; 3],
    pub destination_window: xcb_window_t,
    pub x_offset:           i16,
    pub y_offset:           i16,
}

impl Copy for xcb_shape_offset_request_t {}
impl Clone for xcb_shape_offset_request_t {
    fn clone(&self) -> xcb_shape_offset_request_t { *self }
}

pub const XCB_SHAPE_QUERY_EXTENTS: u8 = 5;

#[repr(C)]
pub struct xcb_shape_query_extents_request_t {
    pub major_opcode:       u8,
    pub minor_opcode:       u8,
    pub length:             u16,
    pub destination_window: xcb_window_t,
}

impl Copy for xcb_shape_query_extents_request_t {}
impl Clone for xcb_shape_query_extents_request_t {
    fn clone(&self) -> xcb_shape_query_extents_request_t { *self }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct xcb_shape_query_extents_cookie_t {
    sequence: c_uint
}

#[repr(C)]
pub struct xcb_shape_query_extents_reply_t {
    pub response_type:                 u8,
    pub pad0:                          u8,
    pub sequence:                      u16,
    pub length:                        u32,
    pub bounding_shaped:               u8,
    pub clip_shaped:                   u8,
    pub pad1:                          [u8; 2],
    pub bounding_shape_extents_x:      i16,
    pub bounding_shape_extents_y:      i16,
    pub bounding_shape_extents_width:  u16,
    pub bounding_shape_extents_height: u16,
    pub clip_shape_extents_x:          i16,
    pub clip_shape_extents_y:          i16,
    pub clip_shape_extents_width:      u16,
    pub clip_shape_extents_height:     u16,
}

impl Copy for xcb_shape_query_extents_reply_t {}
impl Clone for xcb_shape_query_extents_reply_t {
    fn clone(&self) -> xcb_shape_query_extents_reply_t { *self }
}

pub const XCB_SHAPE_SELECT_INPUT: u8 = 6;

#[repr(C)]
pub struct xcb_shape_select_input_request_t {
    pub major_opcode:       u8,
    pub minor_opcode:       u8,
    pub length:             u16,
    pub destination_window: xcb_window_t,
    pub enable:             u8,
    pub pad0:               [u8; 3],
}

impl Copy for xcb_shape_select_input_request_t {}
impl Clone for xcb_shape_select_input_request_t {
    fn clone(&self) -> xcb_shape_select_input_request_t { *self }
}

pub const XCB_SHAPE_INPUT_SELECTED: u8 = 7;

#[repr(C)]
pub struct xcb_shape_input_selected_request_t {
    pub major_opcode:       u8,
    pub minor_opcode:       u8,
    pub length:             u16,
    pub destination_window: xcb_window_t,
}

impl Copy for xcb_shape_input_selected_request_t {}
impl Clone for xcb_shape_input_selected_request_t {
    fn clone(&self) -> xcb_shape_input_selected_request_t { *self }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct xcb_shape_input_selected_cookie_t {
    sequence: c_uint
}

#[repr(C)]
pub struct xcb_shape_input_selected_reply_t {
    pub response_type: u8,
    pub enabled:       u8,
    pub sequence:      u16,
    pub length:        u32,
}

impl Copy for xcb_shape_input_selected_reply_t {}
impl Clone for xcb_shape_input_selected_reply_t {
    fn clone(&self) -> xcb_shape_input_selected_reply_t { *self }
}

pub const XCB_SHAPE_GET_RECTANGLES: u8 = 8;

#[repr(C)]
pub struct xcb_shape_get_rectangles_request_t {
    pub major_opcode: u8,
    pub minor_opcode: u8,
    pub length:       u16,
    pub window:       xcb_window_t,
    pub source_kind:  xcb_shape_kind_t,
    pub pad0:         [u8; 3],
}

impl Copy for xcb_shape_get_rectangles_request_t {}
impl Clone for xcb_shape_get_rectangles_request_t {
    fn clone(&self) -> xcb_shape_get_rectangles_request_t { *self }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct xcb_shape_get_rectangles_cookie_t {
    sequence: c_uint
}

#[repr(C)]
pub struct xcb_shape_get_rectangles_reply_t {
    pub response_type:  u8,
    pub ordering:       u8,
    pub sequence:       u16,
    pub length:         u32,
    pub rectangles_len: u32,
    pub pad0:           [u8; 20],
}


#[link(name="xcb-shape")]
extern {

    pub static mut xcb_shape_id: xcb_extension_t;

    pub fn xcb_shape_op_next (i: *mut xcb_shape_op_iterator_t);

    pub fn xcb_shape_op_end (i: *mut xcb_shape_op_iterator_t)
            -> xcb_generic_iterator_t;

    pub fn xcb_shape_kind_next (i: *mut xcb_shape_kind_iterator_t);

    pub fn xcb_shape_kind_end (i: *mut xcb_shape_kind_iterator_t)
            -> xcb_generic_iterator_t;

    /// the returned value must be freed by the caller using libc::free().
    pub fn xcb_shape_query_version_reply (c:      *mut xcb_connection_t,
                                          cookie: xcb_shape_query_version_cookie_t,
                                          error:  *mut *mut xcb_generic_error_t)
            -> *mut xcb_shape_query_version_reply_t;

    pub fn xcb_shape_query_version (c: *mut xcb_connection_t)
            -> xcb_shape_query_version_cookie_t;

    pub fn xcb_shape_query_version_unchecked (c: *mut xcb_connection_t)
            -> xcb_shape_query_version_cookie_t;

    pub fn xcb_shape_rectangles (c:                  *mut xcb_connection_t,
                                 operation:          xcb_shape_op_t,
                                 destination_kind:   xcb_shape_kind_t,
                                 ordering:           u8,
                                 destination_window: xcb_window_t,
                                 x_offset:           i16,
                                 y_offset:           i16,
                                 rectangles_len:     u32,
                                 rectangles:         *const xcb_rectangle_t)
            -> xcb_void_cookie_t;

    pub fn xcb_shape_rectangles_checked (c:                  *mut xcb_connection_t,
                                         operation:          xcb_shape_op_t,
                                         destination_kind:   xcb_shape_kind_t,
                                         ordering:           u8,
                                         destination_window: xcb_window_t,
                                         x_offset:           i16,
                                         y_offset:           i16,
                                         rectangles_len:     u32,
                                         rectangles:         *const xcb_rectangle_t)
            -> xcb_void_cookie_t;

    pub fn xcb_shape_mask (c:                  *mut xcb_connection_t,
                           operation:          xcb_shape_op_t,
                           destination_kind:   xcb_shape_kind_t,
                           destination_window: xcb_window_t,
                           x_offset:           i16,
                           y_offset:           i16,
                           source_bitmap:      xcb_pixmap_t)
            -> xcb_void_cookie_t;

    pub fn xcb_shape_mask_checked (c:                  *mut xcb_connection_t,
                                   operation:          xcb_shape_op_t,
                                   destination_kind:   xcb_shape_kind_t,
                                   destination_window: xcb_window_t,
                                   x_offset:           i16,
                                   y_offset:           i16,
                                   source_bitmap:      xcb_pixmap_t)
            -> xcb_void_cookie_t;

    pub fn xcb_shape_combine (c:                  *mut xcb_connection_t,
                              operation:          xcb_shape_op_t,
                              destination_kind:   xcb_shape_kind_t,
                              source_kind:        xcb_shape_kind_t,
                              destination_window: xcb_window_t,
                              x_offset:           i16,
                              y_offset:           i16,
                              source_window:      xcb_window_t)
            -> xcb_void_cookie_t;

    pub fn xcb_shape_combine_checked (c:                  *mut xcb_connection_t,
                                      operation:          xcb_shape_op_t,
                                      destination_kind:   xcb_shape_kind_t,
                                      source_kind:        xcb_shape_kind_t,
                                      destination_window: xcb_window_t,
                                      x_offset:           i16,
                                      y_offset:           i16,
                                      source_window:      xcb_window_t)
            -> xcb_void_cookie_t;

    pub fn xcb_shape_offset (c:                  *mut xcb_connection_t,
                             destination_kind:   xcb_shape_kind_t,
                             destination_window: xcb_window_t,
                             x_offset:           i16,
                             y_offset:           i16)
            -> xcb_void_cookie_t;

    pub fn xcb_shape_offset_checked (c:                  *mut xcb_connection_t,
                                     destination_kind:   xcb_shape_kind_t,
                                     destination_window: xcb_window_t,
                                     x_offset:           i16,
                                     y_offset:           i16)
            -> xcb_void_cookie_t;

    /// the returned value must be freed by the caller using libc::free().
    pub fn xcb_shape_query_extents_reply (c:      *mut xcb_connection_t,
                                          cookie: xcb_shape_query_extents_cookie_t,
                                          error:  *mut *mut xcb_generic_error_t)
            -> *mut xcb_shape_query_extents_reply_t;

    pub fn xcb_shape_query_extents (c:                  *mut xcb_connection_t,
                                    destination_window: xcb_window_t)
            -> xcb_shape_query_extents_cookie_t;

    pub fn xcb_shape_query_extents_unchecked (c:                  *mut xcb_connection_t,
                                              destination_window: xcb_window_t)
            -> xcb_shape_query_extents_cookie_t;

    pub fn xcb_shape_select_input (c:                  *mut xcb_connection_t,
                                   destination_window: xcb_window_t,
                                   enable:             u8)
            -> xcb_void_cookie_t;

    pub fn xcb_shape_select_input_checked (c:                  *mut xcb_connection_t,
                                           destination_window: xcb_window_t,
                                           enable:             u8)
            -> xcb_void_cookie_t;

    /// the returned value must be freed by the caller using libc::free().
    pub fn xcb_shape_input_selected_reply (c:      *mut xcb_connection_t,
                                           cookie: xcb_shape_input_selected_cookie_t,
                                           error:  *mut *mut xcb_generic_error_t)
            -> *mut xcb_shape_input_selected_reply_t;

    pub fn xcb_shape_input_selected (c:                  *mut xcb_connection_t,
                                     destination_window: xcb_window_t)
            -> xcb_shape_input_selected_cookie_t;

    pub fn xcb_shape_input_selected_unchecked (c:                  *mut xcb_connection_t,
                                               destination_window: xcb_window_t)
            -> xcb_shape_input_selected_cookie_t;

    pub fn xcb_shape_get_rectangles_rectangles (R: *const xcb_shape_get_rectangles_reply_t)
            -> *mut xcb_rectangle_t;

    pub fn xcb_shape_get_rectangles_rectangles_length (R: *const xcb_shape_get_rectangles_reply_t)
            -> c_int;

    pub fn xcb_shape_get_rectangles_rectangles_iterator (R: *const xcb_shape_get_rectangles_reply_t)
            -> xcb_rectangle_iterator_t;

    /// the returned value must be freed by the caller using libc::free().
    pub fn xcb_shape_get_rectangles_reply (c:      *mut xcb_connection_t,
                                           cookie: xcb_shape_get_rectangles_cookie_t,
                                           error:  *mut *mut xcb_generic_error_t)
            -> *mut xcb_shape_get_rectangles_reply_t;

    pub fn xcb_shape_get_rectangles (c:           *mut xcb_connection_t,
                                     window:      xcb_window_t,
                                     source_kind: xcb_shape_kind_t)
            -> xcb_shape_get_rectangles_cookie_t;

    pub fn xcb_shape_get_rectangles_unchecked (c:           *mut xcb_connection_t,
                                               window:      xcb_window_t,
                                               source_kind: xcb_shape_kind_t)
            -> xcb_shape_get_rectangles_cookie_t;

} // extern