qelectrotech-source-mirror/sources/undocommand/changeelementinformationcommand.cpp

122 lines
3.4 KiB
C++
Raw Normal View History

/*
2023-01-01 17:05:57 +01:00
Copyright 2006-2023 The QElectroTech Team
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 "changeelementinformationcommand.h"
2020-12-08 19:57:35 +01:00
#include "../diagram.h"
#include "../qetgraphicsitem/element.h"
#include <QObject>
/**
2020-08-16 11:19:36 +02:00
@brief ChangeElementInformationCommand::ChangeElementInformationCommand
Default constructor
@param elmt : element to change information
@param old_info : old info of element
@param new_info : new info of element
2020-08-20 21:57:35 +02:00
@param parent
2020-08-16 11:19:36 +02:00
*/
2020-08-16 14:23:42 +02:00
ChangeElementInformationCommand::ChangeElementInformationCommand(
Element *elmt,
const DiagramContext &old_info,
const DiagramContext &new_info,
2020-08-16 14:23:42 +02:00
QUndoCommand *parent) :
QUndoCommand (parent)
{
2020-12-02 18:47:28 +01:00
m_map.insert(QPointer<Element>(elmt), qMakePair(old_info, new_info));
2020-08-16 14:23:42 +02:00
setText(QObject::tr("Modifier les informations de l'élément : %1")
.arg(elmt -> name()));
}
ChangeElementInformationCommand::ChangeElementInformationCommand(QMap<QPointer<Element>, QPair<DiagramContext, DiagramContext> > map,
QUndoCommand *parent) :
QUndoCommand(parent),
m_map(map)
{
setText(QObject::tr("Modifier les informations de plusieurs éléments"));
}
bool ChangeElementInformationCommand::mergeWith(const QUndoCommand *other)
{
if (id() != other->id())
return false;
ChangeElementInformationCommand const *other_undo = static_cast<const ChangeElementInformationCommand*>(other);
//In case of other undo_undo have the same elements as keys
if (m_map.size() == other_undo->m_map.size())
{
for (auto key : other_undo->m_map.keys()) {
if (!m_map.keys().contains(key)) {
return false;
}
}
2020-12-02 18:47:28 +01:00
//Other_undo will be merged with this undo :
//Replace the new_info values of this m_map
//by the new_info values of other_undo's m_map
for (auto key : other_undo->m_map.keys())
{
m_map.insert(key,
qMakePair(
m_map.value(key).first,
other_undo->m_map.value(key).second));
}
return true;
}
else {
return false;
}
}
/**
2020-08-16 11:19:36 +02:00
@brief ChangeElementInformationCommand::undo
*/
2020-09-07 22:03:40 +02:00
void ChangeElementInformationCommand::undo()
{
for (auto element : m_map.keys()) {
element->setElementInformations(m_map.value(element).first);
}
updateProjectDB();
}
/**
2020-08-16 11:19:36 +02:00
@brief ChangeElementInformationCommand::redo
*/
2020-09-07 22:03:40 +02:00
void ChangeElementInformationCommand::redo()
{
for (auto element : m_map.keys()) {
element->setElementInformations(m_map.value(element).second);
}
updateProjectDB();
}
void ChangeElementInformationCommand::updateProjectDB()
{
auto elmt = m_map.keys().first().data();
if(elmt && elmt->diagram())
{
//need to have a list of element instead of QPointer<Element>
//for the function elementInfoChange of the database
QList<Element *> list_;
for (auto p_elmt : m_map.keys())
list_ << p_elmt.data();
elmt->diagram()->project()->dataBase()->elementInfoChanged(list_);
}
}