]> git.sesse.net Git - kdenlive/blob - src/choosecolorwidget.cpp
Cleanup widget for color parameter:
[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->setContentsMargins(0, 0, 0, 0);
36     layout->setSpacing(0);
37
38     QLabel *label = new QLabel(text, this);
39     m_button = new KColorButton(color, this);
40     m_button->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed);
41     ColorPickerWidget *picker = new ColorPickerWidget(this);
42
43     layout->addWidget(label);
44
45     QHBoxLayout *subLayout = new QHBoxLayout(this);
46     subLayout->setContentsMargins(0, 0, 0, 0);
47     subLayout->setSpacing(0);
48     subLayout->addWidget(m_button);//, 1, Qt::AlignRight);
49     subLayout->addWidget(picker, 0, Qt::AlignRight);
50     layout->addLayout(subLayout);
51
52     connect(picker, SIGNAL(colorPicked(QColor)), this, SLOT(setColor(QColor)));
53     connect(picker, SIGNAL(displayMessage(const QString&, int)), this, SIGNAL(displayMessage(const QString&, int)));
54     connect(m_button, SIGNAL(changed(QColor)), this, SIGNAL(modified()));
55 }
56
57 QColor ChooseColorWidget::getColor()
58 {
59     return m_button->color();
60 }
61
62 void ChooseColorWidget::setColor(QColor color)
63 {
64     m_button->setColor(color);
65 }
66
67 #include "choosecolorwidget.moc"