LibrePCB Developers Documentation
cmdnetclassadd.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_CMDNETCLASSADD_H
21 #define LIBREPCB_EDITOR_CMDNETCLASSADD_H
22 
23 /*******************************************************************************
24  * Includes
25  ******************************************************************************/
26 #include "../../undocommand.h"
27 
29 
30 #include <QtCore>
31 
32 /*******************************************************************************
33  * Namespace / Forward Declarations
34  ******************************************************************************/
35 namespace librepcb {
36 
37 class Circuit;
38 class NetClass;
39 
40 namespace editor {
41 
42 /*******************************************************************************
43  * Class CmdNetClassAdd
44  ******************************************************************************/
45 
49 class CmdNetClassAdd final : public UndoCommand {
50 public:
51  // Constructors / Destructor
52  CmdNetClassAdd(Circuit& circuit, const ElementName& name) noexcept;
53  ~CmdNetClassAdd() noexcept;
54 
55  // Getters
56  NetClass* getNetClass() const noexcept { return mNetClass; }
57 
58 private:
59  // Private Methods
60 
62  bool performExecute() override;
63 
65  void performUndo() override;
66 
68  void performRedo() override;
69 
70  // Private Member Variables
71 
75 };
76 
77 /*******************************************************************************
78  * End of File
79  ******************************************************************************/
80 
81 } // namespace editor
82 } // namespace librepcb
83 
84 #endif
bool performExecute() override
Execute the command the first time.
Definition: cmdnetclassadd.cpp:55
Definition: occmodel.cpp:77
Circuit & mCircuit
Definition: cmdnetclassadd.h:72
The CmdNetClassAdd class.
Definition: cmdnetclassadd.h:49
~CmdNetClassAdd() noexcept
Definition: cmdnetclassadd.cpp:48
void performUndo() override
Undo the command.
Definition: cmdnetclassadd.cpp:63
The Circuit class represents all electrical connections in a project (drawn in the schematics) ...
Definition: circuit.h:70
The UndoCommand class represents a command which you can undo/redo.
Definition: undocommand.h:46
The NetClass class.
Definition: netclass.h:46
void performRedo() override
Redo the command.
Definition: cmdnetclassadd.cpp:67
ElementName mName
Definition: cmdnetclassadd.h:73
CmdNetClassAdd(Circuit &circuit, const ElementName &name) noexcept
Definition: cmdnetclassadd.cpp:40
NetClass * getNetClass() const noexcept
Definition: cmdnetclassadd.h:56
NetClass * mNetClass
Definition: cmdnetclassadd.h:74
type_safe::constrained_type< QString, ElementNameConstraint, ElementNameVerifier > ElementName
Definition: elementname.h:84