summaryrefslogtreecommitdiff
path: root/src/libs/txt/txt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/txt/txt.h')
-rw-r--r--src/libs/txt/txt.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/libs/txt/txt.h b/src/libs/txt/txt.h
new file mode 100644
index 0000000..8c68e30
--- /dev/null
+++ b/src/libs/txt/txt.h
@@ -0,0 +1,33 @@
+#ifndef _TXT_H
+#define _TXT_H
+
+#include <stdint.h>
+
+typedef struct fb_fragment_t 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, fb_fragment_t *fragment, uint32_t color, int x, int y, txt_align_t alignment);
+
+#endif
© All Rights Reserved