aboutsummaryrefslogtreecommitdiff
path: root/src/sdl/theme.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sdl/theme.h')
-rw-r--r--src/sdl/theme.h37
1 files changed, 37 insertions, 0 deletions
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 */