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_PROJECT_CMDNETSIGNALEDIT_H
21 #define LIBREPCB_PROJECT_CMDNETSIGNALEDIT_H
22 
23 /*******************************************************************************
24  *  Includes
25  ******************************************************************************/
26 #include <librepcb/common/circuitidentifier.h>
27 #include <librepcb/common/undocommand.h>
28 
29 #include <QtCore>
30 
31 /*******************************************************************************
32  *  Namespace / Forward Declarations
33  ******************************************************************************/
34 namespace librepcb {
35 namespace project {
36 
37 class Circuit;
38 class NetSignal;
39 
40 /*******************************************************************************
41  *  Class CmdNetSignalSetName
42  ******************************************************************************/
43 
44 /**
45  * @brief The CmdNetSignalSetName class
46  */
47 class CmdNetSignalEdit final : public UndoCommand {
48 public:
49   // Constructors / Destructor
50   CmdNetSignalEdit(Circuit& circuit, NetSignal& netsignal) noexcept;
51   ~CmdNetSignalEdit() noexcept;
52 
53   // Setters
54   void setName(const CircuitIdentifier& name, bool isAutoName) noexcept;
55 
56 private:
57   // Private Methods
58 
59   /// @copydoc UndoCommand::performExecute()
60   bool performExecute() override;
61 
62   /// @copydoc UndoCommand::performUndo()
63   void performUndo() override;
64 
65   /// @copydoc UndoCommand::performRedo()
66   void performRedo() override;
67 
68   // Private Member Variables
69 
70   // Attributes from the constructor
71   Circuit& mCircuit;
72   NetSignal& mNetSignal;
73 
74   // General Attributes
75   CircuitIdentifier mOldName;
76   CircuitIdentifier mNewName;
77   bool mOldIsAutoName;
78   bool mNewIsAutoName;
79 };
80 
81 /*******************************************************************************
82  *  End of File
83  ******************************************************************************/
84 
85 }  // namespace project
86 }  // namespace librepcb
87 
88 #endif  // LIBREPCB_PROJECT_CMDNETSIGNALEDIT_H
89