QElectroTech 0.100.0-dev
Loading...
Searching...
No Matches
deletepartscommand.h
Go to the documentation of this file.
1/*
2 Copyright 2006-2024 The QElectroTech Team
3 This file is part of QElectroTech.
4
5 QElectroTech is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 2 of the License, or
8 (at your option) any later version.
9
10 QElectroTech is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
17*/
18#ifndef DELETEPARTSCOMMAND_H
19#define DELETEPARTSCOMMAND_H
20
21#include <QUndoCommand>
22#include <QPointer>
23#include <QVector>
24
25class ElementScene;
26class QGraphicsItem;
27
32class DeletePartsCommand : public QUndoCommand
33{
34 public:
35 DeletePartsCommand(QPointer<ElementScene> scene, const QVector<QGraphicsItem *> &parts, QUndoCommand *parent = nullptr);
36 ~DeletePartsCommand() override;
37 private:
39
40 public:
41 void undo() override;
42 void redo() override;
43
44 private:
45 QPointer<ElementScene> m_scene;
46 QVector<QGraphicsItem *> m_parts;
47};
48
49#endif // DELETEPARTSCOMMAND_H
The DeletePartsCommand class Class used to remove part from an element scene.
Definition deletepartscommand.h:33
QPointer< ElementScene > m_scene
Definition deletepartscommand.h:45
void undo() override
DeletePartsCommand::undo.
Definition deletepartscommand.cpp:51
QVector< QGraphicsItem * > m_parts
Definition deletepartscommand.h:46
DeletePartsCommand(const DeletePartsCommand &)
~DeletePartsCommand() override
DeletePartsCommand::~DeletePartsCommand.
Definition deletepartscommand.cpp:41
void redo() override
DeletePartsCommand::redo.
Definition deletepartscommand.cpp:61
The ElementScene class This class is the canvas allowing the visual edition of an electrical element....
Definition elementscene.h:46