]> git.sesse.net Git - kdenlive/blob - src/choosecolorwidget.cpp
Add a color picker widget to pick a color on the screen, without having to open the...
[kdenlive] / src / choosecolorwidget.cpp
1 /***************************************************************************
2  *   Copyright (C) 2010 by Till Theato (root@ttill.de)                     *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #include "choosecolorwidget.h"
22 #include "colorpickerwidget.h"
23
24 #include <QLabel>
25 #include <QHBoxLayout>
26
27 #include <KColorButton>
28 #include <KLocalizedString>
29
30
31 ChooseColorWidget::ChooseColorWidget(QString text, QColor color, QWidget *parent) :
32         QWidget(parent)
33 {
34     QHBoxLayout *layout = new QHBoxLayout(this);
35     layout->addWidget(new QLabel(text));
36     m_button = new KColorButton(color, this);
37     layout->addWidget(m_button);
38     ColorPickerWidget *picker = new ColorPickerWidget(this);
39     layout->addWidget(picker);
40
41     connect(picker, SIGNAL(colorPicked(QColor)), this, SLOT(setColor(QColor)));
42     connect(m_button, SIGNAL(clicked(bool)), this, SIGNAL(modified()));
43 }
44
45 QColor ChooseColorWidget::getColor()
46 {
47     return m_button->color();
48 }
49
50 void ChooseColorWidget::setColor(QColor color)
51 {
52     m_button->setColor(color);
53     emit modified();
54 }
55
56 #include "choosecolorwidget.moc"