2012-09-17 19:01:13 +02:00
|
|
|
#include "color_registry.hh"
|
|
|
|
|
|
|
|
#include "exception.hh"
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-05-15 14:01:23 +02:00
|
|
|
static ColorPair parse_color_pair(const String& colordesc)
|
2012-09-17 19:01:13 +02:00
|
|
|
{
|
|
|
|
auto it = std::find(colordesc.begin(), colordesc.end(), ',');
|
2013-05-15 14:01:23 +02:00
|
|
|
return { str_to_color({colordesc.begin(), it}),
|
|
|
|
it != colordesc.end() ? str_to_color({it+1, colordesc.end()})
|
|
|
|
: Colors::Default };
|
|
|
|
}
|
2012-09-17 19:01:13 +02:00
|
|
|
|
2013-05-15 14:01:23 +02:00
|
|
|
const ColorPair& ColorRegistry::operator[](const String& colordesc)
|
|
|
|
{
|
|
|
|
auto it = m_aliases.find(colordesc);
|
|
|
|
if (it != m_aliases.end())
|
|
|
|
return it->second;
|
|
|
|
return (m_aliases[colordesc] = parse_color_pair(colordesc));
|
2012-09-17 19:01:13 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 21:01:11 +02:00
|
|
|
void ColorRegistry::register_alias(const String& name, const String& colordesc,
|
|
|
|
bool override)
|
2012-09-17 19:01:13 +02:00
|
|
|
{
|
2012-09-17 21:01:11 +02:00
|
|
|
if (not override and m_aliases.find(name) != m_aliases.end())
|
2012-09-17 19:01:13 +02:00
|
|
|
throw runtime_error("alias '" + name + "' already defined");
|
|
|
|
|
2013-05-15 14:01:23 +02:00
|
|
|
if (name.empty() or
|
|
|
|
find_if(name, [](char c){ return not isalnum(c); }) != name.end())
|
|
|
|
throw runtime_error("invalid alias name");
|
2012-09-17 19:01:13 +02:00
|
|
|
|
2013-05-15 14:01:23 +02:00
|
|
|
auto it = m_aliases.find(colordesc);
|
|
|
|
m_aliases[name] = (it != m_aliases.end()) ?
|
|
|
|
it->second : parse_color_pair(colordesc);
|
2012-09-17 19:01:13 +02:00
|
|
|
}
|
|
|
|
|
2013-03-06 20:31:07 +01:00
|
|
|
ColorRegistry::ColorRegistry()
|
|
|
|
: m_aliases{
|
2013-05-07 18:52:23 +02:00
|
|
|
{ "PrimarySelection", { Colors::Cyan, Colors::Blue } },
|
|
|
|
{ "SecondarySelection", { Colors::Black, Colors::Blue } },
|
|
|
|
{ "PrimaryCursor", { Colors::Black, Colors::White } },
|
|
|
|
{ "SecondaryCursor", { Colors::Black, Colors::White } },
|
|
|
|
{ "LineNumbers", { Colors::Black, Colors::White } },
|
|
|
|
{ "MenuForeground", { Colors::Blue, Colors::Cyan } },
|
|
|
|
{ "MenuBackground", { Colors::Cyan, Colors::Blue } },
|
|
|
|
{ "Information", { Colors::Black, Colors::Yellow } },
|
|
|
|
{ "Error", { Colors::Black, Colors::Red } },
|
|
|
|
{ "StatusLine", { Colors::Cyan, Colors::Default } },
|
|
|
|
{ "StatusCursor", { Colors::Black, Colors::Cyan } },
|
|
|
|
{ "Prompt", { Colors::Yellow, Colors::Default} },
|
2013-03-06 20:31:07 +01:00
|
|
|
}
|
|
|
|
{}
|
|
|
|
|
2012-09-17 19:01:13 +02:00
|
|
|
}
|