Color schemes. They are mainly used to specify the theme to use and the current theme's colors.
variable colorSchemesInStr
Copy static const std::map< colorScheme, const char * > colorSchemesInStr =
{
{colorScheme::DARK, "dark"},
{colorScheme::LIGHT, "light"},
{colorScheme::UNSPECIFIED, "auto"}
};
Copy static const std::map< std::string, int > FONTWT =
{
{"light", wxFONTWEIGHT_LIGHT},
{"normal", wxFONTWEIGHT_NORMAL},
{"semibold", wxFONTWEIGHT_SEMIBOLD},
{"bold", wxFONTWEIGHT_BOLD},
{"maxlight", wxFONTWEIGHT_EXTRALIGHT},
{"maxbold", wxFONTWEIGHT_EXTRABOLD}
};
Font weights.
Copy static const std::map< std::string, int > FONTSZ =
{
{"normal", 12},
{"small", 8},
{"large", 16}
};
Font sizes.
Copy static const std::map< std::string, int > FONTST =
{
{"normal", wxFONTSTYLE_NORMAL},
{"italic", wxFONTSTYLE_ITALIC}
};
Font styles.
Copy #pragma once
#include <libtextworker/get_config.h>
#include <libtextworker/settings.h>
#include <wx/wx.h>
#include <functional>
#ifdef __linux__
# include <gio/gio.h>
#endif
using namespace libtextworker::get_config;
namespace libtextworker
{
namespace UI
{
// TODO: Add more font weights
static const std::map<std::string, int> FONTWT =
{
{"light", wxFONTWEIGHT_LIGHT},
{"normal", wxFONTWEIGHT_NORMAL},
{"semibold", wxFONTWEIGHT_SEMIBOLD},
{"bold", wxFONTWEIGHT_BOLD},
{"maxlight", wxFONTWEIGHT_EXTRALIGHT},
{"maxbold", wxFONTWEIGHT_EXTRABOLD}
};
static const std::map<std::string, int> FONTST =
{
{"normal", wxFONTSTYLE_NORMAL},
{"italic", wxFONTSTYLE_ITALIC}
};
static const std::map<std::string, int> FONTSZ =
{
{"normal", 12},
{"small", 8},
{"large", 16}
};
enum colorScheme
{
DARK,
LIGHT,
UNSPECIFIED
};
static const std::map<colorScheme, const char*> colorSchemesInStr =
{
{colorScheme::DARK, "dark"},
{colorScheme::LIGHT, "light"},
{colorScheme::UNSPECIFIED, "auto"}
};
class ColorManager: public GetConfig
{
private:
#ifdef __linux__
GSettingsSchema* schema;
GSettings* settings;
char* KeyToUse;
#endif
void recursiveConfigure(wxColour& back, wxColour& fore, wxFont& font, wxWindow* target);
public:
using libtextworker::get_config::GetConfig::GetConfig;
void Create(Json::Value& OEMconfig, const char* targetFile);
~ColorManager();
std::function<void(colorScheme)> onColorChange;
colorScheme GetColorScheme();
/*
Gets the color from current system scheme.
For supported color names, look at wxColourDatabase from wxWidgets.
*/
std::tuple<std::string, std::string> GetColors(colorScheme scheme = colorScheme::UNSPECIFIED);
/* Gets current font settings. */
wxFont GetFont();
void Configure(wxWindow* widget, colorScheme colorScheme = colorScheme::DARK);
// ^ wxWindow is the base class for ALL windows and controls etc.
// Everything visible on the screen, sizers and device contexts are not.
// According to wxWidgets's documentation.
};
}
}