spmenu/libs/mouse.h
speedie 52f88f6a73 remove the item hovering, it's just not necessary and causes a lot of
slowness

if you find a way to speed this up significantly, please let me know
2023-04-21 17:59:10 +02:00

24 lines
358 B
C

typedef struct {
unsigned int click;
unsigned int mask;
unsigned int button;
void (*func)(const Arg *arg);
const Arg arg;
} Mouse;
// clicks
enum {
clickwindow,
clickprompt,
clickinput,
clicklarrow,
clickitem,
clickselitem,
clickrarrow,
clicknumber,
clickcaps,
clickmode,
};
static void buttonpress(XEvent *e);