This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/src/user/include/popups/popup.h

22 lines
No EOL
415 B
C

#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
const struct key_packet *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