summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrGradient.h
blob: 7ffad247ede633585dc3b215d2d371a3bc4e876f (plain)
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
// -*- Mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4; -*-
/* This file is part of the KDE project
   Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef kpgradient_h
#define kpgradient_h

#include <tqcolor.h>
#include <KoBrush.h>
#include <kpixmap.h>
#include "global.h"

class TQPainter;
class KoTextZoomHandler;

/**
 * Class: KPrGradient
 *
 * Encapsulates all gradient related functionality, to share it between
 * KPr2DObject and KPrBackGround.
 * KPrGradient stores the gradient parameters, and generate the gradient
 * on demand, in @ref pixmap().
 */
class KPrGradient
{
public:
    KPrGradient( const TQColor &_color1, const TQColor &_color2, BCType _bcType,
                bool _unbalanced, int _xfactor, int _yfactor );
    ~KPrGradient() {}

    TQColor getColor1() const { return color1; }
    TQColor getColor2() const { return color2; }
    BCType getBackColorType() const { return bcType; }
    bool getUnbalanced() const { return unbalanced; }
    int getXFactor() const { return xFactor; }
    int getYFactor() const { return yFactor; }

    void setColor1( const TQColor &_color ) { color1 = _color; m_bDirty = true; }
    void setColor2( const TQColor &_color ) { color2 = _color; m_bDirty = true; }
    void setBackColorType( BCType _type ) { bcType = _type; m_bDirty = true; }
    void setUnbalanced( bool b ) { unbalanced = b; m_bDirty = true; }
    void setXFactor( int i ) { xFactor = i; m_bDirty = true; }
    void setYFactor( int i ) { yFactor = i; m_bDirty = true; }
    void setSize( const TQSize& _size )
        {
            if ( size() != _size ) {
                m_pixmap.resize( _size );
                m_bDirty = true;
            }
        }

    // Sets all of the above at once. Used when loading.
    void setParameters(const TQColor &c1, const TQColor &c2, BCType _type,
                       bool _unbalanced, int xf, int yf);

    /** Return the pixmap containing the gradient.
     * Calculated on demand if necessary (if m_bDirty is true).
     */
    const TQPixmap& pixmap() const;
    TQSize size() const { return m_pixmap.size(); }

    void addRef();
    bool removeRef();

protected:
    /** Create the pixmap containing the gradient */
    void paint();

    KPrGradient() {}

    TQColor color1, color2;
    BCType bcType;

    KPixmap m_pixmap;
    int refCount;
    int xFactor, yFactor;
    bool unbalanced;
    bool m_bDirty;
};

#endif