comparison libmlk-ui/mlk/ui/gridmenu.h @ 450:b26dd49f69ff

core: event -> mlk_event (and friends)
author David Demelier <markand@malikania.fr>
date Sat, 18 Feb 2023 13:37:11 +0100
parents 773a082f0b91
children 5729efd23286
comparison
equal deleted inserted replaced
449:f2f0e73ea9da 450:b26dd49f69ff
25 25
26 #include "label.h" 26 #include "label.h"
27 27
28 struct theme; 28 struct theme;
29 29
30 union event; 30 union mlk_event;
31 31
32 struct gridmenu { 32 struct gridmenu {
33 int x; 33 int x;
34 int y; 34 int y;
35 unsigned int w; 35 unsigned int w;
55 55
56 void 56 void
57 gridmenu_resize(struct gridmenu *, int, int, unsigned int, unsigned int); 57 gridmenu_resize(struct gridmenu *, int, int, unsigned int, unsigned int);
58 58
59 int 59 int
60 gridmenu_handle(struct gridmenu *, const union event *); 60 gridmenu_handle(struct gridmenu *, const union mlk_event *);
61 61
62 void 62 void
63 gridmenu_draw(const struct gridmenu *); 63 gridmenu_draw(const struct gridmenu *);
64 64
65 CORE_END_DECLS 65 CORE_END_DECLS