summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/kcoloractions.h
blob: 8f2c713bfa80c6c32ecf90c2bc604eec9d4df7b6 (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
98
99
100
101
102
103
/* This file is part of the KDE libraries
    Copyright (C) 2000 Reginald Stadlbauer <reggie@kde.org>
    Copyright (C) 2002 Werner Trobin <trobin@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 version 2 as published by the Free Software Foundation.

    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 kcoloractions_h
#define kcoloractions_h

#include <kaction.h>

/**
 * An action whose pixmap is automatically generated from a color.
 * It knows three types of pixmaps: text color, frame color and background color
 */
class KColorAction : public KAction
{
    Q_OBJECT
  TQ_OBJECT

public:
    enum Type {
	TextColor,
	FrameColor,
	BackgroundColor
    };

    // Create default (text) color action
    KColorAction( const TQString& text, int accel = 0, TQObject* parent = 0, const char* name = 0 );
    KColorAction( const TQString& text, int accel,
		  TQObject* receiver, const char* slot, TQObject* parent, const char* name = 0 );
    KColorAction( TQObject* parent = 0, const char* name = 0 );

    // Create a color action of a given type
    KColorAction( const TQString& text, Type type, int accel = 0,
		  TQObject* parent = 0, const char* name = 0 );
    KColorAction( const TQString& text, Type type, int accel,
		  TQObject* receiver, const char* slot, TQObject* parent, const char* name = 0 );

    virtual void setColor( const TQColor &c );
    TQColor color() const;

    virtual void setType( Type type );
    Type type() const;

private:
    void init();
    void createPixmap();

    TQColor col;
    Type typ;
};


class KSelectColorAction : public KAction
{
    Q_OBJECT
  TQ_OBJECT
public:
    enum Type {
        TextColor,
        LineColor,
        FillColor
    };

    KSelectColorAction( const TQString& text, Type type,
                        const TQObject* receiver, const char* slot,
                        KActionCollection* parent, const char* name );
    virtual ~KSelectColorAction();

    virtual int plug( TQWidget* w, int index = -1 );

    TQColor color() const;
    Type type() const;

public slots:
    virtual void setColor( const TQColor &c );
    virtual void setType( Type t );

signals:
    void colorSelected( const TQColor& color );

private:
    TQString whatsThisWithIcon() const; // duplicated, as it's private in kaction

    Type m_type;
    TQColor m_color;
};

#endif