comparison Applications/Generic/Scene2DInteractor.h @ 884:aad5ccf1be10 am-dev

cleanup
author Alain Mazy <alain@mazy.be>
date Tue, 09 Jul 2019 14:43:00 +0200
parents
children a911f5bb48da
comparison
equal deleted inserted replaced
883:30268a0cafca 884:aad5ccf1be10
1 /**
2 * Stone of Orthanc
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium
6 *
7 * This program is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU Affero General Public License
9 * as published by the Free Software Foundation, either version 3 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 **/
20 #pragma once
21
22 #include "../../Framework/Scene2D/PointerEvent.h"
23 #include "../../Framework/Scene2DViewport/ViewportController.h"
24 #include "../../Framework/Scene2D/Internals/CompositorHelper.h"
25 #include "GuiAdapter.h"
26
27
28 namespace OrthancStone
29 {
30
31 class Scene2DInteractor
32 {
33 protected:
34 boost::shared_ptr<ViewportController> viewportController_;
35 boost::shared_ptr<ICompositor> compositor_;
36
37 public:
38 Scene2DInteractor(boost::shared_ptr<ViewportController> viewportController) :
39 viewportController_(viewportController)
40 {}
41
42 void SetCompositor(boost::shared_ptr<ICompositor> compositor)
43 {
44 compositor_ = compositor;
45 }
46
47 virtual bool OnMouseEvent(const GuiAdapterMouseEvent& guiEvent, const PointerEvent& pointerEvent) = 0; // returns true if it has handled the event
48 virtual bool OnKeyboardEvent(const GuiAdapterKeyboardEvent& guiEvent) = 0; // returns true if it has handled the event
49 virtual bool OnWheelEvent(const GuiAdapterWheelEvent& guiEvent) = 0; // returns true if it has handled the event
50
51 };
52 }