aboutsummaryrefslogtreecommitdiff
path: root/include/Config.hpp
diff options
context:
space:
mode:
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