diff options
author | Treeki <treeki@gmail.com> | 2012-09-12 14:57:44 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-09-12 14:57:44 +0200 |
commit | 3189ca5efc5826405bf2e9c7d9949ad5ea9a8a10 (patch) | |
tree | d10e8cd4e462db28dd3c2f995905c4df57a20fed /lscolorpicker.h | |
parent | be8b56a7f0a8f6ba5456a099b61d032fd8aa2f61 (diff) | |
download | LayoutStudio-3189ca5efc5826405bf2e9c7d9949ad5ea9a8a10.tar.gz LayoutStudio-3189ca5efc5826405bf2e9c7d9949ad5ea9a8a10.zip |
initial un-exporter version
Diffstat (limited to 'lscolorpicker.h')
-rw-r--r-- | lscolorpicker.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/lscolorpicker.h b/lscolorpicker.h deleted file mode 100644 index 7f16c57..0000000 --- a/lscolorpicker.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef LSCOLORPICKER_H -#define LSCOLORPICKER_H - -#include <QToolButton> - -class LSColorPicker : public QToolButton -{ - Q_OBJECT -public: - explicit LSColorPicker(QWidget *parent = 0); - - QColor color() const { return m_color; } - void setColor(QColor newCol); - -private: - QColor m_color; - -private slots: - void tryAndChoose(); - void refreshButton(); - -signals: - void colorPicked(QColor newCol, QColor oldCol); - -}; - -#endif // LSCOLORPICKER_H |