summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMateusz Piekos <mateuszpiekos@gmail.com>2012-08-10 06:45:48 (GMT)
committerMateusz Piekos <mateuszpiekos@gmail.com>2012-08-10 06:45:48 (GMT)
commit1ba6012a02c05bd077fa5cd7bbfd83473227f608 (patch)
treed2bc58d93d21591e3cf284385d2f787a20575df8 /Swift/QtUI/Whiteboard/ColorWidget.h
parent7316162e0d809816b276512b50a1d6585265f959 (diff)
downloadswift-contrib-1ba6012a02c05bd077fa5cd7bbfd83473227f608.zip
swift-contrib-1ba6012a02c05bd077fa5cd7bbfd83473227f608.tar.bz2
Improved whiteboard window sidebar
Diffstat (limited to 'Swift/QtUI/Whiteboard/ColorWidget.h')
-rw-r--r--Swift/QtUI/Whiteboard/ColorWidget.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/Swift/QtUI/Whiteboard/ColorWidget.h b/Swift/QtUI/Whiteboard/ColorWidget.h
new file mode 100644
index 0000000..6abdf00
--- /dev/null
+++ b/Swift/QtUI/Whiteboard/ColorWidget.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright (c) 2012 Mateusz Piękos
+ * Licensed under the simplified BSD license.
+ * See Documentation/Licenses/BSD-simplified.txt for more information.
+ */
+
+#pragma once
+
+#include <QWidget>
+
+namespace Swift {
+ class ColorWidget : public QWidget {
+ Q_OBJECT;
+ public:
+ ColorWidget(QWidget* parent = 0);
+ QSize sizeHint() const;
+
+ public slots:
+ void setColor(QColor color);
+
+ private:
+ QColor color;
+
+ protected:
+ void paintEvent(QPaintEvent* /*event*/);
+ void mouseReleaseEvent(QMouseEvent* event);
+
+ signals:
+ void clicked();
+
+ };
+}
+