Mercurial > hg > orthanc-stone
annotate Framework/Deprecated/Toolbox/ParallelSlicesCursor.h @ 819:a68cd7ae8838
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 29 May 2019 13:39:31 +0200 |
parents | ffec76a5f7eb |
children | 2d8ab34c8c91 |
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 | |
439 | 5 * Copyright (C) 2017-2019 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" | |
811
ffec76a5f7eb
deprecating ParallelSlices
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
25 #include "../../StoneEnumerations.h" |
0 | 26 |
811
ffec76a5f7eb
deprecating ParallelSlices
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
27 namespace Deprecated |
0 | 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 | |
811
ffec76a5f7eb
deprecating ParallelSlices
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
47 OrthancStone::CoordinateSystem3D GetSlice(size_t slice); |
0 | 48 |
811
ffec76a5f7eb
deprecating ParallelSlices
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
49 OrthancStone::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 | |
811
ffec76a5f7eb
deprecating ParallelSlices
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
55 bool ApplyOffset(OrthancStone::SliceOffsetMode mode, |
0 | 56 int offset); |
57 | |
58 // Returns "true" iff. the slice has actually changed | |
811
ffec76a5f7eb
deprecating ParallelSlices
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
59 bool ApplyWheelEvent(OrthancStone::MouseWheelDirection direction, |
ffec76a5f7eb
deprecating ParallelSlices
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
60 OrthancStone::KeyboardModifiers modifiers); |
0 | 61 |
62 // Returns "true" iff. the slice has actually changed | |
811
ffec76a5f7eb
deprecating ParallelSlices
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
63 bool LookupSliceContainingPoint(const OrthancStone::Vector& p); |
0 | 64 }; |
65 } |