LibrePCB Developers Documentation
if_graphicsvieweventhandler.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_IF_GRAPHICSVIEWEVENTHANDLER_H
21#define LIBREPCB_EDITOR_IF_GRAPHICSVIEWEVENTHANDLER_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include <QtCore>
27
28/*******************************************************************************
29 * Namespace / Forward Declarations
30 ******************************************************************************/
31namespace librepcb {
32namespace editor {
33
34/*******************************************************************************
35 * Interface IF_GraphicsViewEventHandler
36 ******************************************************************************/
37
42public:
43 // Constructors / Destructor
44 explicit IF_GraphicsViewEventHandler() noexcept {}
45 virtual ~IF_GraphicsViewEventHandler() noexcept {}
46
48 virtual bool graphicsViewEventHandler(QEvent* event) = 0;
49};
50
51/*******************************************************************************
52 * End of File
53 ******************************************************************************/
54
55} // namespace editor
56} // namespace librepcb
57
58#endif
The IF_GraphicsViewEventHandler class.
Definition: if_graphicsvieweventhandler.h:41
virtual bool graphicsViewEventHandler(QEvent *event)=0
The event handler method.
IF_GraphicsViewEventHandler() noexcept
Definition: if_graphicsvieweventhandler.h:44
virtual ~IF_GraphicsViewEventHandler() noexcept
Definition: if_graphicsvieweventhandler.h:45
Definition: occmodel.cpp:77