]> git.sesse.net Git - kdenlive/blobdiff - src/widgets/choosecolorwidget.h
Moving choosecolorwidget and colorpickerwidget in the widget folder.
[kdenlive] / src / widgets / choosecolorwidget.h
diff --git a/src/widgets/choosecolorwidget.h b/src/widgets/choosecolorwidget.h
new file mode 100644 (file)
index 0000000..dc04d22
--- /dev/null
@@ -0,0 +1,62 @@
+/***************************************************************************
+ *   Copyright (C) 2010 by Till Theato (root@ttill.de)                     *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program 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 General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
+ ***************************************************************************/
+
+
+#ifndef CHOOSECOLORWIDGET_H
+#define CHOOSECOLORWIDGET_H
+
+#include <QWidget>
+
+class KColorButton;
+
+/**
+ * @class ChooseColorWidget
+ * @brief Provides options to choose a color.
+ * @author Till Theato
+ */
+
+class ChooseColorWidget : public QWidget
+{
+    Q_OBJECT
+public:
+    /** @brief Sets up the widget.
+    * @param text (optional) What the color will be used for
+    * @param color (optional) initial color 
+    * @param alphaEnabled (optional) Should transparent colors be enabled */
+    explicit ChooseColorWidget(const QString &text = QString(), const QString &color = "0xffffffff", bool alphaEnabled = false, QWidget* parent = 0);
+
+    /** @brief Gets the choosen color. */
+    QString getColor() const;
+
+private:
+    KColorButton *m_button;
+
+private slots:
+    /** @brief Updates the different color choosing options to have all selected @param color. */
+    void setColor(const QColor &color);
+
+signals:
+    /** @brief Emitted whenever a different color was choosen. */
+    void modified();
+    void displayMessage(const QString&, int);
+    /** @brief When user wants to pick a color, it's better to disable filter so we get proper color values. */
+    void disableCurrentFilter(bool);
+};
+
+#endif