kakoune/src/color_registry.cc

71 lines
2.4 KiB
C++
Raw Normal View History

#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)
{
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 };
}
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));
}
void ColorRegistry::register_alias(const String& name, const String& colordesc,
bool override)
{
if (not override and m_aliases.find(name) != m_aliases.end())
2013-12-03 20:48:53 +01: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");
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);
}
CandidateList ColorRegistry::complete_alias_name(StringView prefix,
ByteCount cursor_pos) const
{
CandidateList res;
auto real_prefix = prefix.substr(0, cursor_pos);
for (auto& alias : m_aliases)
{
if (prefix_match(alias.first, real_prefix))
res.push_back(alias.first);
}
return res;
}
ColorRegistry::ColorRegistry()
: m_aliases{
{ "PrimarySelection", { Colors::Cyan, Colors::Blue } },
{ "SecondarySelection", { Colors::Black, Colors::Blue } },
{ "PrimaryCursor", { Colors::Black, Colors::White } },
{ "SecondaryCursor", { Colors::Black, Colors::White } },
2013-05-24 18:39:03 +02:00
{ "LineNumbers", { Colors::Default, Colors::Default } },
{ "MenuForeground", { Colors::White, Colors::Blue } },
{ "MenuBackground", { Colors::Blue, Colors::White } },
{ "Information", { Colors::Black, Colors::Yellow } },
{ "Error", { Colors::Black, Colors::Red } },
{ "StatusLine", { Colors::Cyan, Colors::Default } },
{ "StatusCursor", { Colors::Black, Colors::Cyan } },
2014-01-20 22:01:26 +01:00
{ "Prompt", { Colors::Yellow, Colors::Default } },
{ "MatchingChar", { Colors::Default, Colors::Magenta } },
}
{}
}