/************************************************************************ ** ** @file ** @author Roman Telezhynskyi ** @date 6 11, 2016 ** ** @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) 2016 Valentina project ** 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 . ** *************************************************************************/ #include "vtoolseamallowance.h" #include "../dialogs/tools/dialogseamallowance.h" #include "../vpatterndb/vpiecenode.h" #include "../vpatterndb/vpiecepath.h" #include "../vpatterndb/calculator.h" #include "../vpatterndb/vpatterninfogeometry.h" #include "../vpatterndb/vpatternpiecedata.h" #include "nodeDetails/vnodearc.h" #include "nodeDetails/vnodeellipticalarc.h" #include "nodeDetails/vnodepoint.h" #include "nodeDetails/vnodespline.h" #include "nodeDetails/vnodesplinepath.h" #include "nodeDetails/vtoolpiecepath.h" #include "../vgeometry/varc.h" #include "../vgeometry/vellipticalarc.h" #include "../vgeometry/vcubicbezier.h" #include "../vgeometry/vcubicbezierpath.h" #include "../vgeometry/vpointf.h" #include "../vgeometry/vspline.h" #include "../vgeometry/vsplinepath.h" #include "../ifc/xml/vpatternconverter.h" #include "../undocommands/addpiece.h" #include "../undocommands/deletepiece.h" #include "../undocommands/movepiece.h" #include "../undocommands/savepieceoptions.h" #include "../undocommands/togglepieceinlayout.h" #include "../vwidgets/vmaingraphicsview.h" #include "../vwidgets/vnobrushscalepathitem.h" #include #include #include #include #include // Current version of seam allowance tag nned for backward compatibility const quint8 VToolSeamAllowance::pieceVersion = 2; const QString VToolSeamAllowance::TagCSA = QStringLiteral("csa"); const QString VToolSeamAllowance::TagRecord = QStringLiteral("record"); const QString VToolSeamAllowance::TagIPaths = QStringLiteral("iPaths"); const QString VToolSeamAllowance::AttrVersion = QStringLiteral("version"); const QString VToolSeamAllowance::AttrForbidFlipping = QStringLiteral("forbidFlipping"); const QString VToolSeamAllowance::AttrSeamAllowance = QStringLiteral("seamAllowance"); const QString VToolSeamAllowance::AttrWidth = QStringLiteral("width"); const QString VToolSeamAllowance::AttrHeight = QStringLiteral("height"); const QString VToolSeamAllowance::AttrUnited = QStringLiteral("united"); const QString VToolSeamAllowance::AttrFont = QStringLiteral("fontSize"); const QString VToolSeamAllowance::AttrRotation = QStringLiteral("rotation"); //--------------------------------------------------------------------------------------------------------------------- VToolSeamAllowance::~VToolSeamAllowance() { delete m_dialog; } //--------------------------------------------------------------------------------------------------------------------- VToolSeamAllowance *VToolSeamAllowance::Create(DialogTool *dialog, VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data) { SCASSERT(dialog != nullptr); DialogSeamAllowance *dialogTool = qobject_cast(dialog); SCASSERT(dialogTool != nullptr); VPiece detail = dialogTool->GetPiece(); QString width = detail.GetFormulaSAWidth(); qApp->getUndoStack()->beginMacro("add detail"); detail.GetPath().SetNodes(PrepareNodes(detail.GetPath(), scene, doc, data)); VToolSeamAllowance *piece = Create(0, detail, width, scene, doc, data, Document::FullParse, Source::FromGui); if (piece != nullptr) { piece->m_dialog = dialogTool; } return piece; } //--------------------------------------------------------------------------------------------------------------------- VToolSeamAllowance *VToolSeamAllowance::Create(quint32 id, VPiece newPiece, QString &width, VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data, const Document &parse, const Source &typeCreation, const QString &drawName) { if (typeCreation == Source::FromGui || typeCreation == Source::FromTool) { data->AddVariable(currentSeamAllowance, new VIncrement(data, currentSeamAllowance, 0, newPiece.GetSAWidth(), width, true, tr("Current seam allowance"))); id = data->AddPiece(newPiece); } else { const qreal calcWidth = CheckFormula(id, width, data); newPiece.SetFormulaSAWidth(width, calcWidth); data->AddVariable(currentSeamAllowance, new VIncrement(data, currentSeamAllowance, 0, calcWidth, width, true, tr("Current seam allowance"))); data->UpdatePiece(id, newPiece); if (parse != Document::FullParse) { doc->UpdateToolData(id, data); } } VAbstractTool::AddRecord(id, Tool::Piece, doc); VToolSeamAllowance *piece = nullptr; if (parse == Document::FullParse) { piece = new VToolSeamAllowance(doc, data, id, typeCreation, scene, drawName); scene->addItem(piece); connect(piece, &VToolSeamAllowance::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem); connect(scene, &VMainGraphicsScene::EnableDetailItemHover, piece, &VToolSeamAllowance::AllowHover); connect(scene, &VMainGraphicsScene::EnableDetailItemSelection, piece, &VToolSeamAllowance::AllowSelecting); connect(scene, &VMainGraphicsScene::HighlightDetail, piece, &VToolSeamAllowance::Highlight); doc->AddTool(id, piece); } //Very important to delete it. Only this tool need this special variable. data->RemoveVariable(currentLength); return piece; } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::Remove(bool ask) { try { DeleteTool(ask); } catch(const VExceptionToolWasDeleted &e) { Q_UNUSED(e); return;//Leave this method immediately!!! } } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::AddAttributes(VAbstractPattern *doc, QDomElement &domElement, quint32 id, const VPiece &piece) { SCASSERT(doc != nullptr); doc->SetAttribute(domElement, VDomDocument::AttrId, id); doc->SetAttribute(domElement, AttrName, piece.GetName()); doc->SetAttribute(domElement, AttrVersion, QString().setNum(pieceVersion)); doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(piece.GetMx())); doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(piece.GetMy())); doc->SetAttribute(domElement, AttrInLayout, piece.IsInLayout()); doc->SetAttribute(domElement, AttrForbidFlipping, piece.IsForbidFlipping()); doc->SetAttribute(domElement, AttrSeamAllowance, piece.IsSeamAllowance()); doc->SetAttribute(domElement, AttrWidth, piece.GetFormulaSAWidth()); doc->SetAttribute(domElement, AttrUnited, piece.IsUnited()); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::AddCSARecord(VAbstractPattern *doc, QDomElement &domElement, const CustomSARecord &record) { QDomElement recordNode = doc->createElement(VToolSeamAllowance::TagRecord); doc->SetAttribute(recordNode, VAbstractPattern::AttrStart, record.startPoint); doc->SetAttribute(recordNode, VAbstractPattern::AttrPath, record.path); doc->SetAttribute(recordNode, VAbstractPattern::AttrEnd, record.endPoint); doc->SetAttribute(recordNode, VAbstractPattern::AttrNodeReverse, record.reverse); doc->SetAttribute(recordNode, VAbstractPattern::AttrIncludeAs, static_cast(record.includeType)); domElement.appendChild(recordNode); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::AddCSARecords(VAbstractPattern *doc, QDomElement &domElement, const QVector &records) { if (records.size() > 0) { QDomElement csaRecordsElement = doc->createElement(VToolSeamAllowance::TagCSA); for (int i = 0; i < records.size(); ++i) { AddCSARecord(doc, csaRecordsElement, records.at(i)); } domElement.appendChild(csaRecordsElement); } } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::AddInternalPaths(VAbstractPattern *doc, QDomElement &domElement, const QVector &paths) { if (paths.size() > 0) { QDomElement iPathsElement = doc->createElement(VToolSeamAllowance::TagIPaths); for (int i = 0; i < paths.size(); ++i) { QDomElement recordNode = doc->createElement(VToolSeamAllowance::TagRecord); doc->SetAttribute(recordNode, VAbstractPattern::AttrPath, paths.at(i)); iPathsElement.appendChild(recordNode); } domElement.appendChild(iPathsElement); } } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::AddPatternPieceData(VAbstractPattern *doc, QDomElement &domElement, const VPiece &piece) { QDomElement domData = doc->createElement(VAbstractPattern::TagData); const VPatternPieceData& data = piece.GetPatternPieceData(); doc->SetAttribute(domData, VAbstractPattern::AttrLetter, data.GetLetter()); doc->SetAttribute(domData, VAbstractPattern::AttrVisible, data.IsVisible() == true? trueStr : falseStr); doc->SetAttribute(domData, AttrMx, data.GetPos().x()); doc->SetAttribute(domData, AttrMy, data.GetPos().y()); doc->SetAttribute(domData, AttrWidth, data.GetLabelWidth()); doc->SetAttribute(domData, AttrHeight, data.GetLabelHeight()); doc->SetAttribute(domData, AttrFont, data.GetFontSize()); doc->SetAttribute(domData, AttrRotation, data.GetRotation()); for (int i = 0; i < data.GetMCPCount(); ++i) { const MaterialCutPlacement mcp = data.GetMCP(i); QDomElement domMCP = doc->createElement(VAbstractPattern::TagMCP); doc->SetAttribute(domMCP, VAbstractPattern::AttrMaterial, int(mcp.m_eMaterial)); if (mcp.m_eMaterial == MaterialType::mtUserDefined) { doc->SetAttribute(domMCP, VAbstractPattern::AttrUserDefined, mcp.m_qsMaterialUserDef); } doc->SetAttribute(domMCP, VAbstractPattern::AttrCutNumber, mcp.m_iCutNumber); doc->SetAttribute(domMCP, VAbstractPattern::AttrPlacement, int(mcp.m_ePlacement)); domData.appendChild(domMCP); } domElement.appendChild(domData); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::AddPatternInfo(VAbstractPattern *doc, QDomElement &domElement, const VPiece &piece) { QDomElement domData = doc->createElement(VAbstractPattern::TagPatternInfo); const VPatternInfoGeometry& geom = piece.GetPatternInfo(); doc->SetAttribute(domData, VAbstractPattern::AttrVisible, geom.IsVisible() == true ? trueStr : falseStr); doc->SetAttribute(domData, AttrMx, geom.GetPos().x()); doc->SetAttribute(domData, AttrMy, geom.GetPos().y()); doc->SetAttribute(domData, AttrWidth, geom.GetLabelWidth()); doc->SetAttribute(domData, AttrHeight, geom.GetLabelHeight()); doc->SetAttribute(domData, AttrFont, geom.GetFontSize()); doc->SetAttribute(domData, AttrRotation, geom.GetRotation()); domElement.appendChild(domData); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::AddGrainline(VAbstractPattern *doc, QDomElement &domElement, const VPiece &piece) { // grainline QDomElement domData = doc->createElement(VAbstractPattern::TagGrainline); const VGrainlineGeometry& glGeom = piece.GetGrainlineGeometry(); doc->SetAttribute(domData, VAbstractPattern::AttrVisible, glGeom.IsVisible() == true ? trueStr : falseStr); doc->SetAttribute(domData, AttrMx, glGeom.GetPos().x()); doc->SetAttribute(domData, AttrMy, glGeom.GetPos().y()); doc->SetAttribute(domData, AttrLength, glGeom.GetLength()); doc->SetAttribute(domData, AttrRotation, glGeom.GetRotation()); doc->SetAttribute(domData, VAbstractPattern::AttrArrows, int(glGeom.GetArrowType())); domElement.appendChild(domData); } //--------------------------------------------------------------------------------------------------------------------- QString VToolSeamAllowance::getTagName() const { return VAbstractPattern::TagDetail; } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::ShowVisualization(bool show) { Q_UNUSED(show) } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::GroupVisibility(quint32 object, bool visible) { Q_UNUSED(object); Q_UNUSED(visible); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::FullUpdateFromFile() { RefreshGeometry(); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::FullUpdateFromGuiOk(int result) { if (result == QDialog::Accepted) { SaveDialogChange(); } delete m_dialog; } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::FullUpdateFromGuiApply() { SaveDialogChange(); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::EnableToolMove(bool move) { setFlag(QGraphicsItem::ItemIsMovable, move); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::AllowHover(bool enabled) { setAcceptHoverEvents(enabled); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::AllowSelecting(bool enabled) { setFlag(QGraphicsItem::ItemIsSelectable, enabled); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::ResetChildren(QGraphicsItem *pItem) { const VPiece detail = VAbstractTool::data.GetPiece(id); VTextGraphicsItem* pVGI = qgraphicsitem_cast(pItem); if (pVGI != m_dataLabel) { if (detail.GetPatternPieceData().IsVisible()) { m_dataLabel->Reset(); } } if (pVGI != m_patternInfo) { if (detail.GetPatternInfo().IsVisible()) { m_patternInfo->Reset(); } } VGrainlineItem* pGLI = qgraphicsitem_cast(pItem); if (pGLI != m_grainLine) { if (detail.GetGrainlineGeometry().IsVisible()) { m_grainLine->Reset(); } } update(); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::UpdateAll() { m_sceneDetails->update(); update(); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::retranslateUi() { UpdateLabel(); UpdatePatternInfo(); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::Highlight(quint32 id) { setSelected(this->id == id); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief UpdateLabel updates the text label, making it just big enough for the text to fit it */ void VToolSeamAllowance::UpdateLabel() { const VPiece detail = VAbstractTool::data.GetPiece(id); const VPatternPieceData& data = detail.GetPatternPieceData(); if (data.IsVisible() == true) { QFont fnt = qApp->font(); { const int iFS = data.GetFontSize(); iFS < MIN_FONT_SIZE ? fnt.setPixelSize(MIN_FONT_SIZE) : fnt.setPixelSize(iFS); } m_dataLabel->SetFont(fnt); m_dataLabel->SetSize(data.GetLabelWidth(), data.GetLabelHeight()); m_dataLabel->UpdateData(detail.GetName(), data); QPointF pt = data.GetPos(); QRectF rectBB; rectBB.setTopLeft(pt); rectBB.setWidth(m_dataLabel->boundingRect().width()); rectBB.setHeight(m_dataLabel->boundingRect().height()); qreal dX; qreal dY; if (m_dataLabel->IsContained(rectBB, data.GetRotation(), dX, dY) == false) { pt.setX(pt.x() + dX); pt.setY(pt.y() + dY); } m_dataLabel->setPos(pt); m_dataLabel->setRotation(data.GetRotation()); m_dataLabel->Update(); m_dataLabel->show(); } else { m_dataLabel->hide(); } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief UpdatePatternInfo updates the pattern info label */ void VToolSeamAllowance::UpdatePatternInfo() { const VPiece detail = VAbstractTool::data.GetPiece(id); const VPatternInfoGeometry& geom = detail.GetPatternInfo(); if (geom.IsVisible() == true) { QFont fnt = qApp->font(); int iFS = geom.GetFontSize(); if (iFS < MIN_FONT_SIZE) { iFS = MIN_FONT_SIZE; } fnt.setPixelSize(iFS); m_patternInfo->SetFont(fnt); m_patternInfo->SetSize(geom.GetLabelWidth(), geom.GetLabelHeight()); m_patternInfo->UpdateData(doc, getData()->size(), getData()->height()); QPointF pt = geom.GetPos(); QRectF rectBB; rectBB.setTopLeft(pt); rectBB.setWidth(m_patternInfo->boundingRect().width()); rectBB.setHeight(m_patternInfo->boundingRect().height()); qreal dX; qreal dY; if (m_patternInfo->IsContained(rectBB, geom.GetRotation(), dX, dY) == false) { pt.setX(pt.x() + dX); pt.setY(pt.y() + dY); } m_patternInfo->setPos(pt); m_patternInfo->setRotation(geom.GetRotation()); m_patternInfo->Update(); m_patternInfo->GetTextLines() > 0 ? m_patternInfo->show() : m_patternInfo->hide(); } else { m_patternInfo->hide(); } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief VToolDetail::UpdateGrainline updates the grain line item */ void VToolSeamAllowance::UpdateGrainline() { const VPiece detail = VAbstractTool::data.GetPiece(id); const VGrainlineGeometry& geom = detail.GetGrainlineGeometry(); if (geom.IsVisible() == true) { qreal dRotation; qreal dLength; try { QString qsFormula; qsFormula = geom.GetRotation().replace("\n", " "); qsFormula = qApp->TrVars()->FormulaFromUser(qsFormula, qApp->Settings()->GetOsSeparator()); Calculator cal1; dRotation = cal1.EvalFormula(VDataTool::data.PlainVariables(), qsFormula); qsFormula = geom.GetLength().replace("\n", " "); qsFormula = qApp->TrVars()->FormulaFromUser(qsFormula, qApp->Settings()->GetOsSeparator()); Calculator cal2; dLength = cal2.EvalFormula(VDataTool::data.PlainVariables(), qsFormula); } catch(...) { m_grainLine->hide(); return; } m_grainLine->UpdateGeometry(geom.GetPos(), dRotation, ToPixel(dLength, *VDataTool::data.GetPatternUnit()), geom.GetArrowType()); m_grainLine->show(); } else { m_grainLine->hide(); } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief SaveMoveDetail saves the move detail operation to the undo stack */ void VToolSeamAllowance::SaveMoveDetail(const QPointF& ptPos) { VPiece oldDet = VAbstractTool::data.GetPiece(id); VPiece newDet = oldDet; newDet.GetPatternPieceData().SetPos(ptPos); newDet.GetPatternPieceData().SetLabelWidth(m_dataLabel->boundingRect().width()); newDet.GetPatternPieceData().SetLabelHeight(m_dataLabel->boundingRect().height()); newDet.GetPatternPieceData().SetFontSize(m_dataLabel->GetFontSize()); newDet.GetPatternPieceData().SetRotation(m_dataLabel->rotation()); SavePieceOptions* moveCommand = new SavePieceOptions(oldDet, newDet, doc, id); moveCommand->setText(tr("move pattern piece label")); connect(moveCommand, &SavePieceOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(moveCommand); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief SaveResizeDetail saves the resize detail label operation to the undo stack */ void VToolSeamAllowance::SaveResizeDetail(qreal dLabelW, int iFontSize) { VPiece oldDet = VAbstractTool::data.GetPiece(id); VPiece newDet = oldDet; newDet.GetPatternPieceData().SetLabelWidth(dLabelW); newDet.GetPatternPieceData().SetLabelHeight(m_dataLabel->boundingRect().height()); newDet.GetPatternPieceData().SetFontSize(iFontSize); newDet.GetPatternPieceData().SetRotation(m_dataLabel->rotation()); SavePieceOptions* resizeCommand = new SavePieceOptions(oldDet, newDet, doc, id); resizeCommand->setText(tr("resize pattern piece label")); connect(resizeCommand, &SavePieceOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(resizeCommand); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief SaveRotationDetail saves the rotation detail label operation to the undo stack */ void VToolSeamAllowance::SaveRotationDetail(qreal dRot) { VPiece oldDet = VAbstractTool::data.GetPiece(id); VPiece newDet = oldDet; newDet.GetPatternPieceData().SetPos(m_dataLabel->pos()); newDet.GetPatternPieceData().SetLabelWidth(m_dataLabel->boundingRect().width()); newDet.GetPatternPieceData().SetLabelHeight(m_dataLabel->boundingRect().height()); newDet.GetPatternPieceData().SetFontSize(m_dataLabel->GetFontSize()); newDet.GetPatternPieceData().SetRotation(dRot); SavePieceOptions* rotateCommand = new SavePieceOptions(oldDet, newDet, doc, id); rotateCommand->setText(tr("rotate pattern piece label")); connect(rotateCommand, &SavePieceOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(rotateCommand); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief SaveMovePattern saves the pattern label position */ void VToolSeamAllowance::SaveMovePattern(const QPointF &ptPos) { VPiece oldDet = VAbstractTool::data.GetPiece(id); VPiece newDet = oldDet; newDet.GetPatternInfo().SetPos(ptPos); newDet.GetPatternInfo().SetLabelWidth(m_patternInfo->boundingRect().width()); newDet.GetPatternInfo().SetLabelHeight(m_patternInfo->boundingRect().height()); newDet.GetPatternInfo().SetFontSize(m_patternInfo->GetFontSize()); newDet.GetPatternInfo().SetRotation(m_patternInfo->rotation()); SavePieceOptions* moveCommand = new SavePieceOptions(oldDet, newDet, doc, id); moveCommand->setText(tr("move pattern info label")); connect(moveCommand, &SavePieceOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(moveCommand); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief: SaveResizePattern saves the pattern label width and font size */ void VToolSeamAllowance::SaveResizePattern(qreal dLabelW, int iFontSize) { VPiece oldDet = VAbstractTool::data.GetPiece(id); VPiece newDet = oldDet; newDet.GetPatternInfo().SetLabelWidth(dLabelW); newDet.GetPatternInfo().SetLabelHeight(m_patternInfo->boundingRect().height()); newDet.GetPatternInfo().SetFontSize(iFontSize); newDet.GetPatternInfo().SetRotation(m_patternInfo->rotation()); SavePieceOptions* resizeCommand = new SavePieceOptions(oldDet, newDet, doc, id); resizeCommand->setText(tr("resize pattern info label")); connect(resizeCommand, &SavePieceOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(resizeCommand); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::SaveRotationPattern(qreal dRot) { VPiece oldDet = VAbstractTool::data.GetPiece(id); VPiece newDet = oldDet; newDet.GetPatternInfo().SetPos(m_patternInfo->pos()); newDet.GetPatternInfo().SetLabelWidth(m_patternInfo->boundingRect().width()); newDet.GetPatternInfo().SetLabelHeight(m_patternInfo->boundingRect().height()); newDet.GetPatternInfo().SetFontSize(m_patternInfo->GetFontSize()); newDet.GetPatternInfo().SetRotation(dRot); SavePieceOptions* rotateCommand = new SavePieceOptions(oldDet, newDet, doc, id); rotateCommand->setText(tr("rotate pattern info label")); connect(rotateCommand, &SavePieceOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(rotateCommand); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::SaveMoveGrainline(const QPointF& ptPos) { VPiece oldDet = VAbstractTool::data.GetPiece(id); VPiece newDet = oldDet; newDet.GetGrainlineGeometry().SetPos(ptPos); qDebug() << "******* new grainline pos" << ptPos; SavePieceOptions* moveCommand = new SavePieceOptions(oldDet, newDet, doc, id); moveCommand->setText(tr("move grainline")); connect(moveCommand, &SavePieceOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(moveCommand); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::SaveResizeGrainline(qreal dLength) { VPiece oldDet = VAbstractTool::data.GetPiece(id); VPiece newDet = oldDet; dLength = FromPixel(dLength, *VDataTool::data.GetPatternUnit()); newDet.GetGrainlineGeometry().SetLength(qApp->LocaleToString(dLength)); SavePieceOptions* resizeCommand = new SavePieceOptions(oldDet, newDet, doc, id); resizeCommand->setText(tr("resize grainline")); connect(resizeCommand, &SavePieceOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(resizeCommand); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::SaveRotateGrainline(qreal dRot, const QPointF& ptPos) { VPiece oldDet = VAbstractTool::data.GetPiece(id); VPiece newDet = oldDet; dRot = qRadiansToDegrees(dRot); newDet.GetGrainlineGeometry().SetRotation(qApp->LocaleToString(dRot)); newDet.GetGrainlineGeometry().SetPos(ptPos); SavePieceOptions* rotateCommand = new SavePieceOptions(oldDet, newDet, doc, id); rotateCommand->setText(tr("rotate grainline")); connect(rotateCommand, &SavePieceOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(rotateCommand); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief VToolDetail::paint draws a bounding box around detail, if one of its text or grainline items is not idle. */ void VToolSeamAllowance::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) { if (scene()->views().count() > 0) { const QPoint pt0 = scene()->views().at(0)->mapFromScene(0, 0); const QPoint pt = scene()->views().at(0)->mapFromScene(0, 100); const QPoint p = pt - pt0; #if QT_VERSION >= QT_VERSION_CHECK(5, 1, 0) const qreal dScale = qSqrt(QPoint::dotProduct(p, p)); #else const qreal dScale = qSqrt(p.x() * p.x() + p.y() * p.y()); #endif //QT_VERSION >= QT_VERSION_CHECK(5, 1, 0) m_grainLine->SetScale(100/dScale); } if (m_dataLabel->IsIdle() == false || m_patternInfo->IsIdle() == false || m_grainLine->IsIdle() == false) { painter->save(); painter->setPen(QPen(Qt::black, 3, Qt::DashLine)); painter->drawRect(boundingRect().adjusted(1, 1, -1, -1)); painter->restore(); } QGraphicsPathItem::paint(painter, option, widget); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::AddToFile() { const VPiece piece = VAbstractTool::data.GetPiece(id); QDomElement domElement = doc->createElement(getTagName()); AddAttributes(doc, domElement, id, piece); AddPatternPieceData(doc, domElement, piece); AddPatternInfo(doc, domElement, piece); AddGrainline(doc, domElement, piece); // nodes AddNodes(doc, domElement, piece); //custom seam allowance AddCSARecords(doc, domElement, piece.GetCustomSARecords()); AddInternalPaths(doc, domElement, piece.GetInternalPaths()); AddPiece *addDet = new AddPiece(domElement, doc, piece, m_drawName); connect(addDet, &AddPiece::NeedFullParsing, doc, &VAbstractPattern::NeedFullParsing); qApp->getUndoStack()->push(addDet); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::RefreshDataInFile() { QDomElement domElement = doc->elementById(id); if (domElement.isElement()) { // Refresh only parts that we possibly need to update { // TODO. Delete if minimal supported version is 0.4.0 Q_STATIC_ASSERT_X(VPatternConverter::PatternMinVer < CONVERTER_VERSION_CHECK(0, 4, 0), "Time to refactor the code."); const uint version = doc->GetParametrUInt(domElement, VToolSeamAllowance::AttrVersion, "1"); if (version == 1) { const VPiece piece = VAbstractTool::data.GetPiece(id); doc->SetAttribute(domElement, AttrVersion, QString().setNum(pieceVersion)); doc->RemoveAllChildren(domElement);//Very important to clear before rewrite AddPatternPieceData(doc, domElement, piece); AddPatternInfo(doc, domElement, piece); AddGrainline(doc, domElement, piece); AddNodes(doc, domElement, piece); AddCSARecords(doc, domElement, piece.GetCustomSARecords()); AddInternalPaths(doc, domElement, piece.GetInternalPaths()); } } } } //--------------------------------------------------------------------------------------------------------------------- QVariant VToolSeamAllowance::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value) { if (change == ItemPositionChange && scene()) { // Each time we move something we call recalculation scene rect. In some cases this can cause moving // objects positions. And this cause infinite redrawing. That's why we wait the finish of saving the last move. static bool changeFinished = true; if (changeFinished) { changeFinished = false; // value - this is new position. const QPointF newPos = value.toPointF(); MovePiece *moveDet = new MovePiece(doc, newPos.x(), newPos.y(), id, scene()); connect(moveDet, &MovePiece::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(moveDet); const QList viewList = scene()->views(); if (not viewList.isEmpty()) { if (QGraphicsView *view = viewList.at(0)) { const int xmargin = 50; const int ymargin = 50; const QRectF viewRect = VMainGraphicsView::SceneVisibleArea(view); const QRectF itemRect = mapToScene(boundingRect()|childrenBoundingRect()).boundingRect(); // If item's rect is bigger than view's rect ensureVisible works very unstable. if (itemRect.height() + 2*ymargin < viewRect.height() && itemRect.width() + 2*xmargin < viewRect.width()) { view->ensureVisible(itemRect, xmargin, ymargin); } else { // Ensure visible only small rect around a cursor VMainGraphicsScene *currentScene = qobject_cast(scene()); SCASSERT(currentScene); const QPointF cursorPosition = currentScene->getScenePos(); view->ensureVisible(QRectF(cursorPosition.x()-5, cursorPosition.y()-5, 10, 10)); } } } // Don't forget to update geometry, because first change never call full parse VPiece detail = VAbstractTool::data.GetPiece(id); detail.SetMx(newPos.x()); detail.SetMy(newPos.y()); VAbstractTool::data.UpdatePiece(id, detail); RefreshGeometry(); changeFinished = true; } } if (change == QGraphicsItem::ItemSelectedChange) { if (value == true) { // do stuff if selected this->setFocus(); } else { // do stuff if not selected } } return QGraphicsPathItem::itemChange(change, value); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::mousePressEvent(QGraphicsSceneMouseEvent *event) { // Special for not selectable item first need to call standard mousePressEvent then accept event QGraphicsPathItem::mousePressEvent(event); // Somehow clicking on notselectable object do not clean previous selections. if (not (flags() & ItemIsSelectable) && scene()) { scene()->clearSelection(); } if (flags() & QGraphicsItem::ItemIsMovable) { if (event->button() == Qt::LeftButton && event->type() != QEvent::GraphicsSceneMouseDoubleClick) { SetOverrideCursor(cursorArrowCloseHand, 1, 1); } } if (event->button() == Qt::LeftButton && event->type() != QEvent::GraphicsSceneMouseDoubleClick) { doc->SelectedDetail(id); emit ChoosedTool(id, SceneObject::Detail); } event->accept();// Special for not selectable item first need to call standard mousePressEvent then accept event } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { if (event->button() == Qt::LeftButton) { //Disable cursor-arrow-closehand RestoreOverrideCursor(cursorArrowCloseHand); } QGraphicsPathItem::mouseReleaseEvent(event); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::hoverMoveEvent(QGraphicsSceneHoverEvent *event) { Q_UNUSED(event); if (flags() & QGraphicsItem::ItemIsMovable) { SetOverrideCursor(cursorArrowOpenHand, 1, 1); } } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::hoverEnterEvent(QGraphicsSceneHoverEvent *event) { Q_UNUSED(event); if (flags() & QGraphicsItem::ItemIsMovable) { SetOverrideCursor(cursorArrowOpenHand, 1, 1); } } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) { Q_UNUSED(event); //Disable cursor-arrow-openhand if (flags() & QGraphicsItem::ItemIsMovable) { RestoreOverrideCursor(cursorArrowOpenHand); } } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::contextMenuEvent(QGraphicsSceneContextMenuEvent *event) { QMenu menu; QAction *actionOption = menu.addAction(QIcon::fromTheme("preferences-other"), tr("Options")); QAction *inLayoutOption = menu.addAction(tr("In layout")); inLayoutOption->setCheckable(true); const VPiece detail = VAbstractTool::data.GetPiece(id); inLayoutOption->setChecked(detail.IsInLayout()); QAction *actionRemove = menu.addAction(QIcon::fromTheme("edit-delete"), tr("Delete")); _referens > 1 ? actionRemove->setEnabled(false) : actionRemove->setEnabled(true); QAction *selectedAction = menu.exec(event->screenPos()); if (selectedAction == actionOption) { auto *dialog = new DialogSeamAllowance(getData(), id, qApp->getMainWindow()); dialog->EnableApply(true); m_dialog = dialog; m_dialog->setModal(true); connect(m_dialog.data(), &DialogTool::DialogClosed, this, &VToolSeamAllowance::FullUpdateFromGuiOk); connect(m_dialog.data(), &DialogTool::DialogApplied, this, &VToolSeamAllowance::FullUpdateFromGuiApply); SetDialog(); m_dialog->show(); } else if (selectedAction == inLayoutOption) { TogglePieceInLayout *togglePrint = new TogglePieceInLayout(id, selectedAction->isChecked(), &(VAbstractTool::data), doc); connect(togglePrint, &TogglePieceInLayout::UpdateList, doc, &VAbstractPattern::CheckInLayoutList); qApp->getUndoStack()->push(togglePrint); } else if (selectedAction == actionRemove) { try { DeleteTool(); } catch(const VExceptionToolWasDeleted &e) { Q_UNUSED(e); return;//Leave this method immediately!!! } return; //Leave this method immediately after call!!! } } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::keyReleaseEvent(QKeyEvent *event) { switch (event->key()) { case Qt::Key_Delete: try { DeleteTool(); } catch(const VExceptionToolWasDeleted &e) { Q_UNUSED(e); return;//Leave this method immediately!!! } break; default: break; } QGraphicsPathItem::keyReleaseEvent ( event ); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::SetDialog() { SCASSERT(not m_dialog.isNull()); DialogSeamAllowance *dialogTool = qobject_cast(m_dialog); SCASSERT(dialogTool != nullptr); dialogTool->SetPiece(VAbstractTool::data.GetPiece(id)); dialogTool->EnableApply(true); } //--------------------------------------------------------------------------------------------------------------------- VToolSeamAllowance::VToolSeamAllowance(VAbstractPattern *doc, VContainer *data, const quint32 &id, const Source &typeCreation, VMainGraphicsScene *scene, const QString &drawName, QGraphicsItem *parent) : VAbstractTool(doc, data, id), QGraphicsPathItem(parent), m_dialog(), m_sceneDetails(scene), m_drawName(drawName), m_seamAllowance(new VNoBrushScalePathItem(this)), m_dataLabel(new VTextGraphicsItem(this)), m_patternInfo(new VTextGraphicsItem(this)), m_grainLine(new VGrainlineItem(this)) { VPiece detail = data->GetPiece(id); InitNodes(detail, scene); InitCSAPaths(detail); InitInternalPaths(detail); this->setFlag(QGraphicsItem::ItemIsMovable, true); this->setFlag(QGraphicsItem::ItemIsSelectable, true); RefreshGeometry(); m_seamAllowance->setBrush(QBrush(Qt::FDiagPattern)); this->setFlag(QGraphicsItem::ItemSendsGeometryChanges, true); this->setFlag(QGraphicsItem::ItemIsFocusable, true);// For keyboard input focus connect(scene, &VMainGraphicsScene::EnableToolMove, this, &VToolSeamAllowance::EnableToolMove); connect(scene, &VMainGraphicsScene::ItemClicked, this, &VToolSeamAllowance::ResetChildren); ToolCreation(typeCreation); setAcceptHoverEvents(true); connect(m_dataLabel, &VTextGraphicsItem::SignalMoved, this, &VToolSeamAllowance::SaveMoveDetail); connect(m_dataLabel, &VTextGraphicsItem::SignalResized, this, &VToolSeamAllowance::SaveResizeDetail); connect(m_dataLabel, &VTextGraphicsItem::SignalRotated, this, &VToolSeamAllowance::SaveRotationDetail); connect(m_patternInfo, &VTextGraphicsItem::SignalMoved, this, &VToolSeamAllowance::SaveMovePattern); connect(m_patternInfo, &VTextGraphicsItem::SignalResized, this, &VToolSeamAllowance::SaveResizePattern); connect(m_patternInfo, &VTextGraphicsItem::SignalRotated, this, &VToolSeamAllowance::SaveRotationPattern); connect(m_grainLine, &VGrainlineItem::SignalMoved, this, &VToolSeamAllowance::SaveMoveGrainline); connect(m_grainLine, &VGrainlineItem::SignalResized, this, &VToolSeamAllowance::SaveResizeGrainline); connect(m_grainLine, &VGrainlineItem::SignalRotated, this, &VToolSeamAllowance::SaveRotateGrainline); connect(doc, &VAbstractPattern::patternChanged, this, &VToolSeamAllowance::UpdatePatternInfo); connect(doc, &VAbstractPattern::CheckLayout, this, &VToolSeamAllowance::UpdateLabel); connect(doc, &VAbstractPattern::CheckLayout, this, &VToolSeamAllowance::UpdatePatternInfo); connect(doc, &VAbstractPattern::CheckLayout, this, &VToolSeamAllowance::UpdateGrainline); connect(m_sceneDetails, &VMainGraphicsScene::DimensionsChanged, this, &VToolSeamAllowance::UpdateLabel); connect(m_sceneDetails, &VMainGraphicsScene::DimensionsChanged, this, &VToolSeamAllowance::UpdatePatternInfo); connect(m_sceneDetails, &VMainGraphicsScene::LanguageChanged, this, &VToolSeamAllowance::retranslateUi); UpdateLabel(); UpdatePatternInfo(); UpdateGrainline(); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::RefreshGeometry() { this->setFlag(QGraphicsItem::ItemSendsGeometryChanges, false); const VPiece detail = VAbstractTool::data.GetPiece(id); QPainterPath mainPath = detail.MainPathPath(this->getData()); this->setPath(mainPath); this->setPos(detail.GetMx(), detail.GetMy()); if (detail.IsSeamAllowance()) { mainPath.addPath(detail.SeamAllowancePath(this->getData())); mainPath.setFillRule(Qt::OddEvenFill); m_seamAllowance->setPath(mainPath); } else { m_seamAllowance->setPath(QPainterPath()); } this->setFlag(QGraphicsItem::ItemSendsGeometryChanges, true); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::SaveDialogChange() { SCASSERT(not m_dialog.isNull()); DialogSeamAllowance *dialogTool = qobject_cast(m_dialog.data()); SCASSERT(dialogTool != nullptr); const VPiece newDet = dialogTool->GetPiece(); const VPiece oldDet = VAbstractTool::data.GetPiece(id); SavePieceOptions *saveCommand = new SavePieceOptions(oldDet, newDet, doc, id); connect(saveCommand, &SavePieceOptions::NeedLiteParsing, doc, &VAbstractPattern::LiteParseTree); qApp->getUndoStack()->push(saveCommand); UpdateLabel(); } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::InitNodes(const VPiece &detail, VMainGraphicsScene *scene) { for (int i = 0; i< detail.GetPath().CountNodes(); ++i) { switch (detail.GetPath().at(i).GetTypeTool()) { case (Tool::NodePoint): { VNodePoint *tool = InitTool(scene, detail.GetPath().at(i).GetId()); connect(tool, &VNodePoint::ShowContextMenu, this, &VToolSeamAllowance::contextMenuEvent); break; } case (Tool::NodeArc): case (Tool::NodeElArc): case (Tool::NodeSpline): case (Tool::NodeSplinePath): doc->IncrementReferens(VAbstractTool::data.GetGObject(detail.GetPath().at(i).GetId())->getIdTool()); break; default: qDebug()<<"Get wrong tool type. Ignore."; break; } } } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::InitCSAPaths(const VPiece &detail) { QVector records = detail.GetCustomSARecords(); for (int i = 0; i < records.size(); ++i) { doc->IncrementReferens(records.at(i).path); } } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::InitInternalPaths(const VPiece &detail) { QVector records = detail.GetInternalPaths(); for (int i = 0; i < records.size(); ++i) { VToolPiecePath *tool = qobject_cast(doc->getTool(records.at(i))); SCASSERT(tool != nullptr); tool->setParentItem(this); tool->SetParentType(ParentType::Item); tool->show(); doc->IncrementReferens(records.at(i)); } } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::DeleteTool(bool ask) { DeletePiece *delDet = new DeletePiece(doc, id, VAbstractTool::data.GetPiece(id)); if (ask) { if (ConfirmDeletion() == QMessageBox::No) { return; } /* If UnionDetails tool delete detail no need emit FullParsing.*/ connect(delDet, &DeletePiece::NeedFullParsing, doc, &VAbstractPattern::NeedFullParsing); } // If UnionDetails tool delete the detail this object will be deleted only after full parse. // Deleting inside UnionDetails cause crash. // Because this object should be inactive from no one we disconnect all signals that may cause a crash // KEEP THIS LIST ACTUALL!!! disconnect(doc, 0, this, 0); if (QGraphicsScene *toolScene = scene()) { disconnect(toolScene, 0, this, 0); } disconnect(m_dataLabel, 0, this, 0); disconnect(m_patternInfo, 0, this, 0); disconnect(m_grainLine, 0, this, 0); disconnect(m_sceneDetails, 0, this, 0); hide();// User shouldn't see this object qApp->getUndoStack()->push(delDet); // Throw exception, this will help prevent case when we forget to immediately quit function. VExceptionToolWasDeleted e("Tool was used after deleting."); throw e; } //--------------------------------------------------------------------------------------------------------------------- void VToolSeamAllowance::ToolCreation(const Source &typeCreation) { if (typeCreation == Source::FromGui || typeCreation == Source::FromTool) { AddToFile(); if (typeCreation != Source::FromTool) { qApp->getUndoStack()->endMacro(); } } else { RefreshDataInFile(); } } //--------------------------------------------------------------------------------------------------------------------- template /** * @brief InitTool initial node item on scene * @param scene pointer to scene. * @param toolId if of tool object. */ Tool *VToolSeamAllowance::InitTool(VMainGraphicsScene *scene, quint32 toolId) { Tool *tool = qobject_cast(doc->getTool(toolId)); SCASSERT(tool != nullptr); connect(tool, &Tool::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem); tool->setParentItem(this); tool->SetParentType(ParentType::Item); doc->IncrementReferens(toolId); return tool; }