LibrePCB Developers Documentation
Loading...
Searching...
No Matches
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 updateState() noexcept;
66
67private: // Data
68 QAction& mUndo;
69 QAction& mRedo;
70 QAction* mSave;
71 QPointer<UndoStack> mStack;
72 QPointer<QWidget> mMsgBoxParent;
73};
74
75/*******************************************************************************
76 * End of File
77 ******************************************************************************/
78
79} // namespace editor
80} // namespace librepcb
81
82#endif
The UndoStackActionGroup class groups an undo-QAction and redo-QAction together and optionally connec...
Definition undostackactiongroup.h:45
QPointer< UndoStack > mStack
Definition undostackactiongroup.h:71
QPointer< QWidget > mMsgBoxParent
Definition undostackactiongroup.h:72
void redoTriggered() noexcept
Definition undostackactiongroup.cpp:93
~UndoStackActionGroup() noexcept
Definition undostackactiongroup.cpp:58
UndoStackActionGroup(const UndoStackActionGroup &other)=delete
void updateState() noexcept
Definition undostackactiongroup.cpp:101
void setUndoStack(UndoStack *stack) noexcept
Definition undostackactiongroup.cpp:66
QAction & mUndo
Definition undostackactiongroup.h:68
void undoTriggered() noexcept
Definition undostackactiongroup.cpp:85
QAction & mRedo
Definition undostackactiongroup.h:69
QAction * mSave
Definition undostackactiongroup.h:70
The UndoStack class holds UndoCommand objects and provides undo/redo commands.
Definition undostack.h:106
Definition occmodel.cpp:77