summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/eve/eve_text.h
blob: 141816c8d54864b89f024854e914ac0dd4738a83 (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
28
#include <stdint.h>

typedef struct EVEText {
    EVERect g;
    uint16_t w;
    uint16_t h;
    uint32_t mem_addr;
    uint16_t line_size;
    uint16_t line0;
    int line_top;
    int line_top0;
    uint16_t ch_idx;
    uint16_t transform_a;
    uint16_t transform_e;
    uint8_t tag;
    uint8_t ch_h;
    uint8_t ch_w;
    uint8_t dl_size;
    char dirty;
} EVEText;

void eve_text_init(EVEText *box, EVERect *g, uint16_t w, uint16_t h, uint8_t tag, uint16_t line_size, uint32_t mem_addr, uint32_t *mem_next);
int eve_text_touch(EVEText *box, uint8_t tag0, int touch_idx);
uint8_t eve_text_draw(EVEText *box);
int eve_text_putc(EVEText *box, int c);
void eve_text_update(EVEText *box);
void eve_text_newline(EVEText *box);
void eve_text_backspace(EVEText *box);