/* * This file is part of Universal-Updater * Copyright (C) 2019-2021 Universal-Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Additional Terms 7.b and 7.c of GPLv3 apply to this file: * * Requiring preservation of specified reasonable legal notices or * author attributions in that material or in the Appropriate Legal * Notices displayed by works containing it. * * Prohibiting misrepresentation of the origin of that material, * or requiring that modified versions of such material be marked in * reasonable ways as different from the original version. */ #ifndef _UNIVERSAL_UPDATER_THEME_HPP #define _UNIVERSAL_UPDATER_THEME_HPP #include "json.hpp" #include #include class Theme { public: Theme(const std::string &ThemeJSON = "sdmc:/3ds/Universal-Updater/Themes.json"); nlohmann::json InitWithDefaultColors(const std::string &ThemePath = "sdmc:/3ds/Universal-Updater/Themes.json"); void LoadTheme(const std::string &ThemeName); std::vector> ThemeNames(); uint32_t GetThemeColor(const std::string &ThemeName, const std::string &Key, const uint32_t DefaultColor); uint32_t BarColor() const { return this->vBarColor; }; uint32_t BGColor() const { return this->vBGColor; }; uint32_t BarOutline() const { return this->vBarOutline; }; uint32_t TextColor() const { return this->vTextColor; }; uint32_t EntryBar() const { return this->vEntryBar; }; uint32_t EntryOutline() const { return this->vEntryOutline; }; uint32_t BoxInside() const { return this->vBoxInside; }; uint32_t BoxSelected() const { return this->vBoxSelected; }; uint32_t BoxUnselected() const { return this->vBoxUnselected; }; uint32_t ProgressbarOut() const { return this->vProgressbarOut; }; uint32_t ProgressbarIn() const { return this->vProgressbarIn; }; uint32_t SearchBar() const { return this->vSearchBar; }; uint32_t SearchBarOutline() const { return this->vSearchBarOutline; }; uint32_t SideBarSelected() const { return this->vSideBarSelected; }; uint32_t SideBarUnselected() const { return this->vSideBarUnselected; }; uint32_t MarkSelected() const { return this->vMarkSelected; }; uint32_t MarkUnselected() const { return this->vMarkUnselected; }; uint32_t DownListPrev() const { return this->vDownListPrev; }; uint32_t SideBarIconColor() const { return this->vSideBarIconColor; }; private: uint32_t vBarColor = 0, vBGColor = 0, vBarOutline = 0, vTextColor = 0, vEntryBar = 0, vEntryOutline = 0, vBoxInside = 0, vBoxSelected = 0, vBoxUnselected = 0, vProgressbarOut = 0, vProgressbarIn = 0, vSearchBar = 0, vSearchBarOutline = 0, vSideBarSelected = 0, vSideBarUnselected = 0, vMarkSelected = 0, vMarkUnselected = 0, vDownListPrev = 0, vSideBarIconColor = 0; int SelectedTheme = 0; bool Loaded = false; nlohmann::json json = nullptr; }; #endif