From 969c64da6a63e6c0efa1b79a317ef953cb3aaaa9 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Mon, 14 Jan 2019 10:13:39 -0500 Subject: add text_style_t, draw-text.c --- src/sdl/draw-text.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/sdl/draw-text.h (limited to 'src/sdl/draw-text.h') diff --git a/src/sdl/draw-text.h b/src/sdl/draw-text.h new file mode 100644 index 0000000..b58c1c1 --- /dev/null +++ b/src/sdl/draw-text.h @@ -0,0 +1,35 @@ +#ifndef DRAW_TEXT_H +#define DRAW_TEXT_H + +#include "../libsok/sok.h" // sok_pos_t +#include // SDL_Color +#include // TTF_Font + +typedef enum { + TEXT_ALIGN_TOP_LEFT, + TEXT_ALIGN_TOP_CENTER, + TEXT_ALIGN_TOP_RIGHT, + TEXT_ALIGN_CENTER_LEFT, + TEXT_ALIGN_CENTER_CENTER, + TEXT_ALIGN_CENTER_RIGHT, + TEXT_ALIGN_BOTTOM_LEFT, + TEXT_ALIGN_BOTTOM_RIGHT, + TEXT_ALIGN_BOTTOM_CENTER, + TEXT_ALIGN_LAST, +} text_align_t; + +typedef struct { + const text_align_t align; + const sok_pos_t pad; + const SDL_Color colors[2]; +} text_style_t; + +void +draw_text( + SDL_Renderer * const, + TTF_Font * const, + const text_style_t * const, + const char * const +); + +#endif /* DRAW_TEXT_H */ -- cgit v1.2.3