LibrePCB Developers Documentation
undostackactiongroup.h
Go to the documentation of this file.
1/*
2 * LibrePCB - Professional EDA for everyone!
3 * Copyright (C) 2013 LibrePCB Developers, see AUTHORS.md for contributors.
4 * https://librepcb.org/
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBREPCB_EDITOR_UNDOSTACKACTIONGROUP_H
21#define LIBREPCB_EDITOR_UNDOSTACKACTIONGROUP_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include <QtCore>
27#include <QtWidgets>
28
29/*******************************************************************************
30 * Namespace / Forward Declarations
31 ******************************************************************************/
32namespace librepcb {
33namespace editor {
34
35class UndoStack;
36
37/*******************************************************************************
38 * Class UndoStackActionGroup
39 ******************************************************************************/
40
45class UndoStackActionGroup final : public QObject {
46 Q_OBJECT
47
48public:
49 // Constructors / Destructor
52 UndoStackActionGroup(QAction& undo, QAction& redo, QAction* save,
53 UndoStack* stack, QWidget* msgBoxParent) noexcept;
54 ~UndoStackActionGroup() noexcept;
55
56 // General Methods
57 void setUndoStack(UndoStack* stack) noexcept;
58
59 // Operator Overloadings
60 UndoStackActionGroup& operator=(const UndoStackActionGroup& rhs) = delete;
61
62private: // Methods
63 void undoTriggered() noexcept;
64 void redoTriggered() noexcept;
65 void unregisterFromStack() noexcept;
66 void registerToStack(UndoStack* stack) noexcept;
67
68private: // Data
69 QAction& mUndo;
70 QAction& mRedo;
71 QAction* mSave;
73 QWidget* mMsgBoxParent;
74 QList<QMetaObject::Connection> mConnections;
75};
76
77/*******************************************************************************
78 * End of File
79 ******************************************************************************/
80
81} // namespace editor
82} // namespace librepcb
83
84#endif
The UndoStackActionGroup class groups an undo-QAction and redo-QAction together and optionally connec...
Definition: undostackactiongroup.h:45
void unregisterFromStack() noexcept
Definition: undostackactiongroup.cpp:93
void redoTriggered() noexcept
Definition: undostackactiongroup.cpp:85
~UndoStackActionGroup() noexcept
Definition: undostackactiongroup.cpp:58
QWidget * mMsgBoxParent
Definition: undostackactiongroup.h:73
UndoStackActionGroup(const UndoStackActionGroup &other)=delete
void setUndoStack(UndoStack *stack) noexcept
Definition: undostackactiongroup.cpp:66
QList< QMetaObject::Connection > mConnections
Definition: undostackactiongroup.h:74
UndoStack * mStack
Definition: undostackactiongroup.h:72
QAction & mUndo
Definition: undostackactiongroup.h:69
void undoTriggered() noexcept
Definition: undostackactiongroup.cpp:77
QAction & mRedo
Definition: undostackactiongroup.h:70
void registerToStack(UndoStack *stack) noexcept
Definition: undostackactiongroup.cpp:105
QAction * mSave
Definition: undostackactiongroup.h:71
The UndoStack class holds UndoCommand objects and provides undo/redo commands.
Definition: undostack.h:106
Definition: occmodel.cpp:77