aboutsummaryrefslogtreecommitdiff
path: root/include/Config.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-09-04 02:31:10 +0200
committerdec05eba <dec05eba@protonmail.com>2021-09-04 02:31:10 +0200
commitfa815c3eee27cdae69b2e765b03de62a13f6379d (patch)
tree4244ae7b62e2c94d749f0b199dd620bdd251dad0 /include/Config.hpp
parentdd4573e05cdfa2d9b99ef7a49c99e27c201da3e9 (diff)
Make font sizes customizable with a config file, see example-config.json. Remove environment variables
Diffstat (limited to 'include/Config.hpp')
-rw-r--r--include/Config.hpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/include/Config.hpp b/include/Config.hpp
new file mode 100644
index 0000000..0cdabe9
--- /dev/null
+++ b/include/Config.hpp
@@ -0,0 +1,45 @@
+#pragma once
+
+#include <string>
+
+namespace QuickMedia {
+ struct SearchConfig {
+ int font_size = 16;
+ };
+
+ struct TabConfig {
+ int font_size = 16;
+ };
+
+ struct BodyConfig {
+ int title_font_size = 16;
+ int author_font_size = 14;
+ int description_font_size = 14;
+ int timestamp_font_size = 10;
+ int reaction_font_size = 14;
+ int progress_font_size = 14;
+ int replies_font_size = 14;
+ int embedded_load_font_size = 14;
+ };
+
+ struct InputConfig {
+ int font_size = 16;
+ };
+
+ struct Config {
+ Config() = default;
+ Config(const Config&) = delete;
+ Config&operator=(const Config&) = delete;
+
+ SearchConfig search;
+ TabConfig tab;
+ BodyConfig body;
+ InputConfig input;
+ bool use_system_fonts = false;
+ std::string theme = "default";
+ float scale = 1.0f;
+ float font_scale = 1.0f;
+ };
+
+ const Config& get_config();
+} \ No newline at end of file