LibrePCB Developers Documentation
cmdlibraryelementedit.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_CMDLIBRARYELEMENTEDIT_H
21#define LIBREPCB_EDITOR_CMDLIBRARYELEMENTEDIT_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
27
29
30#include <QtCore>
31
32/*******************************************************************************
33 * Namespace / Forward Declarations
34 ******************************************************************************/
35namespace librepcb {
36namespace editor {
37
38/*******************************************************************************
39 * Class CmdLibraryElementEdit
40 ******************************************************************************/
41
46public:
47 // Constructors / Destructor
50 explicit CmdLibraryElementEdit(LibraryElement& element,
51 const QString& text) noexcept;
52 virtual ~CmdLibraryElementEdit() noexcept;
53
54 // Setters
55 void setCategories(const QSet<Uuid>& uuids) noexcept;
56 void setResources(const ResourceList& resources) noexcept;
57
58 // Operator Overloadings
59 CmdLibraryElementEdit& operator=(const CmdLibraryElementEdit& rhs) = delete;
60
61protected: // Methods
63 virtual bool performExecute() override;
64
66 virtual void performUndo() override;
67
69 virtual void performRedo() override;
70
71private: // Data
73
78};
79
80/*******************************************************************************
81 * End of File
82 ******************************************************************************/
83
84} // namespace editor
85} // namespace librepcb
86
87#endif
The LibraryElement class extends the LibraryBaseElement class with some attributes and methods which ...
Definition: libraryelement.h:45
The Uuid class is a replacement for QUuid to get UUID strings without {} braces.
Definition: uuid.h:58
The CmdLibraryBaseElementEdit class.
Definition: cmdlibrarybaseelementedit.h:45
The CmdLibraryElementEdit class.
Definition: cmdlibraryelementedit.h:45
virtual void performRedo() override
Redo the command.
Definition: cmdlibraryelementedit.cpp:82
void setCategories(const QSet< Uuid > &uuids) noexcept
Definition: cmdlibraryelementedit.cpp:54
ResourceList mNewResources
Definition: cmdlibraryelementedit.h:77
virtual void performUndo() override
Undo the command.
Definition: cmdlibraryelementedit.cpp:76
void setResources(const ResourceList &resources) noexcept
Definition: cmdlibraryelementedit.cpp:59
LibraryElement & mElement
Definition: cmdlibraryelementedit.h:72
QSet< Uuid > mOldCategories
Definition: cmdlibraryelementedit.h:74
QSet< Uuid > mNewCategories
Definition: cmdlibraryelementedit.h:75
CmdLibraryElementEdit(const CmdLibraryElementEdit &other)=delete
ResourceList mOldResources
Definition: cmdlibraryelementedit.h:76
virtual bool performExecute() override
Execute the command the first time.
Definition: cmdlibraryelementedit.cpp:69
virtual ~CmdLibraryElementEdit() noexcept
Definition: cmdlibraryelementedit.cpp:47
Definition: occmodel.cpp:77