LibrePCB Developers Documentation
cmdlistelementremove.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_CMDLISTELEMENTREMOVE_H
21#define LIBREPCB_EDITOR_CMDLISTELEMENTREMOVE_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include "../undocommand.h"
27
29
30#include <QtCore>
31
32/*******************************************************************************
33 * Namespace / Forward Declarations
34 ******************************************************************************/
35namespace librepcb {
36namespace editor {
37
38/*******************************************************************************
39 * Class CmdListElementRemove
40 ******************************************************************************/
41
45template <typename T, typename P, typename... OnEditedArgs>
46class CmdListElementRemove final : public UndoCommand {
47public:
48 // Constructors / Destructor
52 const T* element) noexcept
53 : UndoCommand(tr("Remove %1").arg(P::tagname)),
54 mList(list),
55 mElement(element),
56 mIndex(-1) {}
58
59 // Operator Overloadings
61
62private: // Methods
64 bool performExecute() override {
66 Q_ASSERT(mIndex >= 0);
67 performRedo(); // can throw
68 return true;
69 }
70
73
75 void performRedo() override {
77 Q_ASSERT(mMemorizedElement.get() == mElement);
78 }
79
80private: // Data
81 SerializableObjectList<T, P, OnEditedArgs...>& mList;
82 const T* mElement;
83 std::shared_ptr<T> mMemorizedElement;
84 int mIndex;
85};
86
87/*******************************************************************************
88 * End of File
89 ******************************************************************************/
90
91} // namespace editor
92} // namespace librepcb
93
94#endif
std::shared_ptr< T > take(int index) noexcept
Definition: serializableobjectlist.h:351
int insert(int index, const std::shared_ptr< T > &obj) noexcept
Definition: serializableobjectlist.h:336
int indexOf(const T *obj) const noexcept
Definition: serializableobjectlist.h:219
The CmdListElementRemove class.
Definition: cmdlistelementremove.h:46
void performRedo() override
Redo the command.
Definition: cmdlistelementremove.h:75
int mIndex
Definition: cmdlistelementremove.h:84
std::shared_ptr< T > mMemorizedElement
Definition: cmdlistelementremove.h:83
void performUndo() override
Undo the command.
Definition: cmdlistelementremove.h:72
const T * mElement
Definition: cmdlistelementremove.h:82
CmdListElementRemove(const CmdListElementRemove &other)=delete
~CmdListElementRemove() noexcept
Definition: cmdlistelementremove.h:57
SerializableObjectList< T, P, OnEditedArgs... > & mList
Definition: cmdlistelementremove.h:81
CmdListElementRemove & operator=(const CmdListElementRemove &rhs)=delete
bool performExecute() override
Execute the command the first time.
Definition: cmdlistelementremove.h:64
CmdListElementRemove(SerializableObjectList< T, P, OnEditedArgs... > &list, const T *element) noexcept
Definition: cmdlistelementremove.h:51
The UndoCommand class represents a command which you can undo/redo.
Definition: undocommand.h:46
Definition: occmodel.cpp:77