Mercurial > hg > orthanc-stone
annotate Framework/Toolbox/ParallelSlicesCursor.h @ 53:c2dc924f1a63 wasm
removing threading out of the framework
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 27 Apr 2017 16:57:49 +0200 |
parents | 28956ed68280 |
children | 53025eecbc95 |
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 | |
40
7207a407bcd8
shared copyright with osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
5 * Copyright (C) 2017 Osimis, 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 | |
47 SliceGeometry GetSlice(size_t slice); | |
48 | |
49 SliceGeometry GetCurrentSlice(); | |
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 } |