mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
fdm: add hook priorities
There are now three hook priorities: low, normal, high. High priority hooks are executed *first*. Normal next, and last the low priority hooks. The renderer's terminal refresh hook now runs as a normal priority hook.
This commit is contained in:
parent
5ec447697c
commit
6534f64e6a
3 changed files with 70 additions and 18 deletions
11
fdm.h
11
fdm.h
|
|
@ -7,6 +7,12 @@ struct fdm;
|
|||
typedef bool (*fdm_handler_t)(struct fdm *fdm, int fd, int events, void *data);
|
||||
typedef void (*fdm_hook_t)(struct fdm *fdm, void *data);
|
||||
|
||||
enum fdm_hook_priority {
|
||||
FDM_HOOK_PRIORITY_LOW,
|
||||
FDM_HOOK_PRIORITY_NORMAL,
|
||||
FDM_HOOK_PRIORITY_HIGH
|
||||
};
|
||||
|
||||
struct fdm *fdm_init(void);
|
||||
void fdm_destroy(struct fdm *fdm);
|
||||
|
||||
|
|
@ -17,7 +23,8 @@ bool fdm_del_no_close(struct fdm *fdm, int fd);
|
|||
bool fdm_event_add(struct fdm *fdm, int fd, int events);
|
||||
bool fdm_event_del(struct fdm *fdm, int fd, int events);
|
||||
|
||||
bool fdm_hook_add(struct fdm *fdm, fdm_hook_t hook, void *data);
|
||||
bool fdm_hook_del(struct fdm *fdm, fdm_hook_t hook);
|
||||
bool fdm_hook_add(struct fdm *fdm, fdm_hook_t hook, void *data,
|
||||
enum fdm_hook_priority priority);
|
||||
bool fdm_hook_del(struct fdm *fdm, fdm_hook_t hook, enum fdm_hook_priority priority);
|
||||
|
||||
bool fdm_poll(struct fdm *fdm);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue