#include #include #include #include void handle_actions(struct popup *p) { if (p->has_quit) return; struct window_action a; while (1) { _get_win_action(p->handle, &a); if (a.action_type == NOT_READY) return; if ((a.action_type == KEY_DOWN)) { //syslogf("got key 0x%2x, 0x%3x", a.as_key.key_id, a.as_key.modifiers); for (const struct key_packet *kp = p->quit_binds; kp->key_id; ++kp) { //syslogf("checking against 0x%2x, 0x%3x", kp->key_id, kp->modifiers); if ((a.as_key.key_id == kp->key_id) && (a.as_key.modifiers == kp->modifiers)) { p->has_quit = true; p->quit_as = a.as_key; return; } } } } } void delete_popup(struct popup *p) { _delete_window(p->handle); free_block(p->pixbuf); } void make_modal(struct popup *p) { handle_actions(p); while (!p->has_quit) { _wait_for_action(); _yield_task(); handle_actions(p); } delete_popup(p); }