Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xcb_client_message_event_t(3) [centos man page]

xcb_client_message_event_t(3)					    XCB Events					     xcb_client_message_event_t(3)

NAME
xcb_client_message_event_t - NOT YET DOCUMENTED SYNOPSIS
#include <xcb/xproto.h> Event datastructure typedef struct xcb_client_message_event_t { uint8_t response_type; uint8_t format; uint16_t sequence; xcb_window_t window; xcb_atom_t type; xcb_client_message_data_t data; } xcb_client_message_event_t; EVENT FIELDS
response_type The type of this event, in this case XCB_CLIENT_MESSAGE. This field is also present in the xcb_generic_event_t and can be used to tell events apart from each other. sequence The sequence number of the last request processed by the X11 server. format Specifies how to interpret data. Can be either 8, 16 or 32. window NOT YET DOCUMENTED. type An atom which indicates how the data should be interpreted by the receiving client. data The data itself (20 bytes max). DESCRIPTION
This event represents a ClientMessage, sent by another X11 client. An example is a client sending the _NET_WM_STATE ClientMessage to the root window to indicate the fullscreen window state, effectively requesting that the window manager puts it into fullscreen mode. SEE ALSO
xcb_generic_event_t(3), xcb_send_event(3) AUTHOR
Generated from xproto.xml. Contact xcb@lists.freedesktop.org for corrections and improvements. XCB
2014-06-10 xcb_client_message_event_t(3)

Check Out this Related Man Page

xcb_property_notify_event_t(3)					    XCB Events					    xcb_property_notify_event_t(3)

NAME
xcb_property_notify_event_t - a window property changed SYNOPSIS
#include <xcb/xproto.h> Event datastructure typedef struct xcb_property_notify_event_t { uint8_t response_type; uint8_t pad0; uint16_t sequence; xcb_window_t window; xcb_atom_t atom; xcb_timestamp_t time; uint8_t state; uint8_t pad1[3]; } xcb_property_notify_event_t; EVENT FIELDS
response_type The type of this event, in this case XCB_PROPERTY_NOTIFY. This field is also present in the xcb_generic_event_t and can be used to tell events apart from each other. sequence The sequence number of the last request processed by the X11 server. window The window whose associated property was changed. atom The property's atom, to indicate which property was changed. time A timestamp of the server time when the property was changed. state DESCRIPTION
SEE ALSO
xcb_generic_event_t(3), xcb_change_property(3) AUTHOR
Generated from xproto.xml. Contact xcb@lists.freedesktop.org for corrections and improvements. XCB
2014-06-10 xcb_property_notify_event_t(3)
Man Page

4 More Discussions You Might Find Interesting

1. Solaris

Pop-up window using X11

Anyone know of a way to create a pop-up window using X11? I'm not to sure where to start. I just think it would be neat to do. So I was hoping someone out there had documentation on how to go about this, or if I was going to have to write/compile a program to do so. Thank you! Adelsin (8 Replies)
Discussion started by: adelsin
8 Replies

2. UNIX for Dummies Questions & Answers

X window/X11 basics

Hi all, Can anybody suggest a good resource to know about X/X-window/X11 etc in linux/unix. Introduction and useful commands. Its little confusing to me. thanks in advance! (0 Replies)
Discussion started by: lramsb4u
0 Replies

3. AIX

How to X-window to work on AIX 5.3?

Hey all. My h50 is up, but now i need some guidance. How to i get X11 (X-Windows0 working on the system, so i can use the H50 via my main pc? is that makes sense. The X11 system is installed, but i am lost as how to get it working Can anyone please help? (2 Replies)
Discussion started by: ADS2459
2 Replies

4. Programming

Low level X11 programming

How to use X11 without Xlib not XCB? How draw window directly on low level? I must use anyway window manager like Motif? I have ridden that X11 has server-client architecture, client send via TCP/IP to port 6000 request for primitives and get replies. Where is detailed description of it? In X11... (0 Replies)
Discussion started by: AndrzejB
0 Replies