Mercurial > minori
annotate include/core/config.h @ 101:c537996cf67b
*: multitude of config changes
1. theme is now configurable from the settings menu
(but you have to restart for it to apply)
2. config is now stored in an INI file, with no method of
conversion from json (this repo is private-ish anyway)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 03 Nov 2023 14:06:02 -0400 |
parents | c69230dc2b5d |
children | b315f3759c56 |
rev | line source |
---|---|
9 | 1 #ifndef __core__config_h |
2 #define __core__config_h | |
85 | 3 |
9 | 4 #include "core/anime.h" |
5 | |
6 enum class Themes { | |
7 LIGHT, | |
8 DARK, | |
9 OS // AKA "Default" | |
10 }; | |
11 | |
12 class Config { | |
13 public: | |
14 int Load(); | |
15 int Save(); | |
16 | |
17 Anime::Services service; | |
18 Themes theme; | |
19 | |
20 struct { | |
21 public: | |
22 Anime::TitleLanguage language; | |
23 bool display_aired_episodes; | |
24 bool display_available_episodes; | |
25 bool highlight_anime_if_available; | |
26 bool highlighted_anime_above_others; | |
27 } anime_list; | |
28 | |
29 struct { | |
30 public: | |
31 std::string auth_token; | |
32 std::string username; | |
33 int user_id; | |
34 } anilist; | |
35 }; | |
11 | 36 |
63 | 37 #define CONFIG_DIR "minori" |
101
c537996cf67b
*: multitude of config changes
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
38 #define CONFIG_NAME "config.ini" |
62 | 39 |
9 | 40 #define MAX_LINE_LENGTH 256 |
85 | 41 |
9 | 42 #endif // __core__config_h |