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
29
30
31
32
33
|
#ifndef _TXT_H
#define _TXT_H
#include <stdint.h>
typedef struct til_fb_fragment_t til_fb_fragment_t;
typedef struct txt_t txt_t;
typedef enum txt_halign_t {
TXT_HALIGN_CENTER,
TXT_HALIGN_LEFT,
TXT_HALIGN_RIGHT,
TXT_HALIGN_CNT,
} txt_halign_t;
typedef enum txt_valign_t {
TXT_VALIGN_CENTER,
TXT_VALIGN_TOP,
TXT_VALIGN_BOTTOM,
TXT_VALIGN_CNT,
} txt_valign_t;
typedef struct txt_align_t {
txt_halign_t horiz;
txt_valign_t vert;
} txt_align_t;
txt_t * txt_new(const char *str);
txt_t * txt_newf(const char *fmt, ...);
txt_t * txt_free(txt_t *txt);
void txt_render_fragment(txt_t *txt, til_fb_fragment_t *fragment, uint32_t color, int x, int y, txt_align_t alignment);
#endif
|