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_CMDSCHEMATICNETSEGMENTADDELEMENTS_H
21 #define LIBREPCB_PROJECT_CMDSCHEMATICNETSEGMENTADDELEMENTS_H
22 
23 /*******************************************************************************
24  *  Includes
25  ******************************************************************************/
26 #include <librepcb/common/undocommand.h>
27 #include <librepcb/common/units/point.h>
28 
29 #include <QtCore>
30 
31 /*******************************************************************************
32  *  Namespace / Forward Declarations
33  ******************************************************************************/
34 namespace librepcb {
35 namespace project {
36 
37 class SI_NetSegment;
38 class SI_NetPoint;
39 class SI_NetLine;
40 class SI_NetLineAnchor;
41 
42 /*******************************************************************************
43  *  Class CmdSchematicNetSegmentAddElements
44  ******************************************************************************/
45 
46 /**
47  * @brief The CmdSchematicNetSegmentAddElements class
48  */
49 class CmdSchematicNetSegmentAddElements final : public UndoCommand {
50 public:
51   // Constructors / Destructor
52   CmdSchematicNetSegmentAddElements(SI_NetSegment& segment) noexcept;
53   ~CmdSchematicNetSegmentAddElements() noexcept;
54 
55   // General Methods
56   SI_NetPoint* addNetPoint(SI_NetPoint& netpoint);
57   SI_NetPoint* addNetPoint(const Point& position);
58   SI_NetLine* addNetLine(SI_NetLine& netline);
59   SI_NetLine* addNetLine(SI_NetLineAnchor& startPoint,
60                          SI_NetLineAnchor& endPoint);
61 
62 private:
63   // Private Methods
64 
65   /// @copydoc UndoCommand::performExecute()
66   bool performExecute() override;
67 
68   /// @copydoc UndoCommand::performUndo()
69   void performUndo() override;
70 
71   /// @copydoc UndoCommand::performRedo()
72   void performRedo() override;
73 
74   // Private Member Variables
75 
76   SI_NetSegment& mNetSegment;
77   QList<SI_NetPoint*> mNetPoints;
78   QList<SI_NetLine*> mNetLines;
79 };
80 
81 /*******************************************************************************
82  *  End of File
83  ******************************************************************************/
84 
85 }  // namespace project
86 }  // namespace librepcb
87 
88 #endif  // LIBREPCB_PROJECT_CMDSCHEMATICNETSEGMENTADDELEMENTS_H
89