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
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)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"
|
2014-07-14 20:16:00 +02:00
|
|
|
#include "../../visualization/vgraphicssimpletextitem.h"
|
2014-06-09 19:39:18 +02:00
|
|
|
#include "../../undocommands/movespoint.h"
|
|
|
|
#include "../../undocommands/addpatternpiece.h"
|
2014-06-14 15:10:16 +02:00
|
|
|
#include "../../undocommands/deletepatternpiece.h"
|
2014-06-08 20:10:57 +02:00
|
|
|
#include "../../geometry/vpointf.h"
|
2014-08-27 09:31:58 +02:00
|
|
|
#include "../../undocommands/savetooloptions.h"
|
2014-06-06 17:06:41 +02:00
|
|
|
|
2014-06-15 10:04:49 +02:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolSinglePoint::ToolType = QStringLiteral("single");
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VToolSinglePoint constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2014-06-12 09:22:29 +02:00
|
|
|
VToolSinglePoint::VToolSinglePoint (VPattern *doc, VContainer *data, quint32 id, const Source &typeCreation,
|
2014-06-06 17:06:41 +02:00
|
|
|
const QString &namePP, const QString &mPath, QGraphicsItem * parent )
|
|
|
|
:VToolPoint(doc, data, id, parent), namePP(namePP), mPath(mPath)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-01-07 13:54:50 +01:00
|
|
|
baseColor = Qt::red;
|
|
|
|
currentColor = baseColor;
|
2014-03-28 14:11:46 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor));
|
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-06-12 09:22:29 +02:00
|
|
|
if (typeCreation == Source::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
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief setDialog set dialog when user want change tool option.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::setDialog()
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogSinglePoint *dialogTool = qobject_cast<DialogSinglePoint*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> p = VAbstractTool::data.GeometricObject<VPointF>(id);
|
2014-02-06 14:57:23 +01:00
|
|
|
dialogTool->setData(p->name(), p->toQPointF());
|
2013-08-15 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
2014-08-26 20:31:28 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolSinglePoint::setName(const QString &name)
|
|
|
|
{
|
2014-08-27 09:31:58 +02:00
|
|
|
QDomElement oldDomElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (oldDomElement.isElement())
|
|
|
|
{
|
|
|
|
QDomElement newDomElement = oldDomElement.cloneNode().toElement();
|
|
|
|
|
|
|
|
VPointF newPoint = VPointF(*VAbstractTool::data.GeometricObject<VPointF>(id).data());
|
|
|
|
newPoint.setName(name);
|
|
|
|
SaveOptions(newDomElement, newPoint);
|
2014-08-26 20:31:28 +02:00
|
|
|
|
2014-08-27 09:31:58 +02:00
|
|
|
SaveToolOptions *saveOptions = new SaveToolOptions(oldDomElement, newDomElement, doc, id);
|
|
|
|
connect(saveOptions, &SaveToolOptions::NeedLiteParsing, doc, &VPattern::LiteParseTree);
|
|
|
|
qApp->getUndoStack()->push(saveOptions);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug()<<"Can't find tool with id ="<< id << Q_FUNC_INFO;
|
|
|
|
}
|
2014-08-26 20:31:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VToolSinglePoint::type() const
|
|
|
|
{
|
|
|
|
return Type;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief AddToFile add tag with informations about tool into file.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::AddToFile()
|
|
|
|
{
|
2014-06-06 17:06:41 +02:00
|
|
|
Q_ASSERT_X(namePP.isEmpty() == false, "AddToFile", "name pattern piece is empty");
|
|
|
|
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> point = VAbstractTool::data.GeometricObject<VPointF>(id);
|
2014-06-06 17:06:41 +02:00
|
|
|
QDomElement sPoint = doc->createElement(TagName);
|
|
|
|
|
|
|
|
// Create SPoint tag
|
2014-08-27 09:31:58 +02:00
|
|
|
SaveOptions(sPoint, *point.data());
|
2014-06-06 17:06:41 +02:00
|
|
|
|
|
|
|
//Create pattern piece structure
|
|
|
|
QDomElement patternPiece = doc->createElement(VPattern::TagDraw);
|
|
|
|
doc->SetAttribute(patternPiece, AttrName, namePP);
|
|
|
|
|
|
|
|
QDomElement calcElement = doc->createElement(VPattern::TagCalculation);
|
|
|
|
calcElement.appendChild(sPoint);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2014-06-06 17:06:41 +02:00
|
|
|
patternPiece.appendChild(calcElement);
|
|
|
|
patternPiece.appendChild(doc->createElement(VPattern::TagModeling));
|
|
|
|
patternPiece.appendChild(doc->createElement(VPattern::TagDetails));
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2014-06-06 17:06:41 +02:00
|
|
|
AddPatternPiece *addPP = new AddPatternPiece(patternPiece, doc, namePP, mPath);
|
|
|
|
connect(addPP, &AddPatternPiece::ClearScene, doc, &VPattern::ClearScene);
|
|
|
|
connect(addPP, &AddPatternPiece::NeedFullParsing, doc, &VPattern::NeedFullParsing);
|
|
|
|
qApp->getUndoStack()->push(addPP);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief RefreshDataInFile refresh attributes in file. If attributes don't exist create them.
|
|
|
|
*/
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolSinglePoint::RefreshDataInFile()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> point = VAbstractTool::data.GeometricObject<VPointF>(id);
|
2013-12-24 12:24:29 +01:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-08-27 09:31:58 +02:00
|
|
|
SaveOptions(domElement, *point.data());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug()<<"Can't find tool with id ="<< id << Q_FUNC_INFO;
|
2013-12-24 12:24:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief itemChange handle tool change.
|
|
|
|
* @param change change.
|
|
|
|
* @param value value.
|
|
|
|
* @return value.
|
|
|
|
*/
|
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();
|
2014-01-11 18:08:40 +01:00
|
|
|
|
2014-06-09 15:13:15 +02:00
|
|
|
MoveSPoint *moveSP = new MoveSPoint(doc, newPos.x(), newPos.y(), id, this->scene());
|
|
|
|
connect(moveSP, &MoveSPoint::NeedLiteParsing, doc, &VPattern::LiteParseTree);
|
|
|
|
qApp->getUndoStack()->push(moveSP);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
2013-08-13 18:48:36 +02:00
|
|
|
return QGraphicsItem::itemChange(change, value);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief decrementReferens decrement referens parents objects.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::decrementReferens()
|
|
|
|
{
|
|
|
|
if (_referens > 1)
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
--_referens;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-14 15:10:16 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-16 14:14:46 +02:00
|
|
|
void VToolSinglePoint::DeleteTool(bool ask)
|
2014-06-14 15:10:16 +02:00
|
|
|
{
|
2014-06-15 19:07:54 +02:00
|
|
|
if (ask)
|
2014-06-15 10:04:49 +02:00
|
|
|
{
|
2014-06-26 12:41:59 +02:00
|
|
|
if (ConfirmDeletion() == QMessageBox::Cancel)
|
2014-06-15 19:07:54 +02:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-06-15 10:04:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DeletePatternPiece *deletePP = new DeletePatternPiece(doc, nameActivDraw);
|
2014-06-14 15:10:16 +02:00
|
|
|
connect(deletePP, &DeletePatternPiece::NeedFullParsing, doc, &VPattern::NeedFullParsing);
|
|
|
|
qApp->getUndoStack()->push(deletePP);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief SaveDialog save options into file after change in dialog.
|
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
void VToolSinglePoint::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialog != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
DialogSinglePoint *dialogTool = qobject_cast<DialogSinglePoint*>(dialog);
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(dialogTool != nullptr);
|
2014-02-06 14:57:23 +01:00
|
|
|
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-08-19 13:16:00 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolSinglePoint::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
|
|
|
VToolPoint::hoverEnterEvent(event);
|
|
|
|
|
|
|
|
#ifndef QT_NO_CURSOR
|
|
|
|
QPixmap pixmap(QLatin1String("://cursor/cursor-arrow-openhand.png"));
|
|
|
|
QApplication::setOverrideCursor(QCursor(pixmap, 1, 1));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolSinglePoint::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
|
|
|
VToolPoint::hoverLeaveEvent(event);
|
|
|
|
|
|
|
|
//Disable cursor-arrow-openhand
|
|
|
|
#ifndef QT_NO_CURSOR
|
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolSinglePoint::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
{
|
|
|
|
#ifndef QT_NO_CURSOR
|
|
|
|
QPixmap pixmap(QLatin1String("://cursor/cursor-arrow-closehand.png"));
|
|
|
|
QApplication::setOverrideCursor(QCursor(pixmap, 1, 1));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
VToolPoint::mousePressEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolSinglePoint::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
{
|
|
|
|
//Disable cursor-arrow-closehand
|
|
|
|
#ifndef QT_NO_CURSOR
|
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
VToolPoint::mouseReleaseEvent(event);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief setColorLabel change color for label and label line.
|
|
|
|
* @param color new color.
|
|
|
|
*/
|
2014-01-07 13:54:50 +01:00
|
|
|
void VToolSinglePoint::setColorLabel(const Qt::GlobalColor &color)
|
|
|
|
{
|
|
|
|
namePoint->setBrush(color);
|
2014-03-26 05:39:07 +01:00
|
|
|
lineName->setPen(QPen(color, qApp->toPixel(qApp->widthHairLine())/factor));
|
2014-01-07 13:54:50 +01:00
|
|
|
}
|
|
|
|
|
2014-08-27 09:31:58 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VToolSinglePoint::SaveOptions(QDomElement &tag, const VPointF &point)
|
|
|
|
{
|
|
|
|
doc->SetAttribute(tag, VDomDocument::AttrId, id);
|
|
|
|
doc->SetAttribute(tag, AttrType, ToolType);
|
|
|
|
doc->SetAttribute(tag, AttrName, point.name());
|
|
|
|
doc->SetAttribute(tag, AttrX, qApp->fromPixel(point.x()));
|
|
|
|
doc->SetAttribute(tag, AttrY, qApp->fromPixel(point.y()));
|
|
|
|
doc->SetAttribute(tag, AttrMx, qApp->fromPixel(point.mx()));
|
|
|
|
doc->SetAttribute(tag, AttrMy, qApp->fromPixel(point.my()));
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief contextMenuEvent handle context menu events.
|
|
|
|
* @param event context menu event.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::contextMenuEvent ( QGraphicsSceneContextMenuEvent * event )
|
|
|
|
{
|
2014-08-19 13:16:00 +02:00
|
|
|
#ifndef QT_NO_CURSOR
|
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
#endif
|
|
|
|
|
2014-06-24 10:23:39 +02:00
|
|
|
quint32 ref = _referens; // store referens
|
|
|
|
_referens = 1; // make available delete pattern piece
|
2014-06-15 10:04:49 +02:00
|
|
|
if (doc->CountPP() > 1)
|
|
|
|
{
|
|
|
|
ContextMenu<DialogSinglePoint>(this, event);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ContextMenu<DialogSinglePoint>(this, event, false);
|
|
|
|
}
|
2014-06-24 10:23:39 +02:00
|
|
|
_referens = ref; // restore referens. If not restore garbage collector delete point!!!
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief FullUpdateFromFile update tool data form file.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::FullUpdateFromFile()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
VPointF point = *VAbstractTool::data.GeometricObject<VPointF>(id);
|
2013-12-30 12:28:33 +01:00
|
|
|
RefreshPointGeometry(point);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief ChangedActivDraw disable or enable context menu after change active pattern peace.
|
|
|
|
* @param newName new name active pattern peace.
|
|
|
|
*/
|
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
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief SetFactor set current scale factor of scene.
|
|
|
|
* @param factor scene scale factor.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolSinglePoint::SetFactor(qreal factor)
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
VDrawTool::SetFactor(factor);
|
2014-08-21 14:44:40 +02:00
|
|
|
RefreshPointGeometry(*(VAbstractTool::data.GeometricObject<VPointF>(id)));
|
2013-10-16 11:17:34 +02:00
|
|
|
}
|
2014-01-09 13:51:09 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief ShowContextMenu show context menu.
|
|
|
|
* @param event context menu event.
|
|
|
|
*/
|
2014-01-09 13:51:09 +01:00
|
|
|
void VToolSinglePoint::ShowContextMenu(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-06-15 10:04:49 +02:00
|
|
|
if (doc->CountPP() > 1)
|
|
|
|
{
|
|
|
|
ContextMenu<DialogSinglePoint>(this, event);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ContextMenu<DialogSinglePoint>(this, event, false);
|
|
|
|
}
|
2014-01-09 13:51:09 +01:00
|
|
|
}
|