summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMateusz Piekos <mateuszpiekos@gmail.com>2012-07-24 08:53:00 (GMT)
committerMateusz Piekos <mateuszpiekos@gmail.com>2012-07-24 08:53:00 (GMT)
commited208c8ce62dea1bdec51e904d51afa5229363c5 (patch)
treedfbbcb7404f47b0868dc547d6e48b476fd40727e
parent8b01b8de0477d7c6bb8dd7dd834fd147c7f9b86d (diff)
downloadswift-contrib-ed208c8ce62dea1bdec51e904d51afa5229363c5.zip
swift-contrib-ed208c8ce62dea1bdec51e904d51afa5229363c5.tar.bz2
Commented out code handling filled hand line
-rw-r--r--Swift/QtUI/Whiteboard/GView.cpp8
-rw-r--r--Swift/QtUI/Whiteboard/QtWhiteboardWindow.cpp2
2 files changed, 5 insertions, 5 deletions
diff --git a/Swift/QtUI/Whiteboard/GView.cpp b/Swift/QtUI/Whiteboard/GView.cpp
index 8d5e2bc..5f10329 100644
--- a/Swift/QtUI/Whiteboard/GView.cpp
+++ b/Swift/QtUI/Whiteboard/GView.cpp
@@ -181,14 +181,14 @@ namespace Swift {
}
}
else if (mode == FilledHandLine) {
- QGraphicsPathItem* item = qgraphicsitem_cast<QGraphicsPathItem*>(lastItem);
+/* QGraphicsPathItem* item = qgraphicsitem_cast<QGraphicsPathItem*>(lastItem);
QPainterPath path;
path = item->path();
if (path.isEmpty())
path.moveTo(item->data(0).toPointF());
QPointF newPoint = this->mapToScene(event->pos());
path.lineTo(newPoint);
- item->setPath(path);
+ item->setPath(path);*/
}
else if (mode == Polygon) {
QGraphicsPolygonItem* item = qgraphicsitem_cast<QGraphicsPolygonItem*>(lastItem);
@@ -276,7 +276,7 @@ namespace Swift {
lastItem = item;
}
else if (mode == FilledHandLine) {
- QPointF point = this->mapToScene(event->pos());
+/* QPointF point = this->mapToScene(event->pos());
QPainterPath path;
QGraphicsPathItem* item = scene()->addPath(path, pen, brush);
QString id = getNewID();
@@ -284,7 +284,7 @@ namespace Swift {
item->setData(0, point);
item->setData(100, id);
item->setData(101, items_.size());
- lastItem = item;
+ lastItem = item;*/
}
else if (mode == Text) {
QPointF point = this->mapToScene(event->pos());
diff --git a/Swift/QtUI/Whiteboard/QtWhiteboardWindow.cpp b/Swift/QtUI/Whiteboard/QtWhiteboardWindow.cpp
index b3f42a9..a2440ba 100644
--- a/Swift/QtUI/Whiteboard/QtWhiteboardWindow.cpp
+++ b/Swift/QtUI/Whiteboard/QtWhiteboardWindow.cpp
@@ -253,6 +253,7 @@ namespace Swift {
element->setID(lineItem->data(100).toString().toStdString());
el = element;
}
+
FreehandLineItem* freehandLineItem = qgraphicsitem_cast<FreehandLineItem*>(item);
if (freehandLineItem != 0) {
WhiteboardFreehandPathElement::ref element = boost::make_shared<WhiteboardFreehandPathElement>();
@@ -281,7 +282,6 @@ namespace Swift {
element->setBrushColor(Color(brushColor.red(), brushColor.green(), brushColor.blue(), brushColor.alpha()));
element->setPenColor(Color(penColor.red(), penColor.green(), penColor.blue(), penColor.alpha()));
element->setPenWidth(rectItem->pen().width());
- std::cout << penColor.red() << " " << brushColor.red() << std::endl;
element->setID(rectItem->data(100).toString().toStdString());
el = element;