2014-06-13 12:29:23 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file movedetail.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 13 6, 2014
|
|
|
|
**
|
|
|
|
** @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) 2014 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
|
|
**
|
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
|
|
|
** 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.
|
|
|
|
**
|
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
|
|
|
** 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include "movedetail.h"
|
|
|
|
#include <QGraphicsScene>
|
|
|
|
#include <QDomElement>
|
|
|
|
#include "../xml/vpattern.h"
|
|
|
|
#include "../tools/vabstracttool.h"
|
|
|
|
#include "../widgets/vapplication.h"
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
MoveDetail::MoveDetail(VPattern *doc, const double &x, const double &y, const quint32 &id, QGraphicsScene *scene,
|
|
|
|
QUndoCommand *parent)
|
2014-07-16 14:37:38 +02:00
|
|
|
: VUndoCommand(QDomElement(), doc, parent), oldX(0.0), oldY(0.0), newX(x), newY(y), scene(scene)
|
2014-06-13 12:29:23 +02:00
|
|
|
{
|
|
|
|
setText(QObject::tr("Move detail"));
|
2014-07-16 14:37:38 +02:00
|
|
|
nodeId = id;
|
2014-06-13 12:29:23 +02:00
|
|
|
|
|
|
|
SCASSERT(scene != nullptr);
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
|
|
|
oldX = qApp->toPixel(doc->GetParametrDouble(domElement, VAbstractTool::AttrMx, "0.0"));
|
|
|
|
oldY = qApp->toPixel(doc->GetParametrDouble(domElement, VAbstractTool::AttrMy, "0.0"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-16 14:37:38 +02:00
|
|
|
qDebug()<<"Can't find detail with id ="<< nodeId << Q_FUNC_INFO;
|
2014-06-15 19:07:54 +02:00
|
|
|
return;
|
2014-06-13 12:29:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
MoveDetail::~MoveDetail()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void MoveDetail::undo()
|
|
|
|
{
|
2014-07-16 14:37:38 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(nodeId));
|
2014-06-13 12:29:23 +02:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-07-16 14:37:38 +02:00
|
|
|
SaveCoordinates(domElement, oldX, oldY);
|
2014-06-13 12:29:23 +02:00
|
|
|
|
2014-08-04 15:37:36 +02:00
|
|
|
emit NeedLiteParsing(Document::LiteParse);
|
2014-06-13 12:29:23 +02:00
|
|
|
|
|
|
|
QList<QGraphicsView*> list = scene->views();
|
|
|
|
VAbstractTool::NewSceneRect(scene, list[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-16 14:37:38 +02:00
|
|
|
qDebug()<<"Can't find detail with id ="<< nodeId << Q_FUNC_INFO;
|
2014-06-15 19:07:54 +02:00
|
|
|
return;
|
2014-06-13 12:29:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void MoveDetail::redo()
|
|
|
|
{
|
2014-07-16 14:37:38 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(nodeId));
|
2014-06-13 12:29:23 +02:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-07-16 14:37:38 +02:00
|
|
|
SaveCoordinates(domElement, newX, newY);
|
2014-06-13 12:29:23 +02:00
|
|
|
|
2014-06-16 09:52:55 +02:00
|
|
|
if (redoFlag)
|
|
|
|
{
|
2014-08-04 15:37:36 +02:00
|
|
|
emit NeedLiteParsing(Document::LiteParse);
|
2014-06-16 09:52:55 +02:00
|
|
|
}
|
|
|
|
redoFlag = true;
|
2014-06-13 12:29:23 +02:00
|
|
|
|
|
|
|
QList<QGraphicsView*> list = scene->views();
|
|
|
|
VAbstractTool::NewSceneRect(scene, list[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-16 14:37:38 +02:00
|
|
|
qDebug()<<"Can't find detail with id ="<< nodeId << Q_FUNC_INFO;
|
2014-06-15 19:07:54 +02:00
|
|
|
return;
|
2014-06-13 12:29:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-16 19:08:23 +02:00
|
|
|
// cppcheck-suppress unusedFunction
|
2014-06-13 12:29:23 +02:00
|
|
|
bool MoveDetail::mergeWith(const QUndoCommand *command)
|
|
|
|
{
|
|
|
|
const MoveDetail *moveCommand = static_cast<const MoveDetail *>(command);
|
|
|
|
SCASSERT(moveCommand != nullptr);
|
|
|
|
const quint32 id = moveCommand->getDetId();
|
|
|
|
|
2014-07-16 14:37:38 +02:00
|
|
|
if (id != nodeId)
|
2014-06-13 12:29:23 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
newX = moveCommand->getNewX();
|
|
|
|
newY = moveCommand->getNewY();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int MoveDetail::id() const
|
|
|
|
{
|
|
|
|
return static_cast<int>(UndoCommand::MoveDetail);
|
|
|
|
}
|
2014-07-16 14:37:38 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void MoveDetail::SaveCoordinates(QDomElement &domElement, double x, double y)
|
|
|
|
{
|
|
|
|
doc->SetAttribute(domElement, VAbstractTool::AttrMx, QString().setNum(qApp->fromPixel(x)));
|
|
|
|
doc->SetAttribute(domElement, VAbstractTool::AttrMy, QString().setNum(qApp->fromPixel(y)));
|
|
|
|
}
|