1/***************************************************************************
2 * Copyright (C) 2005-2014 by the Quassel Project *
3 * devel@quassel-irc.org *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) version 3. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
20
21#include "colorbutton.h"
22
23#include <QPainter>
24#include <QStyle>
25#include <QStyleOptionFrame>
26
27#ifdef HAVE_KDE
28# include <KColorDialog>
29#else
30# include <QColorDialog>
31#endif
32
33ColorButton::ColorButton(QWidget *parent) : QToolButton(parent)
34{
35 setText("");
36 connect(this, SIGNAL(clicked()), SLOT(chooseColor()));
37}
38
39
40void ColorButton::setColor(const QColor &color)
41{
42 _color = color;
43 QPixmap pixmap(QSize(32, 32));
44 pixmap.fill(color);
45 setIcon(pixmap);
46
47 emit colorChanged(color);
48}
49
50
51QColor ColorButton::color() const
52{
53 return _color;
54}
55
56
57void ColorButton::chooseColor()
58{
59#ifdef HAVE_KDE
60 QColor c = color();
61 KColorDialog::getColor(c, this);
62#else
63 QColor c = QColorDialog::getColor(color(), this);
64#endif
65
66 if (c.isValid()) {
67 setColor(c);
68 }
69}
70