QElectroTech 0.100.0-dev
Loading...
Searching...
No Matches
addpartcommand.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 ADDPARTCOMMAND_H
19#define ADDPARTCOMMAND_H
20
21#include <QUndoCommand>
22#include <QPointer>
23#include <QVector>
24
25class ElementScene;
26class QGraphicsItem;
27
32class AddPartCommand : public QUndoCommand
33{
34 public:
35 AddPartCommand(const QString &text, QPointer<ElementScene> scene, QGraphicsItem *part, QUndoCommand *parent = nullptr);
36 ~AddPartCommand() override;
37
38 private:
40
41 public:
42 void undo() override;
43 void redo() override;
44
45 private:
46 QPointer<ElementScene> m_scene;
47 QVector<QGraphicsItem *> m_part;
48 bool m_first_redo{true};
49};
50
51#endif // ADDPARTCOMMAND_H
The AddPartCommand class Undo command use to add a graphics part into an element scene.
Definition addpartcommand.h:33
AddPartCommand(const AddPartCommand &)
bool m_first_redo
Definition addpartcommand.h:48
QVector< QGraphicsItem * > m_part
Definition addpartcommand.h:47
~AddPartCommand() override
AddPartCommand::~AddPartCommand.
Definition addpartcommand.cpp:43
void redo() override
AddPartCommand::redo.
Definition addpartcommand.cpp:63
void undo() override
AddPartCommand::undo.
Definition addpartcommand.cpp:53
QPointer< ElementScene > m_scene
Definition addpartcommand.h:46
The ElementScene class This class is the canvas allowing the visual edition of an electrical element....
Definition elementscene.h:46