mapnik/include/mapnik/color.hpp

145 lines
3.3 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* Copyright (C) 2006 Artem Pavlenko
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02: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 17:06:59 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2006-03-31 12:32:02 +02: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 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
*****************************************************************************/
2005-06-14 17:06:59 +02:00
//$Id: color.hpp 39 2005-04-10 20:39:53Z pavlenko $
#ifndef COLOR_HPP
#define COLOR_HPP
// mapnik
#include <mapnik/config.hpp>
#include <mapnik/global.hpp>
//boost
#include <boost/cstdint.hpp>
#include <boost/operators.hpp>
// stl
2007-10-08 20:10:31 +02:00
#include <sstream>
2005-06-14 17:06:59 +02:00
namespace mapnik {
class MAPNIK_DECL color
: boost::equality_comparable<color>
2010-06-02 13:03:30 +02:00
{
private:
boost::uint8_t red_;
boost::uint8_t green_;
boost::uint8_t blue_;
boost::uint8_t alpha_;
2010-06-02 13:03:30 +02:00
public:
color()
: red_(0xff),
green_(0xff),
blue_(0xff),
alpha_(0xff)
{}
color(unsigned red, unsigned green, unsigned blue, unsigned alpha = 0xff)
2010-06-02 13:03:30 +02:00
: red_(red),
green_(green),
blue_(blue),
alpha_(alpha)
{}
2010-06-02 13:03:30 +02:00
color( std::string const& css_string);
2010-06-02 13:03:30 +02:00
color(const color& rhs)
: red_(rhs.red_),
green_(rhs.green_),
blue_(rhs.blue_),
alpha_(rhs.alpha_)
{}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
color& operator=(const color& rhs)
{
if (this==&rhs) return *this;
red_=rhs.red_;
green_=rhs.green_;
blue_=rhs.blue_;
alpha_=rhs.alpha_;
return *this;
}
2010-06-02 13:03:30 +02:00
inline unsigned red() const
{
return red_;
}
inline unsigned green() const
2010-06-02 13:03:30 +02:00
{
return green_;
}
inline unsigned blue() const
2010-06-02 13:03:30 +02:00
{
return blue_;
}
inline unsigned alpha() const
2010-06-02 13:03:30 +02:00
{
return alpha_;
}
2010-06-02 13:03:30 +02:00
inline void set_red(unsigned red)
{
red_ = red;
}
inline void set_green(unsigned green)
{
green_ = green;
}
2010-06-02 13:03:30 +02:00
inline void set_blue(unsigned blue)
{
blue_ = blue;
}
inline void set_alpha(unsigned alpha)
2010-06-02 13:03:30 +02:00
{
alpha_ = alpha;
}
inline unsigned rgba() const
2010-06-02 13:03:30 +02:00
{
#ifdef MAPNIK_BIG_ENDIAN
2010-06-02 13:03:30 +02:00
return (alpha_) | (blue_ << 8) | (green_ << 16) | (red_ << 24) ;
#else
2010-06-02 13:03:30 +02:00
return (alpha_ << 24) | (blue_ << 16) | (green_ << 8) | (red_) ;
#endif
2010-06-02 13:03:30 +02:00
}
inline bool operator==(color const& rhs) const
2010-06-02 13:03:30 +02:00
{
return (red_== rhs.red()) &&
(green_ == rhs.green()) &&
(blue_ == rhs.blue()) &&
(alpha_ == rhs.alpha());
2010-06-02 13:03:30 +02:00
}
std::string to_string() const;
2010-06-02 13:03:30 +02:00
std::string to_hex_string() const;
};
2005-06-14 17:06:59 +02:00
}
#endif //COLOR_HPP