1xcb_enter_notify_event_t(3)       XCB Events       xcb_enter_notify_event_t(3)
2
3
4

NAME

6       xcb_enter_notify_event_t - the pointer is in a different window
7

SYNOPSIS

9       #include <xcb/xproto.h>
10
11   Event datastructure
12       typedef struct xcb_enter_notify_event_t {
13           uint8_t         response_type;
14           uint8_t         detail;
15           uint16_t        sequence;
16           xcb_timestamp_t time;
17           xcb_window_t    root;
18           xcb_window_t    event;
19           xcb_window_t    child;
20           int16_t         root_x;
21           int16_t         root_y;
22           int16_t         event_x;
23           int16_t         event_y;
24           uint16_t        state;
25           uint8_t         mode;
26           uint8_t         same_screen_focus;
27       } xcb_enter_notify_event_t;
28

EVENT FIELDS

30       response_type
31                 The type of this event, in this case XCB_LEAVE_NOTIFY. This
32                 field is also present in the xcb_generic_event_t and can be
33                 used to tell events apart from each other.
34
35       sequence  The sequence number of the last request processed by the X11
36                 server.
37
38       detail    NOT YET DOCUMENTED.
39
40       time      NOT YET DOCUMENTED.
41
42       root      The root window for the final cursor position.
43
44       event     The window on which the event was generated.
45
46       child     If the event window has subwindows and the final pointer po‐
47                 sition is in one of them, then child is set to that subwin‐
48                 dow, XCB_WINDOW_NONE otherwise.
49
50       root_x    The pointer X coordinate relative to root's origin at the
51                 time of the event.
52
53       root_y    The pointer Y coordinate relative to root's origin at the
54                 time of the event.
55
56       event_x   If event is on the same screen as root, this is the pointer X
57                 coordinate relative to the event window's origin.
58
59       event_y   If event is on the same screen as root, this is the pointer Y
60                 coordinate relative to the event window's origin.
61
62       state     NOT YET DOCUMENTED.
63
64       mode
65
66
67       same_screen_focus
68                 NOT YET DOCUMENTED.
69

DESCRIPTION

SEE ALSO

72       xcb_generic_event_t(3)
73

AUTHOR

75       Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
76       rections and improvements.
77
78
79
80X Version 11                      libxcb 1.13      xcb_enter_notify_event_t(3)
Impressum