Esempio n. 1
0
void unmap_notify(xcb_generic_event_t *evt)
{
	xcb_unmap_notify_event_t *e = (xcb_unmap_notify_event_t *) evt;

	PRINTF("unmap notify %X\n", e->window);

	unmanage_window(e->window);
}
Esempio n. 2
0
void destroy_notify(xcb_generic_event_t *evt)
{
	xcb_destroy_notify_event_t *e = (xcb_destroy_notify_event_t *) evt;

	PRINTF("destroy notify %X\n", e->window);

	unmanage_window(e->window);
}
Esempio n. 3
0
void unmap_notify(xcb_generic_event_t *evt)
{
	xcb_unmap_notify_event_t *e = (xcb_unmap_notify_event_t *) evt;

	unmanage_window(e->window);
}
Esempio n. 4
0
void destroy_notify(xcb_generic_event_t *evt)
{
	xcb_destroy_notify_event_t *e = (xcb_destroy_notify_event_t *) evt;

	unmanage_window(e->window);
}