bspwm/events.h

21 lines
617 B
C
Raw Normal View History

2012-08-01 12:56:57 +02:00
#ifndef _EVENTS_H
#define _EVENTS_H
2012-08-20 22:38:29 +02:00
#include <xcb/xcb.h>
#include <xcb/xcb_event.h>
2012-08-25 15:24:35 +02:00
void handle_event(xcb_generic_event_t *);
void map_request(xcb_generic_event_t *);
void destroy_notify(xcb_generic_event_t *);
void unmap_notify(xcb_generic_event_t *);
void configure_request(xcb_generic_event_t *);
void client_message(xcb_generic_event_t *);
void property_notify(xcb_generic_event_t *);
void motion_notify(xcb_generic_event_t *);
2012-10-18 11:09:17 +02:00
void handle_state(monitor_t *, desktop_t *, node_t *, xcb_atom_t, unsigned int);
void grab_pointer(pointer_action_t);
void track_pointer(int, int);
void ungrab_pointer(void);
2013-01-09 16:47:20 +01:00
2012-08-01 12:56:57 +02:00
#endif