]> git.sesse.net Git - kdenlive/blob - src/choosecolorwidget.h
Add GUI for MLT filter dynamic text.
[kdenlive] / src / choosecolorwidget.h
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 #ifndef CHOOSECOLORWIDGET_H
22 #define CHOOSECOLORWIDGET_H
23
24 #include <QtCore>
25 #include <QWidget>
26
27 class KColorButton;
28
29 /**
30  * @class ChooseColorWidget
31  * @brief Provides options to choose a color.
32  * @author Till Theato
33  */
34
35 class ChooseColorWidget : public QWidget
36 {
37     Q_OBJECT
38 public:
39     /** @brief Sets up the widget.
40     * @param text (optional) What the color will be used for
41     * @param color (optional) initial color */
42     ChooseColorWidget(QString text = QString(), QString color = "0xffffffff", QWidget* parent = 0);
43
44     /** @brief Gets the choosen color. */
45     QString getColor();
46     /** @brief Enable the use of alpha channel.
47     * @param enabled (required) whether alpha is enabled or disabled */
48     void setAlphaChannelEnabled(bool enabled);
49
50 private:
51     KColorButton *m_button;
52
53 private slots:
54     /** @brief Updates the different color choosing options to have all selected @param color. */
55     void setColor(QColor color);
56
57 signals:
58     /** @brief Emitted whenever a different color was choosen. */
59     void modified();
60     void displayMessage(const QString&, int);
61 };
62
63 #endif