From dec30a82819f93903004a3e9d46bf22f352942b4 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Tue, 15 Jan 2019 00:10:46 -0500 Subject: add theme.[hc] and refactor draw.c --- src/sdl/theme.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/sdl/theme.h (limited to 'src/sdl/theme.h') diff --git a/src/sdl/theme.h b/src/sdl/theme.h new file mode 100644 index 0000000..562df3f --- /dev/null +++ b/src/sdl/theme.h @@ -0,0 +1,37 @@ +#ifndef THEME_H +#define THEME_H + +#include "text-style.h" +#include "bg-style.h" + +typedef enum { + TEXT_STYLE_TITLE, + TEXT_STYLE_MOVES, + TEXT_STYLE_HELP, + TEXT_STYLE_LAST, +} text_style_id_t; + +typedef enum { + BG_STYLE_NORMAL, + BG_STYLE_WON, + BG_STYLE_LAST, +} bg_style_id_t; + +typedef struct { + text_style_t text_styles[TEXT_STYLE_LAST]; + bg_style_t bg_styles[BG_STYLE_LAST]; +} theme_t; + +const theme_t *theme_get_default(); + +const text_style_t *theme_get_text_style( + const theme_t * const, + const text_style_id_t +); + +const bg_style_t *theme_get_bg_style( + const theme_t * const, + const bg_style_id_t +); + +#endif /* THEME_H */ -- cgit v1.2.3