blob: 1a3c5313896338f5f1aa181690dbe1f4f14f2e49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef POPUPS_POPUP_H
#define POPUPS_POPUP_H
#include <pland/syscall.h>
struct popup {
_window_handle_t handle;
uint8_t *pixbuf;
bool has_quit;
struct key_packet quit_as;
//terminated by one with .key_id == 0
struct key_packet *quit_binds;
bool free_quit_binds;
};
void handle_actions(struct popup *p);
//deletes popup before returning
void make_modal(struct popup *p);
void delete_popup(struct popup *p);
#endif
|