libcruft-util/colour.hpp

64 lines
1.8 KiB
C++
Raw Normal View History

2011-09-13 15:14:12 +10:00
/*
* This file is part of libgim.
*
* libgim is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2010-2015 Danny Robson <danny@nerdcruft.net>
2011-09-13 15:14:12 +10:00
*/
#ifndef __UTIL_COLOUR_HPP
#define __UTIL_COLOUR_HPP
#include "coord.hpp"
2015-01-13 18:33:02 +11:00
#include "json/tree.hpp"
2011-09-13 15:14:12 +10:00
#include <iostream>
namespace util {
/// An RGBA colour POD type.
template <size_t S, typename T>
2015-04-09 21:50:22 +10:00
struct colour : public coord::base<S,T,colour,coord::rgba,coord::hsv> {
using coord::base<S,T,util::colour,coord::rgba,coord::hsv>::base;
using base_t = coord::base<S,T,util::colour,coord::rgba,coord::hsv>;
2015-04-09 20:45:55 +10:00
template <typename U>
colour<S,U>
cast (void) const;
2015-01-13 18:33:02 +11:00
static const colour WHITE;
static const colour BLACK;
static const colour RED;
static const colour BLUE;
static const colour GREEN;
2015-04-09 20:46:55 +10:00
static colour from_html (const std::string&);
static colour from_x11 (const std::string&);
static colour from_string (const std::string&);
2011-09-13 15:14:12 +10:00
};
// Convenience types
typedef colour<4,float> colour4f;
2015-01-13 18:33:02 +11:00
// Serialisation
const json::tree::node& operator>> (const json::tree::node&, util::colour4f&);
2015-04-09 20:44:54 +10:00
template <size_t S, typename T>
std::ostream& operator<< (std::ostream&, util::colour<S,T>);
2011-09-13 15:14:12 +10:00
}
2015-04-09 20:45:55 +10:00
#include "colour.ipp"
2011-09-13 15:14:12 +10:00
#endif