summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/eve/widget/freew.h
blob: 49f896f00ce8370443853ae2d90f26b1076a3fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <stdint.h>

struct EVEFreeWidget;

typedef int (*eve_freew_touch_t) (struct EVEFreeWidget *, EVEPage *, EVETouch *, uint16_t, uint8_t, int);
typedef uint8_t (*eve_freew_draw_t) (struct EVEFreeWidget *, EVEPage *, uint8_t);

typedef struct EVEFreeWidget {
    EVEWidget w;
    eve_freew_touch_t _touch;
    eve_freew_draw_t _draw;
    uint8_t tag0;
    uint8_t tagN;
} EVEFreeWidget;

typedef struct EVEFreeSpec {
    eve_freew_touch_t touch;
    eve_freew_draw_t draw;
    eve_kbd_input_handler_t putc;
} EVEFreeSpec;

int eve_freew_create(EVEFreeWidget *widget, EVERect *g, EVEFreeSpec *spec);
void eve_freew_init(EVEFreeWidget *widget, EVERect *g, eve_freew_touch_t touch, eve_freew_draw_t draw, eve_kbd_input_handler_t putc);
void eve_freew_update(EVEFreeWidget *widget, eve_freew_touch_t touch, eve_freew_draw_t draw, eve_kbd_input_handler_t putc);

int eve_freew_touch(EVEWidget *_widget, EVEPage *page, uint8_t tag0, int touch_idx);
uint8_t eve_freew_draw(EVEWidget *_widget, EVEPage *page, uint8_t tag0);