Mercurial > hg > orthanc-stone
annotate Applications/Generic/Scene2DInteractor.h @ 1089:998d9e4402e0 broker
integration mainline->broker
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 23 Oct 2019 11:04:47 +0200 |
parents | a911f5bb48da |
children | 2d8ab34c8c91 |
rev | line source |
---|---|
884 | 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" | |
916
a911f5bb48da
MultiPlatform Basic Scene sample (so far: SDL + Qt)
Alain Mazy <alain@mazy.be>
parents:
884
diff
changeset
|
24 //#include "../../Framework/Scene2D/Internals/CompositorHelper.h" |
884 | 25 #include "GuiAdapter.h" |
26 | |
27 | |
28 namespace OrthancStone | |
29 { | |
30 | |
31 class Scene2DInteractor | |
32 { | |
33 protected: | |
34 boost::shared_ptr<ViewportController> viewportController_; | |
916
a911f5bb48da
MultiPlatform Basic Scene sample (so far: SDL + Qt)
Alain Mazy <alain@mazy.be>
parents:
884
diff
changeset
|
35 // boost::shared_ptr<ICompositor> compositor_; |
884 | 36 |
37 public: | |
38 Scene2DInteractor(boost::shared_ptr<ViewportController> viewportController) : | |
39 viewportController_(viewportController) | |
40 {} | |
41 | |
916
a911f5bb48da
MultiPlatform Basic Scene sample (so far: SDL + Qt)
Alain Mazy <alain@mazy.be>
parents:
884
diff
changeset
|
42 // void SetCompositor(boost::shared_ptr<ICompositor> compositor) |
a911f5bb48da
MultiPlatform Basic Scene sample (so far: SDL + Qt)
Alain Mazy <alain@mazy.be>
parents:
884
diff
changeset
|
43 // { |
a911f5bb48da
MultiPlatform Basic Scene sample (so far: SDL + Qt)
Alain Mazy <alain@mazy.be>
parents:
884
diff
changeset
|
44 // compositor_ = compositor; |
a911f5bb48da
MultiPlatform Basic Scene sample (so far: SDL + Qt)
Alain Mazy <alain@mazy.be>
parents:
884
diff
changeset
|
45 // } |
884 | 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 } |