QElectroTech 0.100.0-dev
Loading...
Searching...
No Matches
openelmtcommand.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 OPENELMTCOMMAND_H
19#define OPENELMTCOMMAND_H
20
21#include <QUndoCommand>
22#include <QDomDocument>
23#include <QPointer>
24
25class ElementScene;
26class QGraphicsItem;
27
28class OpenElmtCommand : public QUndoCommand
29{
30 public:
31 OpenElmtCommand(const QDomDocument &document, QPointer<ElementScene> scene, QUndoCommand *parent = nullptr);
32 ~OpenElmtCommand() override;
33
34 virtual void undo() override;
35 virtual void redo() override;
36
37 private:
38 QDomDocument m_document;
39 bool m_first_redo{true};
40 QPointer<ElementScene> m_scene;
41 QList<QGraphicsItem *> m_graphics_item;
42};
43
44#endif // OPENELMTCOMMAND_H
The ElementScene class This class is the canvas allowing the visual edition of an electrical element....
Definition elementscene.h:46
Definition openelmtcommand.h:29
~OpenElmtCommand() override
Definition openelmtcommand.cpp:34
bool m_first_redo
Definition openelmtcommand.h:39
QList< QGraphicsItem * > m_graphics_item
Definition openelmtcommand.h:41
QDomDocument m_document
Definition openelmtcommand.h:38
virtual void undo() override
Definition openelmtcommand.cpp:41
virtual void redo() override
Definition openelmtcommand.cpp:46
QPointer< ElementScene > m_scene
Definition openelmtcommand.h:40