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 vabstracttool.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.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <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-07-25 20:39:51 +02:00
|
|
|
#include "vabstracttool.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
|
|
|
#include <QBrush>
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
#include <QFlags>
|
|
|
|
#include <QGraphicsEllipseItem>
|
|
|
|
#include <QGraphicsLineItem>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QLineF>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QPen>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QPointF>
|
|
|
|
#include <QRectF>
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <QStaticStringData>
|
|
|
|
#include <QStringData>
|
|
|
|
#include <QStringDataPtr>
|
|
|
|
#include <QStyle>
|
|
|
|
#include <QUndoStack>
|
|
|
|
#include <QVector>
|
|
|
|
#include <new>
|
2017-01-21 14:24:40 +01:00
|
|
|
#include <qnumeric.h>
|
2016-08-08 13:44:49 +02:00
|
|
|
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vgeometry/vpointf.h"
|
|
|
|
#include "../vpropertyexplorer/checkablemessagebox.h"
|
|
|
|
#include "../vwidgets/vmaingraphicsview.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../ifc/exception/vexception.h"
|
2017-01-21 14:24:40 +01:00
|
|
|
#include "../ifc/exception/vexceptionundo.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../ifc/xml/vtoolrecord.h"
|
2015-06-18 19:23:24 +02:00
|
|
|
#include "../undocommands/deltool.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vgeometry/../ifc/ifcdef.h"
|
|
|
|
#include "../vgeometry/vgeometrydef.h"
|
|
|
|
#include "../vgeometry/vgobject.h"
|
2017-01-18 09:17:18 +01:00
|
|
|
#include "../vgeometry/vcubicbezier.h"
|
|
|
|
#include "../vgeometry/vcubicbezierpath.h"
|
|
|
|
#include "../vgeometry/vsplinepath.h"
|
|
|
|
#include "../vgeometry/varc.h"
|
|
|
|
#include "../vgeometry/vellipticalarc.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vmisc/vcommonsettings.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vmisc/logging.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vpatterndb/vcontainer.h"
|
2016-11-28 10:58:44 +01:00
|
|
|
#include "../vpatterndb/vpiecenode.h"
|
2017-01-21 14:24:40 +01:00
|
|
|
#include "../vpatterndb/calculator.h"
|
2015-12-11 15:20:32 +01:00
|
|
|
#include "../vwidgets/vgraphicssimpletextitem.h"
|
2017-01-18 09:17:18 +01:00
|
|
|
#include "nodeDetails/nodedetails.h"
|
2017-01-21 14:24:40 +01:00
|
|
|
#include "../dialogs/support/dialogundo.h"
|
|
|
|
#include "../dialogs/support/dialogeditwrongformula.h"
|
2015-06-18 19:23:24 +02:00
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
template <class T> class QSharedPointer;
|
2013-07-25 20:39:51 +02:00
|
|
|
|
2015-12-26 18:10:02 +01:00
|
|
|
const QString VAbstractTool::AttrInUse = QStringLiteral("inUse");
|
|
|
|
|
2017-01-18 09:17:18 +01:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
quint32 CreateNodeSpline(VContainer *data, quint32 id)
|
|
|
|
{
|
|
|
|
if (data->GetGObject(id)->getType() == GOType::Spline)
|
|
|
|
{
|
2017-01-31 15:04:51 +01:00
|
|
|
return VAbstractTool::CreateNode<VSpline>(data, id);
|
2017-01-18 09:17:18 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-31 15:04:51 +01:00
|
|
|
return VAbstractTool::CreateNode<VCubicBezier>(data, id);
|
2017-01-18 09:17:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
quint32 CreateNodeSplinePath(VContainer *data, quint32 id)
|
|
|
|
{
|
|
|
|
if (data->GetGObject(id)->getType() == GOType::SplinePath)
|
|
|
|
{
|
2017-01-31 15:04:51 +01:00
|
|
|
return VAbstractTool::CreateNode<VSplinePath>(data, id);
|
2017-01-18 09:17:18 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-31 15:04:51 +01:00
|
|
|
return VAbstractTool::CreateNode<VCubicBezierPath>(data, id);
|
2017-01-18 09:17:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}//static functions
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VAbstractTool container.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with data.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2015-06-16 17:01:17 +02:00
|
|
|
VAbstractTool::VAbstractTool(VAbstractPattern *doc, VContainer *data, quint32 id, QObject *parent)
|
2016-09-24 15:09:09 +02:00
|
|
|
:VDataTool(data, parent), doc(doc), id(id), baseColor(Qt::black), vis(),
|
2016-03-31 19:10:20 +02:00
|
|
|
selectionType(SelectionType::ByMouseRelease)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2016-12-20 19:57:20 +01:00
|
|
|
SCASSERT(doc != nullptr)
|
2015-06-16 17:01:17 +02:00
|
|
|
connect(this, &VAbstractTool::toolhaveChange, this->doc, &VAbstractPattern::haveLiteChange);
|
|
|
|
connect(this->doc, &VAbstractPattern::FullUpdateFromFile, this, &VAbstractTool::FullUpdateFromFile);
|
|
|
|
connect(this, &VAbstractTool::LiteUpdateTree, this->doc, &VAbstractPattern::LiteParseTree);
|
2013-08-15 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
2014-09-03 15:52:16 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VAbstractTool::~VAbstractTool()
|
2016-09-24 15:09:09 +02:00
|
|
|
{
|
|
|
|
if (not vis.isNull())
|
|
|
|
{
|
|
|
|
delete vis;
|
|
|
|
}
|
|
|
|
}
|
2014-09-03 15:52:16 +02:00
|
|
|
|
2017-01-21 14:24:40 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief CheckFormula check formula.
|
|
|
|
*
|
|
|
|
* Try calculate formula. If find error show dialog that allow user try fix formula. If user can't throw exception. In
|
|
|
|
* successes case return result calculation and fixed formula string. If formula ok don't touch formula.
|
|
|
|
*
|
|
|
|
* @param toolId [in] tool's id.
|
|
|
|
* @param formula [in|out] string with formula.
|
|
|
|
* @param data [in] container with variables. Need for math parser.
|
|
|
|
* @throw QmuParserError.
|
|
|
|
* @return result of calculation formula.
|
|
|
|
*/
|
|
|
|
qreal VAbstractTool::CheckFormula(const quint32 &toolId, QString &formula, VContainer *data)
|
|
|
|
{
|
|
|
|
SCASSERT(data != nullptr)
|
|
|
|
qreal result = 0;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
QScopedPointer<Calculator> cal(new Calculator());
|
|
|
|
result = cal->EvalFormula(data->PlainVariables(), formula);
|
|
|
|
|
|
|
|
if (qIsInf(result) || qIsNaN(result))
|
|
|
|
{
|
|
|
|
qDebug() << "Invalid the formula value";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (qmu::QmuParserError &e)
|
|
|
|
{
|
|
|
|
qDebug() << "\nMath parser error:\n"
|
|
|
|
<< "--------------------------------------\n"
|
|
|
|
<< "Message: " << e.GetMsg() << "\n"
|
|
|
|
<< "Expression: " << e.GetExpr() << "\n"
|
|
|
|
<< "--------------------------------------";
|
|
|
|
|
|
|
|
if (qApp->IsAppInGUIMode())
|
|
|
|
{
|
|
|
|
QScopedPointer<DialogUndo> dialogUndo(new DialogUndo(qApp->getMainWindow()));
|
|
|
|
forever
|
|
|
|
{
|
|
|
|
if (dialogUndo->exec() == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
const UndoButton resultUndo = dialogUndo->Result();
|
|
|
|
if (resultUndo == UndoButton::Fix)
|
|
|
|
{
|
|
|
|
auto *dialog = new DialogEditWrongFormula(data, toolId, qApp->getMainWindow());
|
|
|
|
dialog->setWindowTitle(tr("Edit wrong formula"));
|
|
|
|
dialog->SetFormula(formula);
|
|
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
formula = dialog->GetFormula();
|
|
|
|
/* Need delete dialog here because parser in dialog don't allow use correct separator for
|
|
|
|
* parsing here. */
|
|
|
|
delete dialog;
|
|
|
|
QScopedPointer<Calculator> cal1(new Calculator());
|
|
|
|
result = cal1->EvalFormula(data->PlainVariables(), formula);
|
|
|
|
|
|
|
|
if (qIsInf(result) || qIsNaN(result))
|
|
|
|
{
|
|
|
|
qDebug() << "Invalid the formula value";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delete dialog;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw VExceptionUndo(QString("Undo wrong formula %1").arg(formula));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief DeleteTool full delete object form scene and file.
|
|
|
|
*/
|
2014-06-16 14:14:46 +02:00
|
|
|
void VAbstractTool::DeleteTool(bool ask)
|
2014-01-03 16:13:43 +01:00
|
|
|
{
|
2015-11-03 16:11:35 +01:00
|
|
|
qCDebug(vTool, "Deleting abstract tool.");
|
2014-09-26 19:09:20 +02:00
|
|
|
if (_referens <= 1)
|
2014-01-03 16:13:43 +01:00
|
|
|
{
|
2015-11-03 16:11:35 +01:00
|
|
|
qCDebug(vTool, "No children.");
|
2014-09-26 19:09:20 +02:00
|
|
|
qApp->getSceneView()->itemClicked(nullptr);
|
|
|
|
if (ask)
|
2014-06-15 19:07:54 +02:00
|
|
|
{
|
2015-11-03 16:11:35 +01:00
|
|
|
qCDebug(vTool, "Asking.");
|
2015-02-25 23:27:09 +01:00
|
|
|
if (ConfirmDeletion() == QMessageBox::No)
|
2014-09-26 19:09:20 +02:00
|
|
|
{
|
2015-11-03 16:11:35 +01:00
|
|
|
qCDebug(vTool, "User said no.");
|
2014-09-26 19:09:20 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-06-15 19:07:54 +02:00
|
|
|
}
|
2015-11-03 16:11:35 +01:00
|
|
|
|
|
|
|
qCDebug(vTool, "Begin deleting.");
|
2014-09-26 19:09:20 +02:00
|
|
|
DelTool *delTool = new DelTool(doc, id);
|
2016-07-19 19:50:42 +02:00
|
|
|
connect(delTool, &DelTool::NeedFullParsing, doc, &VAbstractPattern::NeedFullParsing);
|
2014-09-26 19:09:20 +02:00
|
|
|
qApp->getUndoStack()->push(delTool);
|
2015-11-02 17:25:29 +01:00
|
|
|
|
|
|
|
// Throw exception, this will help prevent case when we forget to immediately quit function.
|
|
|
|
VExceptionToolWasDeleted e("Tool was used after deleting.");
|
|
|
|
throw e;
|
2014-01-03 16:13:43 +01:00
|
|
|
}
|
2015-11-03 16:11:35 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
qCDebug(vTool, "Can't delete, tool has children.");
|
|
|
|
}
|
2014-01-03 16:13:43 +01:00
|
|
|
}
|
|
|
|
|
2015-02-25 23:27:09 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VAbstractTool::ConfirmDeletion()
|
|
|
|
{
|
2015-06-18 10:49:25 +02:00
|
|
|
if (false == qApp->Settings()->GetConfirmItemDelete())
|
2015-02-26 22:34:33 +01:00
|
|
|
{
|
2015-02-25 23:27:09 +01:00
|
|
|
return QMessageBox::Yes;
|
2015-02-26 22:34:33 +01:00
|
|
|
}
|
2015-02-25 23:27:09 +01:00
|
|
|
|
|
|
|
Utils::CheckableMessageBox msgBox(qApp->getMainWindow());
|
|
|
|
msgBox.setWindowTitle(tr("Confirm deletion"));
|
|
|
|
msgBox.setText(tr("Do you really want to delete?"));
|
|
|
|
msgBox.setStandardButtons(QDialogButtonBox::Yes | QDialogButtonBox::No);
|
|
|
|
msgBox.setDefaultButton(QDialogButtonBox::No);
|
2015-03-02 18:11:43 +01:00
|
|
|
msgBox.setIconPixmap(qApp->style()->standardIcon(QStyle::SP_MessageBoxQuestion).pixmap(32, 32) );
|
2015-02-25 23:27:09 +01:00
|
|
|
|
|
|
|
int dialogResult = msgBox.exec();
|
|
|
|
|
|
|
|
if (dialogResult == QDialog::Accepted)
|
2015-02-26 22:34:33 +01:00
|
|
|
{
|
2015-06-18 10:49:25 +02:00
|
|
|
qApp->Settings()->SetConfirmItemDelete(not msgBox.isChecked());
|
2015-02-26 22:34:33 +01:00
|
|
|
}
|
2015-02-25 23:27:09 +01:00
|
|
|
|
|
|
|
return dialogResult == QDialog::Accepted ? QMessageBox::Yes : QMessageBox::No;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief LineStyle return pen style for current line style.
|
|
|
|
* @return pen style.
|
|
|
|
*/
|
2015-01-29 16:47:02 +01:00
|
|
|
Qt::PenStyle VAbstractTool::LineStyleToPenStyle(const QString &typeLine)
|
2014-01-29 13:47:43 +01:00
|
|
|
{
|
2015-01-29 16:47:02 +01:00
|
|
|
const QStringList styles = StylesList();
|
2014-02-26 10:51:37 +01:00
|
|
|
switch (styles.indexOf(typeLine))
|
2014-01-29 13:47:43 +01:00
|
|
|
{
|
2014-02-26 10:51:37 +01:00
|
|
|
case 0: // TypeLineNone
|
2014-01-29 13:47:43 +01:00
|
|
|
return Qt::NoPen;
|
2014-02-26 10:51:37 +01:00
|
|
|
case 2: // TypeLineDashLine
|
2014-01-29 13:47:43 +01:00
|
|
|
return Qt::DashLine;
|
2014-02-26 10:51:37 +01:00
|
|
|
case 3: // TypeLineDotLine
|
2014-01-29 13:47:43 +01:00
|
|
|
return Qt::DotLine;
|
2014-02-26 10:51:37 +01:00
|
|
|
case 4: // TypeLineDashDotLine
|
2014-01-29 13:47:43 +01:00
|
|
|
return Qt::DashDotLine;
|
2014-02-26 10:51:37 +01:00
|
|
|
case 5: // TypeLineDashDotDotLine
|
2014-01-29 13:47:43 +01:00
|
|
|
return Qt::DashDotDotLine;
|
2016-12-21 20:35:07 +01:00
|
|
|
case 1: // TypeLineLine
|
2014-01-29 13:47:43 +01:00
|
|
|
default:
|
|
|
|
return Qt::SolidLine;
|
|
|
|
}
|
|
|
|
}
|
2014-08-30 21:58:31 +02:00
|
|
|
|
2016-12-03 17:01:39 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VAbstractTool::PenStyleToLineStyle(Qt::PenStyle penStyle)
|
|
|
|
{
|
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Wswitch-default")
|
|
|
|
|
|
|
|
switch (penStyle)
|
|
|
|
{
|
|
|
|
case Qt::NoPen:
|
|
|
|
return TypeLineNone;
|
|
|
|
case Qt::DashLine:
|
|
|
|
return TypeLineDashLine;
|
|
|
|
case Qt::DotLine:
|
|
|
|
return TypeLineDotLine;
|
|
|
|
case Qt::DashDotLine:
|
|
|
|
return TypeLineDashDotLine;
|
|
|
|
case Qt::DashDotDotLine:
|
|
|
|
return TypeLineDashDotDotLine;
|
|
|
|
case Qt::SolidLine:
|
|
|
|
case Qt::CustomDashLine:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
QT_WARNING_POP
|
|
|
|
|
|
|
|
return TypeLineLine;
|
|
|
|
}
|
|
|
|
|
2015-01-29 16:47:02 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QMap<QString, QIcon> VAbstractTool::LineStylesPics()
|
|
|
|
{
|
|
|
|
QMap<QString, QIcon> map;
|
|
|
|
const QStringList styles = StylesList();
|
|
|
|
|
|
|
|
for (int i=0; i < styles.size(); ++i)
|
|
|
|
{
|
|
|
|
const Qt::PenStyle style = LineStyleToPenStyle(styles.at(i));
|
|
|
|
QPixmap pix(80, 14);
|
|
|
|
pix.fill(Qt::white);
|
|
|
|
|
|
|
|
QBrush brush(Qt::black);
|
|
|
|
QPen pen(brush, 2.5, style);
|
|
|
|
|
|
|
|
QPainter painter(&pix);
|
|
|
|
painter.setPen(pen);
|
|
|
|
painter.drawLine(2, 7, 78, 7);
|
|
|
|
|
|
|
|
map.insert(styles.at(i), QIcon(pix));
|
|
|
|
}
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2015-02-02 10:29:50 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
const QStringList VAbstractTool::Colors()
|
|
|
|
{
|
2016-10-16 19:23:40 +02:00
|
|
|
const QStringList colors = QStringList() << ColorBlack << ColorGreen << ColorBlue
|
|
|
|
<< ColorDarkRed << ColorDarkGreen << ColorDarkBlue
|
|
|
|
<< ColorYellow << ColorLightSalmon << ColorGoldenRod
|
|
|
|
<< ColorOrange << ColorDeepPink << ColorViolet
|
|
|
|
<< ColorDarkViolet << ColorMediumSeaGreen << ColorLime
|
|
|
|
<< ColorDeepSkyBlue << ColorCornFlowerBlue;
|
2015-02-02 10:29:50 +01:00
|
|
|
return colors;
|
|
|
|
}
|
|
|
|
|
2015-02-07 13:31:10 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QMap<QString, QString> VAbstractTool::ColorsList()
|
|
|
|
{
|
|
|
|
QMap<QString, QString> map;
|
|
|
|
|
|
|
|
const QStringList colorNames = Colors();
|
|
|
|
for (int i = 0; i < colorNames.size(); ++i)
|
|
|
|
{
|
|
|
|
QString name;
|
|
|
|
switch (i)
|
|
|
|
{
|
|
|
|
case 1: // ColorGreen
|
|
|
|
name = tr("green");
|
|
|
|
break;
|
|
|
|
case 2: // ColorBlue
|
|
|
|
name = tr("blue");
|
|
|
|
break;
|
|
|
|
case 3: // ColorDarkRed
|
|
|
|
name = tr("dark red");
|
|
|
|
break;
|
|
|
|
case 4: // ColorDarkGreen
|
|
|
|
name = tr("dark green");
|
|
|
|
break;
|
|
|
|
case 5: // ColorDarkBlue
|
|
|
|
name = tr("dark blue");
|
|
|
|
break;
|
|
|
|
case 6: // ColorYellow
|
|
|
|
name = tr("yellow");
|
|
|
|
break;
|
2016-10-16 19:23:40 +02:00
|
|
|
case 7: // ColorLightSalmon
|
|
|
|
name = tr("light salmon");
|
|
|
|
break;
|
|
|
|
case 8: // ColorGoldenRod
|
|
|
|
name = tr("golden rod");
|
|
|
|
break;
|
|
|
|
case 9: // ColorOrange
|
|
|
|
name = tr("orange");
|
|
|
|
break;
|
|
|
|
case 10: // ColorDeepPink
|
|
|
|
name = tr("deep pink");
|
|
|
|
break;
|
|
|
|
case 11: // ColorViolet
|
|
|
|
name = tr("violet");
|
|
|
|
break;
|
|
|
|
case 12: // ColorDarkViolet
|
|
|
|
name = tr("dark violet");
|
|
|
|
break;
|
|
|
|
case 13: // ColorMediumSeaGreen
|
|
|
|
name = tr("medium sea green");
|
|
|
|
break;
|
|
|
|
case 14: // ColorLime
|
|
|
|
name = tr("lime");
|
|
|
|
break;
|
|
|
|
case 15: // ColorDeepSkyBlue
|
|
|
|
name = tr("deep sky blue");
|
|
|
|
break;
|
|
|
|
case 16: // ColorCornFlowerBlue
|
|
|
|
name = tr("corn flower blue");
|
|
|
|
break;
|
2016-12-21 20:35:07 +01:00
|
|
|
case 0: // ColorBlack
|
2015-02-07 13:31:10 +01:00
|
|
|
default:
|
|
|
|
name = tr("black");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
map.insert(colorNames.at(i), name);
|
|
|
|
}
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2014-08-30 21:58:31 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-04-15 14:44:57 +02:00
|
|
|
// cppcheck-suppress unusedFunction
|
2014-08-28 13:05:58 +02:00
|
|
|
QMap<QString, quint32> VAbstractTool::PointsList() const
|
|
|
|
{
|
|
|
|
const QHash<quint32, QSharedPointer<VGObject> > *objs = data.DataGObjects();
|
|
|
|
QMap<QString, quint32> list;
|
|
|
|
QHash<quint32, QSharedPointer<VGObject> >::const_iterator i;
|
|
|
|
for (i = objs->constBegin(); i != objs->constEnd(); ++i)
|
|
|
|
{
|
|
|
|
if (i.key() != id)
|
|
|
|
{
|
|
|
|
QSharedPointer<VGObject> obj = i.value();
|
|
|
|
if (obj->getType() == GOType::Point && obj->getMode() == Draw::Calculation)
|
|
|
|
{
|
|
|
|
const QSharedPointer<VPointF> point = data.GeometricObject<VPointF>(i.key());
|
|
|
|
list[point->name()] = i.key();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2015-05-28 12:16:59 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-03-31 19:10:20 +02:00
|
|
|
void VAbstractTool::ToolSelectionType(const SelectionType &type)
|
|
|
|
{
|
|
|
|
selectionType = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-05-28 12:16:59 +02:00
|
|
|
void VAbstractTool::ToolCreation(const Source &typeCreation)
|
|
|
|
{
|
|
|
|
if (typeCreation == Source::FromGui)
|
|
|
|
{
|
|
|
|
AddToFile();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief Styles return list of all line styles.
|
|
|
|
* @return list of all line styles.
|
|
|
|
*/
|
2015-01-29 16:47:02 +01:00
|
|
|
const QStringList VAbstractTool::StylesList()
|
2014-01-29 13:47:43 +01:00
|
|
|
{
|
2015-08-11 15:41:03 +02:00
|
|
|
const QStringList styles = QStringList() << TypeLineNone << TypeLineLine << TypeLineDashLine
|
|
|
|
<< TypeLineDotLine << TypeLineDashDotLine
|
|
|
|
<< TypeLineDashDotDotLine;
|
2014-01-29 13:47:43 +01:00
|
|
|
return styles;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief AddRecord add record about tool in history.
|
|
|
|
* @param id object id in container
|
|
|
|
* @param toolType tool type
|
|
|
|
* @param doc dom document container
|
|
|
|
*/
|
2015-06-16 17:01:17 +02:00
|
|
|
void VAbstractTool::AddRecord(const quint32 id, const Tool &toolType, VAbstractPattern *doc)
|
2014-01-02 16:50:01 +01:00
|
|
|
{
|
|
|
|
QVector<VToolRecord> *history = doc->getHistory();
|
2014-07-29 17:23:18 +02:00
|
|
|
VToolRecord record = VToolRecord(id, toolType, doc->GetNameActivPP());
|
|
|
|
if (history->contains(record))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
quint32 cursor = doc->getCursor();
|
2016-08-02 14:12:13 +02:00
|
|
|
if (cursor == NULL_ID)
|
2014-01-02 16:50:01 +01:00
|
|
|
{
|
2014-07-29 17:23:18 +02:00
|
|
|
history->append(record);
|
2014-01-02 16:50:01 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qint32 index = 0;
|
|
|
|
for (qint32 i = 0; i<history->size(); ++i)
|
|
|
|
{
|
|
|
|
VToolRecord rec = history->at(i);
|
|
|
|
if (rec.getId() == cursor)
|
|
|
|
{
|
|
|
|
index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-07-29 17:23:18 +02:00
|
|
|
history->insert(index+1, record);
|
2014-01-02 16:50:01 +01:00
|
|
|
}
|
|
|
|
}
|
2015-12-11 10:31:21 +01:00
|
|
|
|
2017-01-16 16:37:15 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractTool::AddNodes(VAbstractPattern *doc, QDomElement &domElement, const VPiecePath &path)
|
|
|
|
{
|
|
|
|
if (path.CountNodes() > 0)
|
|
|
|
{
|
|
|
|
QDomElement nodesElement = doc->createElement(VAbstractPattern::TagNodes);
|
|
|
|
for (int i = 0; i < path.CountNodes(); ++i)
|
|
|
|
{
|
|
|
|
AddNode(doc, nodesElement, path.at(i));
|
|
|
|
}
|
|
|
|
domElement.appendChild(nodesElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractTool::AddNodes(VAbstractPattern *doc, QDomElement &domElement, const VPiece &piece)
|
|
|
|
{
|
|
|
|
AddNodes(doc, domElement, piece.GetPath());
|
|
|
|
}
|
|
|
|
|
2015-12-11 10:31:21 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief RefreshLine refresh line to label on scene.
|
|
|
|
*/
|
2016-03-28 11:21:24 +02:00
|
|
|
void VAbstractTool::RefreshLine(QGraphicsEllipseItem *point, VGraphicsSimpleTextItem *namePoint,
|
|
|
|
QGraphicsLineItem *lineName, const qreal radius)
|
2015-12-11 10:31:21 +01:00
|
|
|
{
|
2016-12-20 19:57:20 +01:00
|
|
|
SCASSERT(point != nullptr)
|
|
|
|
SCASSERT(namePoint != nullptr)
|
|
|
|
SCASSERT(lineName != nullptr)
|
2015-12-11 14:07:05 +01:00
|
|
|
|
2015-12-11 10:31:21 +01:00
|
|
|
QRectF nRec = namePoint->sceneBoundingRect();
|
|
|
|
nRec.translate(- point->scenePos());
|
|
|
|
if (point->rect().intersects(nRec) == false)
|
|
|
|
{
|
|
|
|
const QRectF nameRec = namePoint->sceneBoundingRect();
|
|
|
|
QPointF p1, p2;
|
2016-03-28 11:21:24 +02:00
|
|
|
VGObject::LineIntersectCircle(QPointF(), radius, QLineF(QPointF(), nameRec.center() - point->scenePos()), p1,
|
|
|
|
p2);
|
2015-12-11 10:31:21 +01:00
|
|
|
const QPointF pRec = VGObject::LineIntersectRect(nameRec, QLineF(point->scenePos(), nameRec.center()));
|
|
|
|
lineName->setLine(QLineF(p1, pRec - point->scenePos()));
|
|
|
|
|
|
|
|
if (QLineF(p1, pRec - point->scenePos()).length() <= ToPixel(4, Unit::Mm))
|
|
|
|
{
|
|
|
|
lineName->setVisible(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lineName->setVisible(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lineName->setVisible(false);
|
|
|
|
}
|
|
|
|
}
|
2016-11-28 10:58:44 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QDomElement VAbstractTool::AddSANode(VAbstractPattern *doc, const QString &tagName, const VPieceNode &node)
|
|
|
|
{
|
|
|
|
QDomElement nod = doc->createElement(tagName);
|
|
|
|
|
|
|
|
doc->SetAttribute(nod, AttrIdObject, node.GetId());
|
|
|
|
|
|
|
|
const Tool type = node.GetTypeTool();
|
|
|
|
if (type != Tool::NodePoint)
|
|
|
|
{
|
|
|
|
doc->SetAttribute(nod, VAbstractPattern::AttrNodeReverse, static_cast<quint8>(node.GetReverse()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-21 14:24:40 +01:00
|
|
|
if (node.GetFormulaSABefore() != currentSeamAllowance)
|
2016-11-28 10:58:44 +01:00
|
|
|
{
|
2017-01-21 14:24:40 +01:00
|
|
|
doc->SetAttribute(nod, VAbstractPattern::AttrSABefore, node.GetFormulaSABefore());
|
2016-11-28 10:58:44 +01:00
|
|
|
}
|
|
|
|
|
2017-01-21 14:24:40 +01:00
|
|
|
if (node.GetFormulaSAAfter() != currentSeamAllowance)
|
2016-11-28 10:58:44 +01:00
|
|
|
{
|
2017-01-21 14:24:40 +01:00
|
|
|
doc->SetAttribute(nod, VAbstractPattern::AttrSAAfter, node.GetFormulaSAAfter());
|
2016-11-28 10:58:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case (Tool::NodeArc):
|
|
|
|
doc->SetAttribute(nod, AttrType, VAbstractPattern::NodeArc);
|
|
|
|
break;
|
2017-02-10 15:47:15 +01:00
|
|
|
case (Tool::NodeElArc):
|
|
|
|
doc->SetAttribute(nod, AttrType, VAbstractPattern::NodeElArc);
|
|
|
|
break;
|
2016-11-28 10:58:44 +01:00
|
|
|
case (Tool::NodePoint):
|
|
|
|
doc->SetAttribute(nod, AttrType, VAbstractPattern::NodePoint);
|
|
|
|
break;
|
|
|
|
case (Tool::NodeSpline):
|
|
|
|
doc->SetAttribute(nod, AttrType, VAbstractPattern::NodeSpline);
|
|
|
|
break;
|
|
|
|
case (Tool::NodeSplinePath):
|
|
|
|
doc->SetAttribute(nod, AttrType, VAbstractPattern::NodeSplinePath);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
qDebug()<<"May be wrong tool type!!! Ignoring."<<Q_FUNC_INFO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
const unsigned char angleType = static_cast<unsigned char>(node.GetAngleType());
|
|
|
|
|
|
|
|
if (angleType > 0)
|
|
|
|
{
|
|
|
|
doc->SetAttribute(nod, AttrAngle, angleType);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nod;
|
|
|
|
}
|
2017-01-16 16:37:15 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractTool::AddNode(VAbstractPattern *doc, QDomElement &domElement, const VPieceNode &node)
|
|
|
|
{
|
|
|
|
domElement.appendChild(AddSANode(doc, VAbstractPattern::TagNode, node));
|
|
|
|
}
|
2017-01-18 09:17:18 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<VPieceNode> VAbstractTool::PrepareNodes(const VPiecePath &path, VMainGraphicsScene *scene,
|
|
|
|
VAbstractPattern *doc, VContainer *data)
|
|
|
|
{
|
|
|
|
QVector<VPieceNode> nodes;
|
|
|
|
for (int i = 0; i< path.CountNodes(); ++i)
|
|
|
|
{
|
|
|
|
quint32 id = 0;
|
|
|
|
VPieceNode nodeD = path.at(i);
|
|
|
|
switch (nodeD.GetTypeTool())
|
|
|
|
{
|
|
|
|
case (Tool::NodePoint):
|
|
|
|
id = CreateNode<VPointF>(data, nodeD.GetId());
|
|
|
|
VNodePoint::Create(doc, data, scene, id, nodeD.GetId(), Document::FullParse, Source::FromGui);
|
|
|
|
break;
|
|
|
|
case (Tool::NodeArc):
|
|
|
|
id = CreateNode<VArc>(data, nodeD.GetId());
|
|
|
|
VNodeArc::Create(doc, data, id, nodeD.GetId(), Document::FullParse, Source::FromGui);
|
|
|
|
break;
|
|
|
|
case (Tool::NodeElArc):
|
|
|
|
id = CreateNode<VEllipticalArc>(data, nodeD.GetId());
|
|
|
|
VNodeEllipticalArc::Create(doc, data, id, nodeD.GetId(), Document::FullParse, Source::FromGui);
|
|
|
|
break;
|
|
|
|
case (Tool::NodeSpline):
|
|
|
|
id = CreateNodeSpline(data, nodeD.GetId());
|
|
|
|
VNodeSpline::Create(doc, data, id, nodeD.GetId(), Document::FullParse, Source::FromGui);
|
|
|
|
break;
|
|
|
|
case (Tool::NodeSplinePath):
|
|
|
|
id = CreateNodeSplinePath(data, nodeD.GetId());
|
|
|
|
VNodeSplinePath::Create(doc, data, id, nodeD.GetId(), Document::FullParse, Source::FromGui);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
qDebug()<<"May be wrong tool type!!! Ignoring."<<Q_FUNC_INFO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
nodeD.SetId(id);
|
|
|
|
nodes.append(nodeD);
|
|
|
|
}
|
|
|
|
return nodes;
|
|
|
|
}
|