1xcb_shape_query_extents(3)       XCB Requests       xcb_shape_query_extents(3)
2
3
4

NAME

6       xcb_shape_query_extents -
7

SYNOPSIS

9       #include <xcb/shape.h>
10
11   Request function
12       xcb_shape_query_extents_cookie_t
13              xcb_shape_query_extents(xcb_connection_t *conn,
14              xcb_window_t destination_window);
15
16   Reply datastructure
17       typedef struct xcb_shape_query_extents_reply_t {
18           uint8_t  response_type;
19           uint8_t  pad0;
20           uint16_t sequence;
21           uint32_t length;
22           uint8_t  bounding_shaped;
23           uint8_t  clip_shaped;
24           uint8_t  pad1[2];
25           int16_t  bounding_shape_extents_x;
26           int16_t  bounding_shape_extents_y;
27           uint16_t bounding_shape_extents_width;
28           uint16_t bounding_shape_extents_height;
29           int16_t  clip_shape_extents_x;
30           int16_t  clip_shape_extents_y;
31           uint16_t clip_shape_extents_width;
32           uint16_t clip_shape_extents_height;
33       } xcb_shape_query_extents_reply_t;
34
35   Reply function
36       xcb_shape_query_extents_reply_t
37              *xcb_shape_query_extents_reply(xcb_connection_t *conn,
38              xcb_shape_query_extents_cookie_t cookie,
39              xcb_generic_error_t **e);
40

REQUEST ARGUMENTS

42       conn      The XCB connection to X11.
43
44       destination_window
45                 TODO: NOT YET DOCUMENTED.
46

REPLY FIELDS

48       response_type
49                 The type of this reply, in this case XCB_SHAPE_QUERY_EXTENTS.
50                 This field is also present in the xcb_generic_reply_t and can
51                 be used to tell replies apart from each other.
52
53       sequence  The sequence number of the last request processed by the X11
54                 server.
55
56       length    The length of the reply, in words (a word is 4 bytes).
57
58       bounding_shaped
59                 TODO: NOT YET DOCUMENTED.
60
61       clip_shaped
62                 TODO: NOT YET DOCUMENTED.
63
64       bounding_shape_extents_x
65                 TODO: NOT YET DOCUMENTED.
66
67       bounding_shape_extents_y
68                 TODO: NOT YET DOCUMENTED.
69
70       bounding_shape_extents_width
71                 TODO: NOT YET DOCUMENTED.
72
73       bounding_shape_extents_height
74                 TODO: NOT YET DOCUMENTED.
75
76       clip_shape_extents_x
77                 TODO: NOT YET DOCUMENTED.
78
79       clip_shape_extents_y
80                 TODO: NOT YET DOCUMENTED.
81
82       clip_shape_extents_width
83                 TODO: NOT YET DOCUMENTED.
84
85       clip_shape_extents_height
86                 TODO: NOT YET DOCUMENTED.
87

DESCRIPTION

RETURN VALUE

90       Returns an xcb_shape_query_extents_cookie_t. Errors have to be handled
91       when calling the reply function xcb_shape_query_extents_reply.
92
93       If you want to handle errors in the event loop instead, use
94       xcb_shape_query_extents_unchecked. See xcb-requests(3) for details.
95

ERRORS

97       This request does never generate any errors.
98

SEE ALSO

AUTHOR

101       Generated from shape.xml. Contact xcb@lists.freedesktop.org for correcā€
102       tions and improvements.
103
104
105
106X Version 11                      libxcb 1.13       xcb_shape_query_extents(3)
Impressum