X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fwidgets%2Fchoosecolorwidget.h;fp=src%2Fwidgets%2Fchoosecolorwidget.h;h=dc04d22fe219e7d8d57ab3c3d3e8f0c4d29b527b;hb=8d7da28432a5274577fa90a2ccf9cd9551159e9d;hp=0000000000000000000000000000000000000000;hpb=d679fbf19a2511b181570418dc7fa7c815728bcb;p=kdenlive diff --git a/src/widgets/choosecolorwidget.h b/src/widgets/choosecolorwidget.h new file mode 100644 index 00000000..dc04d22f --- /dev/null +++ b/src/widgets/choosecolorwidget.h @@ -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 + +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