LibrePCB Developers Documentation
Loading...
Searching...
No Matches
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 if (mIndex < 0) {
67 throw LogicError(__FILE__, __LINE__, "Invalid list index.");
68 }
69 performRedo(); // can throw
70 return true;
71 }
72
75
77 void performRedo() override {
79 Q_ASSERT(mMemorizedElement.get() == mElement);
80 }
81
82private: // Data
83 SerializableObjectList<T, P, OnEditedArgs...>& mList;
84 const T* mElement;
85 std::shared_ptr<T> mMemorizedElement;
86 int mIndex;
87};
88
89/*******************************************************************************
90 * End of File
91 ******************************************************************************/
92
93} // namespace editor
94} // namespace librepcb
95
96#endif
The LogicError class.
Definition exceptions.h:181
The SerializableObjectList class implements a list of serializable objects.
Definition serializableobjectlist.h:96
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:77
int mIndex
Definition cmdlistelementremove.h:86
std::shared_ptr< T > mMemorizedElement
Definition cmdlistelementremove.h:85
void performUndo() override
Undo the command.
Definition cmdlistelementremove.h:74
const T * mElement
Definition cmdlistelementremove.h:84
CmdListElementRemove(const CmdListElementRemove &other)=delete
~CmdListElementRemove() noexcept
Definition cmdlistelementremove.h:57
SerializableObjectList< T, P, OnEditedArgs... > & mList
Definition cmdlistelementremove.h:83
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