Mercurial > hg > orthanc-stone
annotate Framework/Toolbox/ParallelSlicesCursor.h @ 143:58c545177c1c wasm
optimization
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 22 Jan 2018 15:16:19 +0100 |
parents | e2fe9352f240 |
children | 7a031ac16b2d |
rev | line source |
---|---|
0 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
135
e2fe9352f240
upgrade to year 2018
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
110
diff
changeset
|
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium |
0 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
47 | 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. | |
0 | 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 | |
47 | 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 | |
0 | 18 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 **/ | |
20 | |
21 | |
22 #pragma once | |
23 | |
24 #include "ParallelSlices.h" | |
25 #include "../Enumerations.h" | |
26 | |
27 namespace OrthancStone | |
28 { | |
29 class ParallelSlicesCursor : public boost::noncopyable | |
30 { | |
31 private: | |
32 std::auto_ptr<ParallelSlices> slices_; | |
33 size_t currentSlice_; | |
34 | |
35 size_t GetDefaultSlice(); | |
36 | |
37 public: | |
38 ParallelSlicesCursor() : | |
39 currentSlice_(0) | |
40 { | |
41 } | |
42 | |
43 void SetGeometry(const ParallelSlices& slices); | |
44 | |
45 size_t GetSliceCount(); | |
46 | |
110
53025eecbc95
renamed SliceGeometry as CoordinateSystem3D
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
53
diff
changeset
|
47 CoordinateSystem3D GetSlice(size_t slice); |
0 | 48 |
110
53025eecbc95
renamed SliceGeometry as CoordinateSystem3D
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
53
diff
changeset
|
49 CoordinateSystem3D GetCurrentSlice(); |
0 | 50 |
51 // Returns "true" iff. the slice has actually changed | |
52 bool SetDefaultSlice(); | |
53 | |
54 // Returns "true" iff. the slice has actually changed | |
55 bool ApplyOffset(SliceOffsetMode mode, | |
56 int offset); | |
57 | |
58 // Returns "true" iff. the slice has actually changed | |
59 bool ApplyWheelEvent(MouseWheelDirection direction, | |
60 KeyboardModifiers modifiers); | |
61 | |
62 // Returns "true" iff. the slice has actually changed | |
63 bool LookupSliceContainingPoint(const Vector& p); | |
64 }; | |
65 } |