/* Copyright 2006-2026 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 . */ #ifndef REMOVEDIAGRAMCOMMAND_H #define REMOVEDIAGRAMCOMMAND_H #include #include class QETProject; class Diagram; /** @brief The RemoveDiagramCommand class Undo/redo support for removing a folio (diagram) from a project. redo() detaches the diagram from the project (and, reactively, its ProjectView tab) without destroying it; undo() reinserts it at its original position. The diagram is only actually destroyed when this command itself is destroyed while the diagram is detached (i.e. while the removal is still in effect). */ class RemoveDiagramCommand : public QUndoCommand { public: RemoveDiagramCommand(QETProject *project, Diagram *diagram, QUndoCommand *parent = nullptr); ~RemoveDiagramCommand() override; void undo() override; void redo() override; private: QPointer m_project; Diagram *m_diagram; int m_position; /// true while the diagram is detached from the project (i.e. the removal is in effect) bool m_owns_diagram = false; }; #endif // REMOVEDIAGRAMCOMMAND_H