diff options
| author | Paul Duncan <pabs@pablotron.org> | 2019-01-15 00:10:46 -0500 | 
|---|---|---|
| committer | Paul Duncan <pabs@pablotron.org> | 2019-01-15 00:10:46 -0500 | 
| commit | dec30a82819f93903004a3e9d46bf22f352942b4 (patch) | |
| tree | 46b06f9f7de3d0b3a5fa446dc13cf7727d0e87c3 /src/sdl/text-style.h | |
| parent | 7fdd6f36c8181115c60b781dc97b71107fb7da65 (diff) | |
| download | sok-dec30a82819f93903004a3e9d46bf22f352942b4.tar.xz sok-dec30a82819f93903004a3e9d46bf22f352942b4.zip | |
add theme.[hc] and refactor draw.c
Diffstat (limited to 'src/sdl/text-style.h')
| -rw-r--r-- | src/sdl/text-style.h | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/src/sdl/text-style.h b/src/sdl/text-style.h new file mode 100644 index 0000000..71d9a91 --- /dev/null +++ b/src/sdl/text-style.h @@ -0,0 +1,26 @@ +#ifndef TEXT_STYLE_H +#define TEXT_STYLE_H + +#include "../libsok/sok.h" +#include <SDL.h> + +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; + +#endif /* TEXT_STYLE_H */ | 
