/************************************************************************ ** ** @file addgroup.h ** @author Ronan Le Tiec ** @date 31 3, 2018 ** ** @brief ** @copyright ** This source code is part of the Valentina 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 "additemtogroup.h" #include #include #include "../vmisc/vabstractapplication.h" #include "../vmisc/def.h" #include "../vwidgets/vmaingraphicsview.h" #include "../ifc/xml/vabstractpattern.h" #include "../vtools/tools/vdatatool.h" #include "vundocommand.h" //--------------------------------------------------------------------------------------------------------------------- AddItemToGroup::AddItemToGroup(const QDomElement &xml, VAbstractPattern *doc, quint32 groupId, QUndoCommand *parent) : VUndoCommand(xml, doc, parent), nameActivDraw(doc->GetNameActivPP()) { setText(tr("Add item to group")); nodeId = groupId; } //--------------------------------------------------------------------------------------------------------------------- void AddItemToGroup::undo() { qCDebug(vUndo, "Undo the add item to group"); performUndoRedo(true); } //--------------------------------------------------------------------------------------------------------------------- void AddItemToGroup::redo() { qCDebug(vUndo, "Redo the add item to group"); performUndoRedo(false); } //--------------------------------------------------------------------------------------------------------------------- void AddItemToGroup::performUndoRedo(bool isUndo) { doc->ChangeActivPP(nameActivDraw);//Without this user will not see this change QDomElement group = doc->elementById(nodeId, VAbstractPattern::TagGroup); if (group.isElement()) { if(isUndo) { if (group.removeChild(xml).isNull()) { qCDebug(vUndo, "Can't delete item."); return; } // set the item visible. Because if the undo is done when unvisible and it's not in any group after the // undo, it stays unvisible until the entire drawing is completly rerendered. quint32 objectId = doc->GetParametrUInt(xml, QStringLiteral("object"), NULL_ID_STR); quint32 toolId = doc->GetParametrUInt(xml, QStringLiteral("tool"), NULL_ID_STR); VDataTool* tool = VAbstractPattern::getTool(toolId); tool->GroupVisibility(objectId,true); } else // is redo { if (group.appendChild(xml).isNull()) { qCDebug(vUndo, "Can't add item."); return; } } doc->SetModified(true); emit qApp->getCurrentDocument()->patternChanged(false); QDomElement groups = doc->CreateGroups(); if (not groups.isNull()) { doc->ParseGroups(groups); } else { qCDebug(vUndo, "Can't get tag Groups."); return; } emit UpdateGroups(); } else { qCDebug(vUndo, "Can't get group by id = %u.", nodeId); return; } VMainGraphicsView::NewSceneRect(qApp->getCurrentScene(), qApp->getSceneView()); if (qApp->GetDrawMode() == Draw::Calculation) { emit doc->SetCurrentPP(nameActivDraw);//Return current pattern piece after undo } }