LibrePCB Developers Documentation
cmdreplacedevice.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_CMDREPLACEDEVICE_H
21#define LIBREPCB_EDITOR_CMDREPLACEDEVICE_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include "../../undocommandgroup.h"
27
29
30#include <QtCore>
31
32/*******************************************************************************
33 * Namespace / Forward Declarations
34 ******************************************************************************/
35namespace librepcb {
36
37class BI_Device;
38class Board;
39class Workspace;
40
41namespace editor {
42
43/*******************************************************************************
44 * Class CmdReplaceDevice
45 ******************************************************************************/
46
50class CmdReplaceDevice final : public UndoCommandGroup {
51public:
52 // Constructors / Destructor
53 CmdReplaceDevice(Workspace& workspace, Board& board, BI_Device& device,
54 const Uuid& newDeviceUuid,
55 const tl::optional<Uuid>& newFootprintUuid) noexcept;
56 ~CmdReplaceDevice() noexcept;
57
58private:
59 // Private Methods
60
62 bool performExecute() override;
63
64 // Private Member Variables
65
66 // Attributes from the constructor
71 tl::optional<Uuid> mNewFootprintUuid;
72};
73
74/*******************************************************************************
75 * End of File
76 ******************************************************************************/
77
78} // namespace editor
79} // namespace librepcb
80
81#endif
The BI_Device class.
Definition: bi_device.h:57
The Board class represents a PCB of a project and is always part of a circuit.
Definition: board.h:73
The Uuid class is a replacement for QUuid to get UUID strings without {} braces.
Definition: uuid.h:58
The Workspace class represents a workspace with all its data (library, projects, settings,...
Definition: workspace.h:54
The CmdReplaceDevice class.
Definition: cmdreplacedevice.h:50
~CmdReplaceDevice() noexcept
Definition: cmdreplacedevice.cpp:64
Board & mBoard
Definition: cmdreplacedevice.h:68
CmdReplaceDevice(Workspace &workspace, Board &board, BI_Device &device, const Uuid &newDeviceUuid, const tl::optional< Uuid > &newFootprintUuid) noexcept
Definition: cmdreplacedevice.cpp:52
Uuid mNewDeviceUuid
Definition: cmdreplacedevice.h:70
Workspace & mWorkspace
Definition: cmdreplacedevice.h:67
BI_Device & mDeviceInstance
Definition: cmdreplacedevice.h:69
bool performExecute() override
Execute the command the first time.
Definition: cmdreplacedevice.cpp:71
tl::optional< Uuid > mNewFootprintUuid
Definition: cmdreplacedevice.h:71
The UndoCommandGroup class makes it possible to pack multiple undo commands together (it acts as a pa...
Definition: undocommandgroup.h:44
Definition: occmodel.cpp:77