2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vtoolsinglepoint.cpp
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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 Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
#include "vtoolsinglepoint.h"
|
2014-02-21 14:04:39 +01:00
|
|
|
#include "../../dialogs/tools/dialogsinglepoint.h"
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolSinglePoint::ToolType = QStringLiteral("single");
|
|
|
|
|
2014-03-11 12:43:24 +01:00
|
|
|
VToolSinglePoint::VToolSinglePoint (VPattern *doc, VContainer *data, quint32 id, const Valentina::Sources &typeCreation,
|
2013-11-04 21:35:15 +01:00
|
|
|
QGraphicsItem * parent )
|
2014-02-06 14:57:23 +01:00
|
|
|
:VToolPoint(doc, data, id, parent)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-01-07 13:54:50 +01:00
|
|
|
baseColor = Qt::red;
|
|
|
|
currentColor = baseColor;
|
2013-10-21 09:45:49 +02:00
|
|
|
ignoreFullUpdate = true;
|
2013-08-13 18:48:36 +02:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsMovable, true);
|
|
|
|
this->setFlag(QGraphicsItem::ItemSendsGeometryChanges, true);
|
2014-01-03 16:13:43 +01:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsFocusable, false);
|
2014-01-07 13:54:50 +01:00
|
|
|
setColorLabel(Qt::black);
|
2014-03-11 12:43:24 +01:00
|
|
|
if (typeCreation == Valentina::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::setDialog()
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogSinglePoint *dialogTool = qobject_cast<DialogSinglePoint*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *p = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2014-02-06 14:57:23 +01:00
|
|
|
dialogTool->setData(p->name(), p->toQPointF());
|
2013-08-15 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::AddToFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2014-03-21 11:08:29 +01:00
|
|
|
doc->SetAttribute(domElement, VDomDocument::AttrId, id);
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrType, ToolType);
|
|
|
|
doc->SetAttribute(domElement, AttrName, point->name());
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrX, qApp->fromPixel(point->x()));
|
|
|
|
doc->SetAttribute(domElement, AttrY, qApp->fromPixel(point->y()));
|
|
|
|
doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(point->mx()));
|
|
|
|
doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(point->my()));
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToCalculation(domElement);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolSinglePoint::RefreshDataInFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-12-24 12:24:29 +01:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrName, point->name());
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrX, QString().setNum(qApp->fromPixel(point->x())));
|
|
|
|
doc->SetAttribute(domElement, AttrY, QString().setNum(qApp->fromPixel(point->y())));
|
|
|
|
doc->SetAttribute(domElement, AttrMx, QString().setNum(qApp->fromPixel(point->mx())));
|
|
|
|
doc->SetAttribute(domElement, AttrMy, QString().setNum(qApp->fromPixel(point->my())));
|
2013-12-24 12:24:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
QVariant VToolSinglePoint::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)
|
|
|
|
{
|
|
|
|
if (change == ItemPositionChange && scene())
|
|
|
|
{
|
2013-12-21 15:21:40 +01:00
|
|
|
// value - this is new position.
|
2013-08-13 18:48:36 +02:00
|
|
|
QPointF newPos = value.toPointF();
|
|
|
|
QRectF rect = scene()->sceneRect();
|
2013-11-04 21:35:15 +01:00
|
|
|
if (rect.contains(newPos) == false)
|
|
|
|
{
|
2013-12-21 15:21:40 +01:00
|
|
|
// Save element into rect of scene.
|
2013-08-13 18:48:36 +02:00
|
|
|
newPos.setX(qMin(rect.right(), qMax(newPos.x(), rect.left())));
|
|
|
|
newPos.setY(qMin(rect.bottom(), qMax(newPos.y(), rect.top())));
|
|
|
|
return newPos;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (change == ItemPositionHasChanged && scene())
|
|
|
|
{
|
2013-12-21 15:21:40 +01:00
|
|
|
// value - this is new position.
|
2013-08-13 18:48:36 +02:00
|
|
|
QPointF newPos = value.toPointF();
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrX, QString().setNum(qApp->fromPixel(newPos.x())));
|
|
|
|
doc->SetAttribute(domElement, AttrY, QString().setNum(qApp->fromPixel(newPos.y())));
|
2014-01-11 18:08:40 +01:00
|
|
|
|
2014-01-15 10:20:46 +01:00
|
|
|
QList<QGraphicsView*> list = this->scene()->views();
|
|
|
|
VAbstractTool::NewSceneRect(this->scene(), list[0]);
|
2014-01-14 23:08:34 +01:00
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
//I don't now why but signal does not work.
|
|
|
|
doc->FullUpdateTree();
|
2014-02-07 17:44:12 +01:00
|
|
|
emit toolhaveChange();
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
}
|
2013-08-13 18:48:36 +02:00
|
|
|
return QGraphicsItem::itemChange(change, value);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::decrementReferens()
|
|
|
|
{
|
|
|
|
if (_referens > 1)
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
--_referens;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolSinglePoint::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogSinglePoint *dialogTool = qobject_cast<DialogSinglePoint*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
|
|
|
QPointF p = dialogTool->getPoint();
|
|
|
|
QString name = dialogTool->getName();
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrName, name);
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrX, QString().setNum(qApp->fromPixel(p.x())));
|
|
|
|
doc->SetAttribute(domElement, AttrY, QString().setNum(qApp->fromPixel(p.y())));
|
2014-02-06 14:57:23 +01:00
|
|
|
}
|
|
|
|
|
2014-01-07 13:54:50 +01:00
|
|
|
void VToolSinglePoint::setColorLabel(const Qt::GlobalColor &color)
|
|
|
|
{
|
|
|
|
namePoint->setBrush(color);
|
2014-03-19 19:27:11 +01:00
|
|
|
lineName->setPen(QPen(color, qApp->toPixel(widthHairLine)/factor));
|
2014-01-07 13:54:50 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::contextMenuEvent ( QGraphicsSceneContextMenuEvent * event )
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogSinglePoint>(this, event, false);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::FullUpdateFromFile()
|
|
|
|
{
|
2013-12-30 12:28:33 +01:00
|
|
|
VPointF point = *VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
|
|
|
RefreshPointGeometry(point);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2013-11-06 22:11:12 +01:00
|
|
|
void VToolSinglePoint::ChangedActivDraw(const QString &newName)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
if (nameActivDraw == newName)
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
VToolPoint::ChangedActivDraw(newName);
|
2014-01-07 13:54:50 +01:00
|
|
|
setColorLabel(Qt::black);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, false);
|
|
|
|
VToolPoint::ChangedActivDraw(newName);
|
2014-01-07 13:54:50 +01:00
|
|
|
setColorLabel(Qt::gray);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2013-10-16 11:17:34 +02:00
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::SetFactor(qreal factor)
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
VDrawTool::SetFactor(factor);
|
2013-12-30 12:28:33 +01:00
|
|
|
RefreshPointGeometry(*(VAbstractTool::data.GeometricObject<const VPointF *>(id)));
|
2013-10-16 11:17:34 +02:00
|
|
|
}
|
2014-01-09 13:51:09 +01:00
|
|
|
|
|
|
|
void VToolSinglePoint::ShowContextMenu(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogSinglePoint>(this, event, false);
|
2014-01-09 13:51:09 +01:00
|
|
|
}
|