home/src/color_registry.hh
Maxime Coste 5cf947f845 Add a ColorRegistry class responsible of color parsing and supporting aliases
colalias command permits to define names for color pairs
2012-09-17 19:01:13 +02:00

28 lines
506 B
C++

#ifndef color_registry_hh_INCLUDED
#define color_registry_hh_INCLUDED
#include <unordered_map>
#include "color.hh"
#include "utils.hh"
namespace Kakoune
{
using ColorPair = std::pair<Color, Color>;
class ColorRegistry : public Singleton<ColorRegistry>
{
public:
const ColorPair& operator[](const String& colordesc);
void register_alias(const String& name, const String& colordesc);
private:
std::unordered_map<String, ColorPair> m_aliases;
};
}
#endif // color_registry_hh_INCLUDED