~ubuntu-branches/ubuntu/quantal/digikam/quantal-proposed

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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* ============================================================
 *
 * This file is a part of kipi-plugins project
 * http://www.digikam.org
 *
 * Date        : 2011-09-01
 * Description : a plugin to create photo layouts by fusion of several images.
 * Acknowledge : based on the expoblending plugin
 *
 * Copyright (C) 2011 by Ɓukasz Spas <lukasz dot spas at gmail dot com>
 * Copyright (C) 2009-2011 by Gilles Caulier <caulier dot gilles at gmail dot com>
 *
 * This program 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, or (at your option)
 * any later version.
 *
 * This program 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.
 *
 * ============================================================ */

#ifndef COLORIZEPHOTOEFFECT_H
#define COLORIZEPHOTOEFFECT_H

#include "AbstractPhotoEffectInterface.h"

#define COLOR_PROPERTY "Color"

namespace KIPIPhotoLayoutsEditor
{
    class StandardEffectsFactory;
    class ColorizePhotoEffect : public AbstractPhotoEffectInterface
    {
            Q_OBJECT

            static QColor m_last_color;
            QColor m_color;

        public:

            explicit ColorizePhotoEffect(StandardEffectsFactory * factory, QObject * parent = 0);
            virtual QImage apply(const QImage & image) const;
            virtual QString name() const;
            virtual QString toString() const;
            virtual operator QString() const;

            virtual QString propertyName(const QMetaProperty & property) const
            {
                if (!QString("color").compare(property.name()))
                    return COLOR_PROPERTY;
                return AbstractPhotoEffectInterface::propertyName(property);
            }
            virtual QVariant propertyValue(const QString & propertyName) const
            {
                if (propertyName == COLOR_PROPERTY)
                    return m_color;
                return AbstractPhotoEffectInterface::propertyValue(propertyName);
            }
            virtual void setPropertyValue(const QString & propertyName, const QVariant & value)
            {
                if (COLOR_PROPERTY == propertyName)
                    this->setColor(value.value<QColor>());
                else
                    AbstractPhotoEffectInterface::setPropertyValue(propertyName, value);
            }

            Q_PROPERTY(QColor color READ color WRITE setColor)
            QColor color() const
            {
                return m_color;
            }
            void setColor(QColor color)
            {
                if (!color.isValid())
                    return;
                m_color = color;
                m_last_color = color;
                this->propertiesChanged();
            }

        private:

            static inline QImage colorized(const QImage & image, const QColor & color)
            {
                QImage result = image;
                unsigned int pixels = result.width() * result.height();
                unsigned int * data = (unsigned int *) result.bits();
                for (unsigned int i = 0; i < pixels; ++i)
                {
                    int val = qGray(data[i]);
                    data[i] = qRgb(val,val,val);
                }
                QPainter p(&result);
                p.setCompositionMode(QPainter::CompositionMode_Overlay);
                p.fillRect(result.rect(),color);
                p.end();
                return result;
            }

        friend class StandardEffectsFactory;
    };
}

#endif // COLORIZEPHOTOEFFECT_H