mapnik/include/mapnik/color.hpp

144 lines
3.2 KiB
C++
Raw Normal View History

2006-03-31 10:32:02 +00:00
/*****************************************************************************
2012-02-01 17:53:35 -08:00
*
2006-03-31 10:32:02 +00:00
* This file is part of Mapnik (c++ mapping toolkit)
2005-06-14 15:06:59 +00:00
*
* Copyright (C) 2011 Artem Pavlenko
2005-06-14 15:06:59 +00:00
*
2006-03-31 10:32:02 +00:00
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
2005-06-14 15:06:59 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2006-03-31 10:32:02 +00:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2005-06-14 15:06:59 +00:00
*
2006-03-31 10:32:02 +00:00
*****************************************************************************/
2005-06-14 15:06:59 +00:00
#ifndef MAPNIK_COLOR_HPP
#define MAPNIK_COLOR_HPP
2005-06-14 15:06:59 +00:00
// mapnik
#include <mapnik/config.hpp>
#include <mapnik/global.hpp>
//boost
#include <boost/cstdint.hpp>
#include <boost/operators.hpp>
// stl
2007-10-08 18:10:31 +00:00
#include <sstream>
2005-06-14 15:06:59 +00:00
namespace mapnik {
2012-02-01 17:53:35 -08:00
class MAPNIK_DECL color
: boost::equality_comparable<color>
2010-06-02 11:03:30 +00:00
{
private:
boost::uint8_t red_;
boost::uint8_t green_;
boost::uint8_t blue_;
boost::uint8_t alpha_;
2012-02-01 17:53:35 -08:00
2010-06-02 11:03:30 +00:00
public:
color()
: red_(0xff),
green_(0xff),
blue_(0xff),
alpha_(0xff)
{}
2012-02-01 17:53:35 -08:00
color(unsigned red, unsigned green, unsigned blue, unsigned alpha = 0xff)
2010-06-02 11:03:30 +00:00
: red_(red),
green_(green),
blue_(blue),
alpha_(alpha)
{}
2012-02-01 17:53:35 -08:00
2010-06-02 11:03:30 +00:00
color( std::string const& css_string);
2012-02-01 17:53:35 -08:00
2010-06-02 11:03:30 +00:00
color(const color& rhs)
: red_(rhs.red_),
green_(rhs.green_),
blue_(rhs.blue_),
2012-02-01 17:53:35 -08:00
alpha_(rhs.alpha_)
2010-06-02 11:03:30 +00:00
{}
2005-06-14 15:06:59 +00:00
2010-06-02 11:03:30 +00:00
color& operator=(const color& rhs)
2012-02-01 17:53:35 -08:00
{
if (this==&rhs) return *this;
red_=rhs.red_;
green_=rhs.green_;
blue_=rhs.blue_;
alpha_=rhs.alpha_;
return *this;
}
2010-06-02 11:03:30 +00:00
inline unsigned red() const
{
return red_;
}
2012-02-01 17:53:35 -08:00
inline unsigned green() const
2010-06-02 11:03:30 +00:00
{
return green_;
}
inline unsigned blue() const
2010-06-02 11:03:30 +00:00
{
return blue_;
}
inline unsigned alpha() const
2010-06-02 11:03:30 +00:00
{
return alpha_;
2012-02-01 17:53:35 -08:00
}
2010-06-02 11:03:30 +00:00
inline void set_red(unsigned red)
{
red_ = red;
}
inline void set_green(unsigned green)
{
green_ = green;
}
2012-02-01 17:53:35 -08:00
2010-06-02 11:03:30 +00:00
inline void set_blue(unsigned blue)
{
blue_ = blue;
}
inline void set_alpha(unsigned alpha)
2010-06-02 11:03:30 +00:00
{
alpha_ = alpha;
}
inline unsigned rgba() const
2010-06-02 11:03:30 +00:00
{
#ifdef MAPNIK_BIG_ENDIAN
2010-06-02 11:03:30 +00:00
return (alpha_) | (blue_ << 8) | (green_ << 16) | (red_ << 24) ;
#else
2010-06-02 11:03:30 +00:00
return (alpha_ << 24) | (blue_ << 16) | (green_ << 8) | (red_) ;
#endif
2010-06-02 11:03:30 +00:00
}
2012-02-01 17:53:35 -08:00
inline bool operator==(color const& rhs) const
2010-06-02 11:03:30 +00:00
{
return (red_== rhs.red()) &&
(green_ == rhs.green()) &&
(blue_ == rhs.blue()) &&
(alpha_ == rhs.alpha());
2012-02-01 17:53:35 -08:00
2010-06-02 11:03:30 +00:00
}
2012-02-01 17:53:35 -08:00
std::string to_string() const;
2010-06-02 11:03:30 +00:00
std::string to_hex_string() const;
2012-02-01 17:53:35 -08:00
};
2005-06-14 15:06:59 +00:00
}
#endif // MAPNIK_COLOR_HPP