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 vdrawtool.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-09-10 14:29:06 +02:00
|
|
|
#include "vdrawtool.h"
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QDialog>
|
|
|
|
#include <QDomNode>
|
|
|
|
#include <QMessageLogger>
|
|
|
|
#include <QScopedPointer>
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <QUndoStack>
|
|
|
|
#include <Qt>
|
|
|
|
#include <QtDebug>
|
|
|
|
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
|
|
|
#include "../ifc/xml/vdomdocument.h"
|
|
|
|
#include "../ifc/xml/vabstractpattern.h"
|
2014-06-09 19:39:18 +02:00
|
|
|
#include "../../undocommands/addtocalc.h"
|
2014-06-11 18:32:32 +02:00
|
|
|
#include "../../undocommands/savetooloptions.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../qmuparser/qmuparsererror.h"
|
|
|
|
#include "../vpatterndb/vcontainer.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vmisc/logging.h"
|
|
|
|
#include "../vabstracttool.h"
|
2014-05-30 11:33:30 +02:00
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
template <class T> class QSharedPointer;
|
2016-05-24 14:06:35 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-30 11:12:20 +02:00
|
|
|
/**
|
|
|
|
* @brief VDrawTool constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
*/
|
2015-06-18 19:23:24 +02:00
|
|
|
VDrawTool::VDrawTool(VAbstractPattern *doc, VContainer *data, quint32 id, QObject *parent)
|
2017-04-15 16:39:59 +02:00
|
|
|
: VInteractiveTool(doc, data, id, parent),
|
|
|
|
nameActivDraw(doc->GetNameActivPP()),
|
2017-06-16 13:53:08 +02:00
|
|
|
m_lineType(TypeLineLine)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-06-18 19:23:24 +02:00
|
|
|
connect(this->doc, &VAbstractPattern::ChangedActivPP, this, &VDrawTool::ChangedActivDraw);
|
|
|
|
connect(this->doc, &VAbstractPattern::ChangedNameDraw, this, &VDrawTool::ChangedNameDraw);
|
|
|
|
connect(this->doc, &VAbstractPattern::ShowTool, this, &VDrawTool::ShowTool);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-30 11:12:20 +02:00
|
|
|
/**
|
|
|
|
* @brief ShowTool highlight tool.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param enable enable or disable highlight.
|
|
|
|
*/
|
2015-02-07 16:18:18 +01:00
|
|
|
void VDrawTool::ShowTool(quint32 id, bool enable)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2016-12-20 20:19:21 +01:00
|
|
|
Q_UNUSED(id)
|
|
|
|
Q_UNUSED(enable)
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2015-05-23 16:42:53 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief ChangedActivDraw disable or enable context menu after change active pattern peace.
|
|
|
|
* @param newName new name active pattern peace.
|
|
|
|
*/
|
|
|
|
void VDrawTool::ChangedActivDraw(const QString &newName)
|
|
|
|
{
|
2015-05-25 08:24:16 +02:00
|
|
|
Disable(!(nameActivDraw == newName), newName);
|
2015-05-23 16:42:53 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-30 11:12:20 +02:00
|
|
|
/**
|
|
|
|
* @brief ChangedNameDraw save new name active pattern peace.
|
|
|
|
* @param oldName old name.
|
|
|
|
* @param newName new name active pattern peace. new name.
|
|
|
|
*/
|
2013-11-06 22:11:12 +01:00
|
|
|
void VDrawTool::ChangedNameDraw(const QString &oldName, const QString &newName)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
if (nameActivDraw == oldName)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
nameActivDraw = newName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-11 18:45:39 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VDrawTool::SaveDialogChange()
|
2014-05-25 21:54:17 +02:00
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vTool, "Saving tool options after using dialog");
|
2017-09-17 08:45:18 +02:00
|
|
|
QDomElement oldDomElement = doc->elementById(m_id, getTagName());
|
2014-06-11 18:32:32 +02:00
|
|
|
if (oldDomElement.isElement())
|
2014-05-25 21:54:17 +02:00
|
|
|
{
|
2014-06-11 18:32:32 +02:00
|
|
|
QDomElement newDomElement = oldDomElement.cloneNode().toElement();
|
|
|
|
SaveDialog(newDomElement);
|
2014-05-25 21:54:17 +02:00
|
|
|
|
2017-09-17 08:45:18 +02:00
|
|
|
SaveToolOptions *saveOptions = new SaveToolOptions(oldDomElement, newDomElement, doc, m_id);
|
2015-06-16 17:01:17 +02:00
|
|
|
connect(saveOptions, &SaveToolOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree);
|
2014-06-11 18:32:32 +02:00
|
|
|
qApp->getUndoStack()->push(saveOptions);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-17 08:45:18 +02:00
|
|
|
qCDebug(vTool, "Can't find tool with id = %u", m_id);
|
2014-05-25 21:54:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-30 21:58:31 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief AddToFile add tag with informations about tool into file.
|
|
|
|
*/
|
|
|
|
void VDrawTool::AddToFile()
|
|
|
|
{
|
|
|
|
QDomElement domElement = doc->createElement(getTagName());
|
2017-09-17 08:45:18 +02:00
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(m_id);
|
2014-08-30 21:58:31 +02:00
|
|
|
SaveOptions(domElement, obj);
|
|
|
|
AddToCalculation(domElement);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-05-28 14:13:37 +02:00
|
|
|
void VDrawTool::SaveOption(QSharedPointer<VGObject> &obj)
|
|
|
|
{
|
|
|
|
qCDebug(vTool, "Saving tool options");
|
2017-09-17 08:45:18 +02:00
|
|
|
QDomElement oldDomElement = doc->elementById(m_id, getTagName());
|
2015-05-28 14:13:37 +02:00
|
|
|
if (oldDomElement.isElement())
|
|
|
|
{
|
|
|
|
QDomElement newDomElement = oldDomElement.cloneNode().toElement();
|
|
|
|
|
|
|
|
SaveOptions(newDomElement, obj);
|
|
|
|
|
2017-09-17 08:45:18 +02:00
|
|
|
SaveToolOptions *saveOptions = new SaveToolOptions(oldDomElement, newDomElement, doc, m_id);
|
2015-06-16 17:01:17 +02:00
|
|
|
connect(saveOptions, &SaveToolOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree);
|
2015-05-28 14:13:37 +02:00
|
|
|
qApp->getUndoStack()->push(saveOptions);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-17 08:45:18 +02:00
|
|
|
qCDebug(vTool, "Can't find tool with id = %u", m_id);
|
2015-05-28 14:13:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VDrawTool::SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj)
|
|
|
|
{
|
|
|
|
Q_UNUSED(obj)
|
|
|
|
|
2017-09-17 08:45:18 +02:00
|
|
|
doc->SetAttribute(tag, VDomDocument::AttrId, m_id);
|
2015-05-28 14:13:37 +02:00
|
|
|
}
|
|
|
|
|
2015-05-25 08:24:16 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-08-23 13:50:48 +02:00
|
|
|
QString VDrawTool::MakeToolTip() const
|
|
|
|
{
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-05-25 08:24:16 +02:00
|
|
|
bool VDrawTool::CorrectDisable(bool disable, const QString &namePP) const
|
|
|
|
{
|
|
|
|
if (disable)
|
|
|
|
{
|
|
|
|
return disable;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return !(nameActivDraw == namePP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-06 18:43:31 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VDrawTool::ReadAttributes()
|
|
|
|
{
|
2017-09-17 08:45:18 +02:00
|
|
|
const QDomElement domElement = doc->elementById(m_id, getTagName());
|
2015-02-06 18:43:31 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
|
|
|
ReadToolAttributes(domElement);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-17 08:45:18 +02:00
|
|
|
qCDebug(vTool, "Can't find tool with id = %u", m_id);
|
2015-02-06 18:43:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-09 10:54:19 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VDrawTool::EnableToolMove(bool move)
|
|
|
|
{
|
|
|
|
Q_UNUSED(move)
|
|
|
|
// Do nothing.
|
|
|
|
}
|
|
|
|
|
2016-03-31 16:01:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VDrawTool::DetailsMode(bool mode)
|
|
|
|
{
|
|
|
|
Q_UNUSED(mode)
|
|
|
|
// Do nothing.
|
|
|
|
}
|
|
|
|
|
2017-09-17 08:19:13 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VDrawTool::ChangeLabelVisibility(quint32 id, bool visible)
|
|
|
|
{
|
|
|
|
Q_UNUSED(id)
|
|
|
|
Q_UNUSED(visible)
|
|
|
|
}
|
|
|
|
|
2014-05-30 11:33:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-05-30 11:12:20 +02:00
|
|
|
/**
|
|
|
|
* @brief AddToCalculation add tool to calculation tag in pattern file.
|
|
|
|
* @param domElement tag in xml tree.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VDrawTool::AddToCalculation(const QDomElement &domElement)
|
|
|
|
{
|
2014-06-09 19:39:18 +02:00
|
|
|
AddToCalc *addToCal = new AddToCalc(domElement, doc);
|
2016-07-19 19:50:42 +02:00
|
|
|
connect(addToCal, &AddToCalc::NeedFullParsing, doc, &VAbstractPattern::NeedFullParsing);
|
2014-06-06 12:36:34 +02:00
|
|
|
qApp->getUndoStack()->push(addToCal);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
2015-02-03 15:46:14 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VDrawTool::getLineType() const
|
|
|
|
{
|
2017-05-16 12:07:53 +02:00
|
|
|
return m_lineType;
|
2015-02-03 15:46:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VDrawTool::SetTypeLine(const QString &value)
|
|
|
|
{
|
2017-05-16 12:07:53 +02:00
|
|
|
m_lineType = value;
|
2015-02-03 15:46:14 +01:00
|
|
|
|
2017-09-17 08:45:18 +02:00
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(m_id);
|
2015-02-03 15:46:14 +01:00
|
|
|
SaveOption(obj);
|
|
|
|
}
|
2017-09-17 08:19:13 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VDrawTool::IsLabelVisible(quint32 id) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(id)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VDrawTool::SetLabelVisible(quint32 id, bool visible)
|
|
|
|
{
|
|
|
|
Q_UNUSED(id)
|
|
|
|
Q_UNUSED(visible)
|
|
|
|
}
|
2017-09-20 14:39:42 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VDrawTool::DoChangePosition(quint32 id, const QPointF &pos)
|
|
|
|
{
|
|
|
|
Q_UNUSED(id)
|
|
|
|
Q_UNUSED(pos)
|
|
|
|
}
|