mapnik/include/color.hpp

119 lines
3.2 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
#include <boost/format.hpp>
2006-03-22 16:52:29 +01:00
#include "config.hpp"
#include <sstream>
2005-06-14 17:06:59 +02:00
namespace mapnik {
2006-03-22 16:52:29 +01:00
class MAPNIK_DECL Color
2005-06-14 17:06:59 +02:00
{
private:
unsigned int rgba_;
2005-06-14 17:06:59 +02:00
public:
Color()
:rgba_(0xffffffff) {}
2005-06-14 17:06:59 +02:00
Color(int red,int green,int blue,int alpha=0xff)
: rgba_((alpha&0xff) << 24 | (blue&0xff) << 16 | (green&0xff) << 8 | red&0xff) {}
2005-08-31 21:36:08 +02:00
explicit Color(int rgba)
: rgba_(rgba) {}
2005-06-14 17:06:59 +02:00
Color(const Color& rhs)
: rgba_(rhs.rgba_) {}
2005-06-14 17:06:59 +02:00
Color& operator=(const Color& rhs)
{
if (this==&rhs) return *this;
rgba_=rhs.rgba_;
return *this;
}
inline unsigned int blue() const
{
return (rgba_>>16)&0xff;
}
inline unsigned int green() const
{
return (rgba_>>8)&0xff;
}
inline unsigned int red() const
{
return rgba_&0xff;
}
inline void set_red(unsigned int r)
{
rgba_ = (rgba_ & 0xffffff00) | (r&0xff);
}
inline void set_green(unsigned int g)
{
rgba_ = (rgba_ & 0xffff00ff) | ((g&0xff) << 8);
}
inline void set_blue(unsigned int b)
{
rgba_ = (rgba_ & 0xff00ffff) | ((b&0xff) << 16);
}
2005-08-31 21:36:08 +02:00
inline unsigned int alpha() const
{
return (rgba_>>24)&0xff;
}
2005-08-31 21:36:08 +02:00
inline unsigned int rgba() const
{
return rgba_;
}
inline void set_bgr(unsigned bgr)
{
rgba_ = (rgba_ & 0xff000000) | (bgr & 0xffffff);
}
inline bool operator==(Color const& other) const
{
return rgba_ == other.rgba_;
}
inline std::string to_string() const
{
std::stringstream ss;
ss << "rgb (" << red() << "," << green() << "," << blue() <<")";
return ss.str();
}
inline std::string to_hex_string() const
{
std::stringstream ss;
ss << boost::format("#%1$02x%2$02x%3$02x") % red() % green() % blue();
return ss.str();
}
2005-06-14 17:06:59 +02:00
};
}
#endif //COLOR_HPP