LibrePCB Developers Documentation
cmdboardnetpointedit.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_CMDBOARDNETPOINTEDIT_H
21 #define LIBREPCB_EDITOR_CMDBOARDNETPOINTEDIT_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 BI_NetPoint;
38 
39 namespace editor {
40 
41 /*******************************************************************************
42  * Class CmdBoardNetPointEdit
43  ******************************************************************************/
44 
48 class CmdBoardNetPointEdit final : public UndoCommand {
49 public:
50  // Constructors / Destructor
51  explicit CmdBoardNetPointEdit(BI_NetPoint& point) noexcept;
52  ~CmdBoardNetPointEdit() noexcept;
53 
54  // Setters
55  void setPosition(const Point& pos, bool immediate) noexcept;
56  void translate(const Point& deltaPos, bool immediate) noexcept;
57  void snapToGrid(const PositiveLength& gridInterval, bool immediate) noexcept;
58  void rotate(const Angle& angle, const Point& center, bool immediate) noexcept;
59 
60 private:
61  // Private Methods
62 
64  bool performExecute() override;
65 
67  void performUndo() override;
68 
70  void performRedo() override;
71 
72  // Private Member Variables
73 
74  // Attributes from the constructor
76 
77  // General Attributes
80 };
81 
82 /*******************************************************************************
83  * End of File
84  ******************************************************************************/
85 
86 } // namespace editor
87 } // namespace librepcb
88 
89 #endif
BI_NetPoint & mNetPoint
Definition: cmdboardnetpointedit.h:75
void setPosition(const Point &pos, bool immediate) noexcept
Definition: cmdboardnetpointedit.cpp:56
~CmdBoardNetPointEdit() noexcept
Definition: cmdboardnetpointedit.cpp:46
void translate(const Point &deltaPos, bool immediate) noexcept
Definition: cmdboardnetpointedit.cpp:63
Definition: occmodel.cpp:77
bool performExecute() override
Execute the command the first time.
Definition: cmdboardnetpointedit.cpp:86
void rotate(const Angle &angle, const Point &center, bool immediate) noexcept
Definition: cmdboardnetpointedit.cpp:75
The Angle class is used to represent an angle (for example 12.75 degrees)
Definition: angle.h:78
Point mNewPos
Definition: cmdboardnetpointedit.h:79
The Point class is used to represent a point/coordinate/vector, for example (1.2mm; 5...
Definition: point.h:79
The UndoCommand class represents a command which you can undo/redo.
Definition: undocommand.h:46
Point mOldPos
Definition: cmdboardnetpointedit.h:78
void snapToGrid(const PositiveLength &gridInterval, bool immediate) noexcept
Definition: cmdboardnetpointedit.cpp:70
The BI_NetPoint class.
Definition: bi_netpoint.h:46
type_safe::constrained_type< Length, PositiveLengthConstraint, PositiveLengthVerifier > PositiveLength
Definition: length.h:812
void performUndo() override
Undo the command.
Definition: cmdboardnetpointedit.cpp:92
void performRedo() override
Redo the command.
Definition: cmdboardnetpointedit.cpp:96
The CmdBoardNetPointEdit class.
Definition: cmdboardnetpointedit.h:48
CmdBoardNetPointEdit(BI_NetPoint &point) noexcept
Definition: cmdboardnetpointedit.cpp:39