LibrePCB Developers Documentation
Loading...
Searching...
No Matches
boardeditorstate_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_BOARDEDITORSTATE_MEASURE_H
21#define LIBREPCB_EDITOR_BOARDEDITORSTATE_MEASURE_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include "boardeditorstate.h"
27
28#include <QtCore>
29
30/*******************************************************************************
31 * Namespace / Forward Declarations
32 ******************************************************************************/
33namespace librepcb {
34namespace editor {
35
36class MeasureTool;
37
38/*******************************************************************************
39 * Class BoardEditorState_Measure
40 ******************************************************************************/
41
46 Q_OBJECT
47
48public:
49 // Constructors / Destructor
52 explicit BoardEditorState_Measure(const Context& context) noexcept;
53 virtual ~BoardEditorState_Measure() noexcept;
54
55 // General Methods
56 virtual bool entry() noexcept override;
57 virtual bool exit() noexcept override;
58
59 // Event Handlers
60 virtual bool processCopy() noexcept override;
61 virtual bool processRemove() noexcept override;
62 virtual bool processAbortCommand() noexcept override;
63 virtual bool processKeyPressed(
64 const GraphicsSceneKeyEvent& e) noexcept override;
65 virtual bool processKeyReleased(
66 const GraphicsSceneKeyEvent& e) noexcept override;
68 const GraphicsSceneMouseEvent& e) noexcept override;
70 const GraphicsSceneMouseEvent& e) noexcept override;
71
72 // Operator Overloadings
74 delete;
75
76private: // Data
77 QScopedPointer<MeasureTool> mTool;
78};
79
80/*******************************************************************************
81 * End of File
82 ******************************************************************************/
83
84} // namespace editor
85} // namespace librepcb
86
87#endif
The "measure" state/tool of the board editor.
Definition boardeditorstate_measure.h:45
BoardEditorState_Measure(const BoardEditorState_Measure &other)=delete
virtual ~BoardEditorState_Measure() noexcept
Definition boardeditorstate_measure.cpp:53
virtual bool processGraphicsSceneMouseMoved(const GraphicsSceneMouseEvent &e) noexcept override
Definition boardeditorstate_measure.cpp:105
QScopedPointer< MeasureTool > mTool
Definition boardeditorstate_measure.h:77
virtual bool processRemove() noexcept override
Definition boardeditorstate_measure.cpp:87
virtual bool processGraphicsSceneLeftMouseButtonPressed(const GraphicsSceneMouseEvent &e) noexcept override
Definition boardeditorstate_measure.cpp:110
virtual bool processAbortCommand() noexcept override
Definition boardeditorstate_measure.cpp:91
virtual bool processKeyPressed(const GraphicsSceneKeyEvent &e) noexcept override
Definition boardeditorstate_measure.cpp:95
virtual bool exit() noexcept override
Definition boardeditorstate_measure.cpp:72
virtual bool processKeyReleased(const GraphicsSceneKeyEvent &e) noexcept override
Definition boardeditorstate_measure.cpp:100
virtual bool processCopy() noexcept override
Definition boardeditorstate_measure.cpp:83
virtual bool entry() noexcept override
Definition boardeditorstate_measure.cpp:60
The board editor state base class.
Definition boardeditorstate.h:60
Measure tool providing the measure functionality for the editor states.
Definition measuretool.h:57
Definition occmodel.cpp:77
FSM Context.
Definition boardeditorfsm.h:88
Definition graphicsscene.h:52
Definition graphicsscene.h:45