diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-12-09 16:29:36 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-12-09 16:29:36 +0100 |
commit | f38661593795e51e45e2dc2ead8a7bf897d226f6 (patch) | |
tree | b0fa0fbf02ec8fc0c624f1de4197350571677100 /include/Theme.hpp | |
parent | f3565fdd77fb480575feec5de252466b093daf86 (diff) |
Start on global settings, add tint color setting
Diffstat (limited to 'include/Theme.hpp')
-rw-r--r-- | include/Theme.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/Theme.hpp b/include/Theme.hpp index 23bcbb7..185bcdc 100644 --- a/include/Theme.hpp +++ b/include/Theme.hpp @@ -8,6 +8,7 @@ #include <string> namespace gsr { + struct Config; struct GsrInfo; struct Theme { @@ -26,6 +27,7 @@ namespace gsr { mgl::Texture combobox_arrow_texture; mgl::Texture settings_texture; + mgl::Texture settings_small_texture; mgl::Texture folder_texture; mgl::Texture up_arrow_texture; mgl::Texture replay_button_texture; @@ -56,7 +58,7 @@ namespace gsr { mgl::Color text_color = mgl::Color(255, 255, 255); }; - bool init_color_theme(const GsrInfo &gsr_info); + bool init_color_theme(const Config &config, const GsrInfo &gsr_info); void deinit_color_theme(); ColorTheme& get_color_theme(); }
\ No newline at end of file |