mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
clazy is a compiler plugin which allows clang to understand Qt semantics. You get more than 50 Qt related compiler warnings, ranging from unneeded memory allocations to misusage of API, including fix-its for automatic refactoring. https://invent.kde.org/sdk/clazy
125 lines
3.9 KiB
C++
125 lines
3.9 KiB
C++
/*
|
|
Copyright 2006-2025 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 "rotateselectioncommand.h"
|
|
|
|
#include "../QPropertyUndoCommand/qpropertyundocommand.h"
|
|
#include "../diagram.h"
|
|
#include "../qet.h"
|
|
#include "../qetgraphicsitem/conductor.h"
|
|
#include "../qetgraphicsitem/conductortextitem.h"
|
|
#include "../qetgraphicsitem/diagramimageitem.h"
|
|
#include "../qetgraphicsitem/dynamicelementtextitem.h"
|
|
#include "../qetgraphicsitem/element.h"
|
|
#include "../qetgraphicsitem/elementtextitemgroup.h"
|
|
#include "../qetgraphicsitem/independenttextitem.h"
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
RotateSelectionCommand::RotateSelectionCommand(Diagram *diagram, qreal angle, QUndoCommand *parent) :
|
|
QUndoCommand(parent),
|
|
m_diagram(diagram)
|
|
{
|
|
setText(QObject::tr("Pivoter la selection"));
|
|
|
|
if(!m_diagram->isReadOnly())
|
|
{
|
|
for (QGraphicsItem *item : m_diagram->selectedItems())
|
|
{
|
|
switch (item->type())
|
|
{
|
|
case Element::Type:
|
|
m_undo << new QPropertyUndoCommand(item->toGraphicsObject(), "rotation", QVariant(item->rotation()), QVariant(item->rotation()+angle), this);
|
|
break;
|
|
case ConductorTextItem::Type:
|
|
{
|
|
m_cond_text << static_cast<ConductorTextItem *>(item);
|
|
m_undo << new QPropertyUndoCommand(item->toGraphicsObject(), "rotation", QVariant(item->rotation()), QVariant(item->rotation()+angle), this);
|
|
}
|
|
break;
|
|
case IndependentTextItem::Type:
|
|
m_undo << new QPropertyUndoCommand(item->toGraphicsObject(), "rotation", QVariant(item->rotation()), QVariant(item->rotation()+angle), this);
|
|
break;
|
|
case DynamicElementTextItem::Type:
|
|
{
|
|
if(item->parentItem() && !item->parentItem()->isSelected())
|
|
m_undo << new QPropertyUndoCommand(item->toGraphicsObject(), "rotation", QVariant(item->rotation()), QVariant(item->rotation()+angle), this);
|
|
}
|
|
break;
|
|
case QGraphicsItemGroup::Type:
|
|
{
|
|
if(ElementTextItemGroup *grp = dynamic_cast<ElementTextItemGroup *>(item))
|
|
if(grp->parentElement() && !grp->parentElement()->isSelected())
|
|
m_undo << new QPropertyUndoCommand(grp, "rotation", QVariant(item->rotation()), QVariant(item->rotation()+angle), this);
|
|
}
|
|
break;
|
|
case DiagramImageItem::Type:
|
|
m_undo << new QPropertyUndoCommand(item->toGraphicsObject(), "rotation", QVariant(item->rotation()), QVariant(item->rotation()+angle), this);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
for (QPropertyUndoCommand* undo : std::as_const(m_undo))
|
|
undo->setAnimated(true, false);
|
|
}
|
|
}
|
|
|
|
/**
|
|
@brief RotateSelectionCommand::undo
|
|
*/
|
|
void RotateSelectionCommand::undo()
|
|
{
|
|
m_diagram->showMe();
|
|
QUndoCommand::undo();
|
|
|
|
for (const QPointer<ConductorTextItem>& cti : std::as_const(m_cond_text))
|
|
{
|
|
cti->forceRotateByUser(m_rotate_by_user.value(cti.data()));
|
|
if(!cti->wasRotateByUser())
|
|
cti->parentConductor()->calculateTextItemPosition();
|
|
}
|
|
}
|
|
|
|
/**
|
|
@brief RotateSelectionCommand::redo
|
|
*/
|
|
void RotateSelectionCommand::redo()
|
|
{
|
|
m_diagram->showMe();
|
|
QUndoCommand::redo();
|
|
|
|
for (const QPointer<ConductorTextItem>& cti : std::as_const(m_cond_text))
|
|
{
|
|
m_rotate_by_user.insert(cti, cti->wasRotateByUser());
|
|
cti->forceRotateByUser(true);
|
|
}
|
|
}
|
|
|
|
/**
|
|
@brief RotateSelectionCommand::isValid
|
|
@return true if this command rotate a least one item.
|
|
*/
|
|
bool RotateSelectionCommand::isValid()
|
|
{
|
|
if(childCount())
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|