comparison Framework/Deprecated/Toolbox/ParallelSlicesCursor.h @ 811:ffec76a5f7eb

deprecating ParallelSlices
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 28 May 2019 18:21:00 +0200
parents Framework/Toolbox/ParallelSlicesCursor.h@b70e9be013e4
children 2d8ab34c8c91
comparison
equal deleted inserted replaced
810:7608e8107aa1 811:ffec76a5f7eb
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
21
22 #pragma once
23
24 #include "ParallelSlices.h"
25 #include "../../StoneEnumerations.h"
26
27 namespace Deprecated
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 OrthancStone::CoordinateSystem3D GetSlice(size_t slice);
48
49 OrthancStone::CoordinateSystem3D 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(OrthancStone::SliceOffsetMode mode,
56 int offset);
57
58 // Returns "true" iff. the slice has actually changed
59 bool ApplyWheelEvent(OrthancStone::MouseWheelDirection direction,
60 OrthancStone::KeyboardModifiers modifiers);
61
62 // Returns "true" iff. the slice has actually changed
63 bool LookupSliceContainingPoint(const OrthancStone::Vector& p);
64 };
65 }