LibrePCB Developers Documentation
schematiceditorstate_measure.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_MEASURE_H
21#define LIBREPCB_EDITOR_SCHEMATICEDITORSTATE_MEASURE_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
27
28#include <QtCore>
29#include <QtWidgets>
30
31/*******************************************************************************
32 * Namespace / Forward Declarations
33 ******************************************************************************/
34namespace librepcb {
35namespace editor {
36
37class MeasureTool;
38
39/*******************************************************************************
40 * Class SchematicEditorState_Measure
41 ******************************************************************************/
42
47 Q_OBJECT
48
49public:
50 // Constructors / Destructor
53 delete;
54 explicit SchematicEditorState_Measure(const Context& context) noexcept;
55 virtual ~SchematicEditorState_Measure() noexcept;
56
57 // General Methods
58 virtual bool entry() noexcept override;
59 virtual bool exit() noexcept override;
60
61 // Event Handlers
62 virtual bool processCopy() noexcept override;
63 virtual bool processRemove() noexcept override;
64 virtual bool processAbortCommand() noexcept override;
65 virtual bool processKeyPressed(const QKeyEvent& e) noexcept override;
66 virtual bool processKeyReleased(const QKeyEvent& e) noexcept override;
68 QGraphicsSceneMouseEvent& e) noexcept override;
70 QGraphicsSceneMouseEvent& e) noexcept override;
71 virtual bool processSwitchToSchematicPage(int index) noexcept override;
72
73 // Operator Overloadings
75 const SchematicEditorState_Measure& rhs) = delete;
76
77private: // Data
78 QScopedPointer<MeasureTool> mTool;
79};
80
81/*******************************************************************************
82 * End of File
83 ******************************************************************************/
84
85} // namespace editor
86} // namespace librepcb
87
88#endif
Measure tool providing the measure functionality for the editor states.
Definition: measuretool.h:56
The "measure" state/tool of the schematic editor.
Definition: schematiceditorstate_measure.h:46
virtual bool processGraphicsSceneMouseMoved(QGraphicsSceneMouseEvent &e) noexcept override
Definition: schematiceditorstate_measure.cpp:94
SchematicEditorState_Measure(const SchematicEditorState_Measure &other)=delete
QScopedPointer< MeasureTool > mTool
Definition: schematiceditorstate_measure.h:78
virtual bool processRemove() noexcept override
Definition: schematiceditorstate_measure.cpp:76
virtual ~SchematicEditorState_Measure() noexcept
Definition: schematiceditorstate_measure.cpp:50
virtual bool processAbortCommand() noexcept override
Definition: schematiceditorstate_measure.cpp:80
virtual bool processKeyPressed(const QKeyEvent &e) noexcept override
Definition: schematiceditorstate_measure.cpp:84
virtual bool processSwitchToSchematicPage(int index) noexcept override
Definition: schematiceditorstate_measure.cpp:104
virtual bool exit() noexcept override
Definition: schematiceditorstate_measure.cpp:63
virtual bool processKeyReleased(const QKeyEvent &e) noexcept override
Definition: schematiceditorstate_measure.cpp:89
virtual bool processGraphicsSceneLeftMouseButtonPressed(QGraphicsSceneMouseEvent &e) noexcept override
Definition: schematiceditorstate_measure.cpp:99
virtual bool processCopy() noexcept override
Definition: schematiceditorstate_measure.cpp:72
virtual bool entry() noexcept override
Definition: schematiceditorstate_measure.cpp:57
The schematic editor state base class.
Definition: schematiceditorstate.h:57
Definition: occmodel.cpp:77
FSM Context.
Definition: schematiceditorfsm.h:81