mirror of
https://github.com/vale981/bspwm
synced 2025-03-06 02:01:42 -05:00

The above message was only needed for ending the `move` pointer action on a floating window. It rendered the `move` pointer action finicky because the floating rectangle of the floating windows was not updated in real time.
22 lines
636 B
C
22 lines
636 B
C
#ifndef _EVENTS_H
|
|
#define _EVENTS_H
|
|
|
|
#include <xcb/xcb.h>
|
|
#include <xcb/xcb_event.h>
|
|
|
|
uint8_t randr_base;
|
|
|
|
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 enter_notify(xcb_generic_event_t *);
|
|
void motion_notify(void);
|
|
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);
|
|
|
|
#endif
|