Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Scene2D/PointerEvent.h @ 1807:634ff8993f6a
Stone Web viewer: Patient birth date is now displayed in the overlays
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 20 May 2021 17:17:56 +0200 |
parents | 9ac2a65d4172 |
children | 3889ae96d2e9 |
rev | line source |
---|---|
596 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
1739
9ac2a65d4172
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1598
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
596 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
596 | 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 | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
15 * Lesser General Public License for more details. |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
16 * |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
18 * License along with this program. If not, see |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
596 | 20 **/ |
21 | |
22 | |
23 #pragma once | |
24 | |
25 #include "ScenePoint2D.h" | |
26 | |
27 #include <boost/noncopyable.hpp> | |
28 #include <stdint.h> | |
29 | |
30 namespace OrthancStone | |
31 { | |
32 class PointerEvent : public boost::noncopyable | |
33 { | |
34 private: | |
1208
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
35 MouseButton button_; |
596 | 36 std::vector<ScenePoint2D> positions_; |
37 bool hasAltModifier_; | |
38 bool hasControlModifier_; | |
39 bool hasShiftModifier_; | |
40 | |
41 public: | |
42 PointerEvent(); | |
43 | |
44 ScenePoint2D GetMainPosition() const; | |
45 | |
617 | 46 void AddPosition(const ScenePoint2D& p) |
47 { | |
48 positions_.push_back(p); | |
49 } | |
50 | |
596 | 51 void AddPosition(double x, |
52 double y) | |
53 { | |
54 positions_.push_back(ScenePoint2D(x, y)); | |
55 } | |
56 | |
57 size_t GetPositionsCount() const | |
58 { | |
59 return positions_.size(); | |
60 } | |
61 | |
62 ScenePoint2D GetPosition(size_t index) const; | |
63 | |
64 void SetAltModifier(bool value) | |
65 { | |
66 hasAltModifier_ = value; | |
67 } | |
68 | |
69 bool HasAltModifier() const | |
70 { | |
71 return hasAltModifier_; | |
72 } | |
73 | |
74 void SetControlModifier(bool value) | |
75 { | |
76 hasControlModifier_ = value; | |
77 } | |
78 | |
79 bool HasControlModifier() const | |
80 { | |
81 return hasControlModifier_; | |
82 } | |
83 | |
84 void SetShiftModifier(bool value) | |
85 { | |
86 hasShiftModifier_ = value; | |
87 } | |
88 | |
89 bool HasShiftModifier() const | |
90 { | |
91 return hasShiftModifier_; | |
92 } | |
1208
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
93 |
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
94 void SetMouseButton(MouseButton button) |
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
95 { |
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
96 button_ = button; |
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
97 } |
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
98 |
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
99 MouseButton GetMouseButton() const |
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
100 { |
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
101 return button_; |
00e6bff9ea39
handling of mouse interactions in ViewportController
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
617
diff
changeset
|
102 } |
596 | 103 }; |
104 } |