LibrePCB Developers Documentation
schematiceditorstate_drawpolygon.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_SCHEMATICEDITORSTATE_DRAWPOLYGON_H
21#define LIBREPCB_EDITOR_SCHEMATICEDITORSTATE_DRAWPOLYGON_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
27
29
30#include <QtCore>
31#include <QtWidgets>
32
33/*******************************************************************************
34 * Namespace / Forward Declarations
35 ******************************************************************************/
36namespace librepcb {
37
38class Layer;
39class SI_Polygon;
40class Schematic;
41
42namespace editor {
43
44class CmdPolygonEdit;
45class LayerComboBox;
46class UnsignedLengthEdit;
47
48/*******************************************************************************
49 * Class SchematicEditorState_DrawPolygon
50 ******************************************************************************/
51
56 Q_OBJECT
57
58public:
59 // Constructors / Destructor
62 const SchematicEditorState_DrawPolygon& other) = delete;
63 explicit SchematicEditorState_DrawPolygon(const Context& context) noexcept;
64 virtual ~SchematicEditorState_DrawPolygon() noexcept;
65
66 // General Methods
67 virtual bool entry() noexcept override;
68 virtual bool exit() noexcept override;
69
70 // Event Handlers
71 virtual bool processAbortCommand() noexcept override;
73 QGraphicsSceneMouseEvent& e) noexcept override;
75 QGraphicsSceneMouseEvent& e) noexcept override;
77 QGraphicsSceneMouseEvent& e) noexcept override;
78 virtual bool processSwitchToSchematicPage(int index) noexcept override;
79
80 // Operator Overloadings
82 const SchematicEditorState_DrawPolygon& rhs) = delete;
83
84private: // Methods
85 bool startAddPolygon(const Point& pos) noexcept;
86 bool addSegment(const Point& pos) noexcept;
87 bool updateLastVertexPosition(const Point& pos) noexcept;
88 bool abortCommand(bool showErrMsgBox) noexcept;
89 void layerComboBoxLayerChanged(const Layer& layer) noexcept;
90 void widthEditValueChanged(const UnsignedLength& value) noexcept;
91 void filledCheckBoxCheckedChanged(bool checked) noexcept;
92
93private: // Data
94 // State
98
99 // Information about the current polygon to place. Only valid if
100 // mIsUndoCmdActive == true.
103};
104
105/*******************************************************************************
106 * End of File
107 ******************************************************************************/
108
109} // namespace editor
110} // namespace librepcb
111
112#endif
The Layer class provides all supported geometry layers.
Definition: layer.h:40
The Point class is used to represent a point/coordinate/vector, for example (1.2mm; 5....
Definition: point.h:79
The Polygon class.
Definition: polygon.h:45
The SI_Polygon class represents a polygon in a schematic.
Definition: si_polygon.h:47
The CmdPolygonEdit class.
Definition: cmdpolygonedit.h:51
The SchematicEditorState_DrawPolygon class.
Definition: schematiceditorstate_drawpolygon.h:55
QScopedPointer< CmdPolygonEdit > mCurrentPolygonEditCmd
Definition: schematiceditorstate_drawpolygon.h:102
virtual bool processGraphicsSceneMouseMoved(QGraphicsSceneMouseEvent &e) noexcept override
Definition: schematiceditorstate_drawpolygon.cpp:144
void layerComboBoxLayerChanged(const Layer &layer) noexcept
Definition: schematiceditorstate_drawpolygon.cpp:288
virtual ~SchematicEditorState_DrawPolygon() noexcept
Definition: schematiceditorstate_drawpolygon.cpp:68
bool startAddPolygon(const Point &pos) noexcept
Definition: schematiceditorstate_drawpolygon.cpp:178
SchematicEditorState_DrawPolygon(const SchematicEditorState_DrawPolygon &other)=delete
void filledCheckBoxCheckedChanged(bool checked) noexcept
Definition: schematiceditorstate_drawpolygon.cpp:305
virtual bool processAbortCommand() noexcept override
Definition: schematiceditorstate_drawpolygon.cpp:134
bool abortCommand(bool showErrMsgBox) noexcept
Definition: schematiceditorstate_drawpolygon.cpp:265
bool mIsUndoCmdActive
Definition: schematiceditorstate_drawpolygon.h:95
virtual bool processSwitchToSchematicPage(int index) noexcept override
Definition: schematiceditorstate_drawpolygon.cpp:168
Polygon mLastPolygonProperties
Definition: schematiceditorstate_drawpolygon.h:96
virtual bool exit() noexcept override
Definition: schematiceditorstate_drawpolygon.cpp:119
bool addSegment(const Point &pos) noexcept
Definition: schematiceditorstate_drawpolygon.cpp:211
void widthEditValueChanged(const UnsignedLength &value) noexcept
Definition: schematiceditorstate_drawpolygon.cpp:296
SI_Polygon * mCurrentPolygon
Definition: schematiceditorstate_drawpolygon.h:101
virtual bool processGraphicsSceneLeftMouseButtonPressed(QGraphicsSceneMouseEvent &e) noexcept override
Definition: schematiceditorstate_drawpolygon.cpp:151
bool updateLastVertexPosition(const Point &pos) noexcept
Definition: schematiceditorstate_drawpolygon.cpp:253
Point mLastSegmentPos
Definition: schematiceditorstate_drawpolygon.h:97
virtual bool entry() noexcept override
Definition: schematiceditorstate_drawpolygon.cpp:75
virtual bool processGraphicsSceneLeftMouseButtonDoubleClicked(QGraphicsSceneMouseEvent &e) noexcept override
Definition: schematiceditorstate_drawpolygon.cpp:163
The schematic editor state base class.
Definition: schematiceditorstate.h:57
Definition: occmodel.cpp:77
type_safe::constrained_type< Length, UnsignedLengthConstraint, UnsignedLengthVerifier > UnsignedLength
Definition: length.h:696
FSM Context.
Definition: schematiceditorfsm.h:81