1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/******************************************************************************
*
* Copyright (C) 2002 Hugo PEREIRA <mailto: hugo.pereira@free.fr>
*
* This 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 2 of the License, or (at your option) any later
* version.
*
* This software 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
* this program. If not, see <http://www.gnu.org/licenses/>.
*
*******************************************************************************/
#include "Color.h"
#include <QStringList>
namespace Base
{
//__________________________________________________________
Color& Color::merge( const QColor& other, qreal intensity )
{
if( !isValid() ) { *this = Color( other ); return *this; }
if( !other.isValid() ) return *this;
if( other == value_ ) return *this;
value_.setRed( intensity*value_.red() + (1.0-intensity )*other.red() );
value_.setGreen( intensity*value_.green() + (1.0-intensity )*other.green() );
value_.setBlue( intensity*value_.blue() + (1.0-intensity )*other.blue() );
value_.setAlpha( intensity*value_.alpha() + (1.0-intensity )*other.alpha() );
return *this;
}
//__________________________________________________________
Color& Color::addAlpha( qreal intensity )
{
value_.setAlpha( intensity*value_.alpha() );
return *this;
}
//__________________________________________________________
bool operator < (const Color& first, const Color& second)
{
if( first.get().red() != second.get().red() ) return first.get().red() < second.get().red();
else if( first.get().green() != second.get().green() ) return first.get().green() < second.get().green();
else if( first.get().blue() != second.get().blue() ) return first.get().blue() < second.get().blue();
else if( first.get().alpha() != second.get().alpha() ) return first.get().alpha() < second.get().alpha();
else return false;
}
}
//__________________________________________________________
QTextStream& operator << (QTextStream& out, const Base::Color& color )
{
out << color.get().red() << "," << color.get().green() << "," << color.get().blue() << "," << color.get().alpha();
return out;
}
//__________________________________________________________
QTextStream& operator >> (QTextStream& in, Base::Color& color )
{
QString colorString;
in >> colorString;
const QStringList stringList( colorString.split( "," ) );
if( stringList.size() >= 3 )
{
color.get().setRed( stringList[0].toInt() );
color.get().setGreen( stringList[1].toInt() );
color.get().setBlue( stringList[2].toInt() );
if( stringList.size() >= 4 ) color.get().setAlpha( stringList[3].toInt() );
else color.get().setAlpha( 255 );
} else {
color.get().setNamedColor( colorString );
}
return in;
}
|