File: Color.cpp

package info (click to toggle)
qtop 2.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,840 kB
  • ctags: 5,775
  • sloc: cpp: 38,795; makefile: 9
file content (91 lines) | stat: -rw-r--r-- 3,136 bytes parent folder | download | duplicates (2)
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
90
91
/******************************************************************************
*
* 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
{

    //__________________________________________________________
    QColor Color::merge( const QColor& other, qreal intensity ) const
    {
        if( !isValid() ) return other;
        if( !other.isValid() ) return *this;
        if( other == *this ) return *this;

        double red = intensity*Color::red() + (1.0-intensity )*other.red();
        double green = intensity*Color::green() + (1.0-intensity )*other.green();
        double blue = intensity*Color::blue() + (1.0-intensity )*other.blue();
        double alpha = intensity*Color::alpha() + (1.0-intensity )*other.alpha();

        return QColor( int( red ), int( green ), int( blue ), int( alpha ) );
    }

    //__________________________________________________________
    QColor Color::addAlpha( qreal intensity ) const
    {
        QColor out( *this );
        out.setAlpha( intensity*alpha() );
        return out;
    }

    //__________________________________________________________
    bool Color::operator < (const Color& other ) const
    {
        if( red() != other.red() ) return red() < other.red();
        else if( green() != other.green() ) return green() < other.green();
        else if( blue() != other.blue() ) return blue() < other.blue();
        else if( alpha() != other.alpha() ) return alpha() < other.alpha();
        else return false;
    }

}

//__________________________________________________________
QTextStream& operator << (QTextStream& out, const Base::Color& color )
{
    out << color.red() << "," << color.green() << "," << color.blue() << "," << color.alpha();
    return out;
}

//__________________________________________________________
QTextStream& operator >> (QTextStream& in, Base::Color& color )
{
    QString colorString;
    in >> colorString;
    const QStringList stringList( colorString.split( "," ) );
    if( stringList.size() >= 3 )
    {
        color.setRed( stringList[0].toInt() );
        color.setGreen( stringList[1].toInt() );
        color.setBlue( stringList[2].toInt() );

        if( stringList.size() >= 4 )  color.setAlpha( stringList[3].toInt() );
        else color.setAlpha( 255 );

    } else {

        color.setNamedColor( colorString );

    }

    return in;
}