2022-07-24 20:58:00 +02:00
|
|
|
/*
|
2024-03-29 10:09:48 +01:00
|
|
|
Copyright 2006-2024 The QElectroTech Team
|
2022-07-24 20:58:00 +02:00
|
|
|
This file is part of QElectroTech.
|
|
|
|
|
|
|
|
QElectroTech 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 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include "openelmtcommand.h"
|
|
|
|
#include "../elementscene.h"
|
|
|
|
|
|
|
|
#include <QDomDocument>
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
OpenElmtCommand::OpenElmtCommand(const QDomDocument &document,
|
|
|
|
QPointer<ElementScene> scene,
|
|
|
|
QUndoCommand *parent) :
|
|
|
|
QUndoCommand{parent},
|
|
|
|
m_document{document.cloneNode().toDocument()},
|
|
|
|
m_scene{scene}
|
|
|
|
{
|
|
|
|
setText(QObject::tr("Ouvrir un element"));
|
|
|
|
}
|
|
|
|
|
2022-07-26 16:17:47 +02:00
|
|
|
OpenElmtCommand::~OpenElmtCommand()
|
2022-07-24 20:58:00 +02:00
|
|
|
{
|
2022-07-26 16:17:47 +02:00
|
|
|
if (m_scene) {
|
|
|
|
m_scene->qgiManager().release(m_graphics_item);
|
2022-07-24 20:58:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-26 16:17:47 +02:00
|
|
|
void OpenElmtCommand::undo()
|
|
|
|
{
|
|
|
|
m_scene->removeItems(m_graphics_item.toVector());
|
|
|
|
}
|
|
|
|
|
2022-07-24 20:58:00 +02:00
|
|
|
void OpenElmtCommand::redo()
|
|
|
|
{
|
|
|
|
if (!m_scene) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_first_redo)
|
|
|
|
{
|
|
|
|
m_scene->fromXml(m_document, QPointF(), true, &m_graphics_item);
|
2022-07-26 16:17:47 +02:00
|
|
|
m_scene->qgiManager().manage(m_graphics_item);
|
2022-07-24 20:58:00 +02:00
|
|
|
m_first_redo = false;
|
|
|
|
|
|
|
|
//m_document is now useless,
|
|
|
|
//we clear it to use less memory
|
|
|
|
m_document.clear();
|
|
|
|
}
|
|
|
|
else {
|
2022-07-26 16:17:47 +02:00
|
|
|
m_scene->addItems(m_graphics_item.toVector());
|
2022-07-24 20:58:00 +02:00
|
|
|
}
|
2022-07-26 16:17:47 +02:00
|
|
|
|
2022-12-04 08:21:12 -05:00
|
|
|
#pragma message("@TODO uncommante slot_select when fixed, see itemChange function for each primitive")
|
2022-08-03 13:54:39 +02:00
|
|
|
//Commented because take a lot of time
|
|
|
|
//when a lot of primitive are loaded
|
|
|
|
//need work
|
|
|
|
//m_scene->slot_select(m_graphics_item);
|
2022-07-24 20:58:00 +02:00
|
|
|
}
|