93 lines
1.5 KiB
C++
93 lines
1.5 KiB
C++
/**
|
|
* Theme manager
|
|
*/
|
|
|
|
#include "ThemeConfig.h"
|
|
#include <config/themes_json.h>
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
ThemeConfig::ThemeConfig()
|
|
{
|
|
this->LoadJson(themes_json);
|
|
this->SetTheme("Solarized");
|
|
}
|
|
|
|
/**
|
|
* Destructor
|
|
*/
|
|
ThemeConfig::~ThemeConfig() {}
|
|
|
|
/**
|
|
* Set the current theme
|
|
*
|
|
* @param string theme_name
|
|
* @return bool
|
|
*/
|
|
bool ThemeConfig::SetTheme(const string &theme_name)
|
|
{
|
|
JsonValue theme_list = this->GetRoot();
|
|
JsonValue selected_theme = theme_list.get(theme_name, JsonValue());
|
|
|
|
if (selected_theme.isNull()) return FALSE;
|
|
|
|
if (selected_theme.isObject())
|
|
{
|
|
this->current_theme = selected_theme;
|
|
return TRUE;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
/**
|
|
* Get the name of the currently selected theme
|
|
*
|
|
* @return string
|
|
*/
|
|
JsonValue ThemeConfig::GetTheme()
|
|
{
|
|
return this->current_theme;
|
|
}
|
|
|
|
/**
|
|
* Retrieve a setting from the current theme
|
|
*
|
|
* @param string type
|
|
* @param string key
|
|
* @return JsonValue
|
|
*/
|
|
JsonValue ThemeConfig::GetThemeValue(string type, string key)
|
|
{
|
|
JsonValue value = this->current_theme
|
|
.get(type, JsonValue())
|
|
.get(key, JsonValue());
|
|
|
|
return value;
|
|
}
|
|
|
|
/**
|
|
* Retrieve the configured color for the specified theme
|
|
* @param type
|
|
* @param key
|
|
* @return
|
|
*/
|
|
wxColor ThemeConfig::GetThemeColor(string type, string key)
|
|
{
|
|
JsonValue color_value = this->GetThemeValue(type, key);
|
|
|
|
if (color_value.isArray())
|
|
{
|
|
return wxColor(
|
|
(unsigned char) color_value[0].asUInt(),
|
|
(unsigned char) color_value[1].asUInt(),
|
|
(unsigned char) color_value[2].asUInt()
|
|
);
|
|
}
|
|
else
|
|
{
|
|
return wxColor("BLACK");
|
|
}
|
|
}
|