spmenu/libs/x11/event.c
2023-06-23 03:49:23 +02:00

68 lines
1.9 KiB
C

/* See LICENSE file for copyright and license details. */
void eventloop_x11(void) {
XEvent ev;
while (!XNextEvent(dpy, &ev)) {
if (XFilterEvent(&ev, None))
continue;
switch(ev.type) {
case DestroyNotify:
if (ev.xdestroywindow.window != win)
break;
cleanup();
exit(1);
case ButtonPress:
buttonpress_x11(&ev);
break;
case MotionNotify: // currently does nothing
break;
case Expose:
if (ev.xexpose.count == 0)
draw_map(draw, win, 0, 0, sp.mw, sp.mh);
break;
case FocusIn:
// regrab focus from parent window
if (ev.xfocus.window != win)
grabfocus();
break;
case KeyPress: // read key array and call functions
if (incremental) {
puts(tx.text);
fflush(stdout);
}
keypress_x11(&ev);
break;
case SelectionNotify: // paste selection
if (ev.xselection.property == utf8)
pastesel();
break;
case VisibilityNotify:
if (ev.xvisibility.state != VisibilityUnobscured)
XRaiseWindow(dpy, win);
break;
case KeyRelease:
getcapsstate();
drawmenu();
break;
}
if (listfile) {
readfile();
if (listchanged) {
match();
for (int i = 0; i < sp.itemnumber; i++) {
if (sel && sel->right && (sel = sel->right) == next) {
curr = next;
}
}
drawmenu();
}
}
}
}