diff options
| author | Mateusz Piekos <mateuszpiekos@gmail.com> | 2012-08-10 06:45:48 (GMT) |
|---|---|---|
| committer | Mateusz Piekos <mateuszpiekos@gmail.com> | 2012-08-10 06:45:48 (GMT) |
| commit | 1ba6012a02c05bd077fa5cd7bbfd83473227f608 (patch) | |
| tree | d2bc58d93d21591e3cf284385d2f787a20575df8 /Swift/QtUI/Whiteboard/ColorWidget.cpp | |
| parent | 7316162e0d809816b276512b50a1d6585265f959 (diff) | |
| download | swift-contrib-1ba6012a02c05bd077fa5cd7bbfd83473227f608.zip swift-contrib-1ba6012a02c05bd077fa5cd7bbfd83473227f608.tar.bz2 | |
Improved whiteboard window sidebar
Diffstat (limited to 'Swift/QtUI/Whiteboard/ColorWidget.cpp')
| -rw-r--r-- | Swift/QtUI/Whiteboard/ColorWidget.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Swift/QtUI/Whiteboard/ColorWidget.cpp b/Swift/QtUI/Whiteboard/ColorWidget.cpp new file mode 100644 index 0000000..e96b760 --- /dev/null +++ b/Swift/QtUI/Whiteboard/ColorWidget.cpp @@ -0,0 +1,37 @@ +/* + * Copyright (c) 2012 Mateusz Piękos + * Licensed under the simplified BSD license. + * See Documentation/Licenses/BSD-simplified.txt for more information. + */ + + +#include "ColorWidget.h" +#include <QPainter> +#include <QMouseEvent> + +namespace Swift { + ColorWidget::ColorWidget(QWidget* parent) : QWidget(parent) { + setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed)); + } + + QSize ColorWidget::sizeHint() const { + return QSize(20, 20); + } + + void ColorWidget::setColor(QColor color) { + this->color = color; + update(); + } + + void ColorWidget::paintEvent(QPaintEvent* /*event*/) { + QPainter painter(this); + painter.fillRect(0, 0, 20, 20, color); + } + + void ColorWidget::mouseReleaseEvent(QMouseEvent* event) { + if (event->button() == Qt::LeftButton) { + emit clicked(); + } + } +} + |
Swift