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_CMDBOARDVIAEDIT_H
21 #define LIBREPCB_PROJECT_CMDBOARDVIAEDIT_H
22 
23 /*******************************************************************************
24  *  Includes
25  ******************************************************************************/
26 #include "../items/bi_via.h"
27 
28 #include <librepcb/common/undocommand.h>
29 #include <librepcb/common/units/point.h>
30 
31 #include <QtCore>
32 
33 /*******************************************************************************
34  *  Namespace / Forward Declarations
35  ******************************************************************************/
36 namespace librepcb {
37 namespace project {
38 
39 class NetSignal;
40 
41 /*******************************************************************************
42  *  Class CmdBoardViaEdit
43  ******************************************************************************/
44 
45 /**
46  * @brief The CmdBoardViaEdit class
47  */
48 class CmdBoardViaEdit final : public UndoCommand {
49 public:
50   // Constructors / Destructor
51   explicit CmdBoardViaEdit(BI_Via& via) noexcept;
52   ~CmdBoardViaEdit() noexcept;
53 
54   // Setters
55   void setPosition(const Point& pos, bool immediate) noexcept;
56   void translate(const Point& deltaPos, bool immediate) noexcept;
57   void rotate(const Angle& angle, const Point& center, bool immediate) noexcept;
58   void setShape(Via::Shape shape, bool immediate) noexcept;
59   void setSize(const PositiveLength& size, bool immediate) noexcept;
60   void setDrillDiameter(const PositiveLength& diameter,
61                         bool immediate) noexcept;
62 
63 private:
64   // Private Methods
65 
66   /// @copydoc UndoCommand::performExecute()
67   bool performExecute() override;
68 
69   /// @copydoc UndoCommand::performUndo()
70   void performUndo() override;
71 
72   /// @copydoc UndoCommand::performRedo()
73   void performRedo() override;
74 
75   // Private Member Variables
76 
77   // Attributes from the constructor
78   BI_Via& mVia;
79 
80   // General Attributes
81   Point mOldPos;
82   Point mNewPos;
83   Via::Shape mOldShape;
84   Via::Shape mNewShape;
85   PositiveLength mOldSize;
86   PositiveLength mNewSize;
87   PositiveLength mOldDrillDiameter;
88   PositiveLength mNewDrillDiameter;
89 };
90 
91 /*******************************************************************************
92  *  End of File
93  ******************************************************************************/
94 
95 }  // namespace project
96 }  // namespace librepcb
97 
98 #endif  // LIBREPCB_PROJECT_CMDBOARDVIAEDIT_H
99