Mercurial > hg > orthanc-stone
annotate Framework/Layers/DicomStructureSetRendererFactory.cpp @ 121:e66b2c757790 wasm
displaying rt-struct
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 04 Oct 2017 17:53:47 +0200 |
parents | 2eca030792aa |
children | e3433dabfb8d |
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:
16
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 #include "DicomStructureSetRendererFactory.h" | |
23 | |
113
2eca030792aa
using the Orthanc Framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
77
diff
changeset
|
24 #include <Core/OrthancException.h> |
0 | 25 |
26 namespace OrthancStone | |
27 { | |
28 class DicomStructureSetRendererFactory::Renderer : public ILayerRenderer | |
29 { | |
30 private: | |
31 const DicomStructureSet& structureSet_; | |
121
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
32 CoordinateSystem3D slice_; |
0 | 33 bool visible_; |
34 | |
35 public: | |
36 Renderer(const DicomStructureSet& structureSet, | |
121
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
37 const CoordinateSystem3D& slice) : |
0 | 38 structureSet_(structureSet), |
39 slice_(slice), | |
40 visible_(true) | |
41 { | |
42 } | |
43 | |
44 virtual bool RenderLayer(CairoContext& context, | |
121
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
45 const ViewportGeometry& view) |
0 | 46 { |
47 if (visible_) | |
48 { | |
49 cairo_set_line_width(context.GetObject(), 3.0f / view.GetZoom()); | |
50 structureSet_.Render(context, slice_); | |
51 } | |
52 | |
53 return true; | |
54 } | |
55 | |
121
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
56 virtual const CoordinateSystem3D& GetLayerSlice() |
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
57 { |
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
58 return slice_; |
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
59 } |
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
60 |
0 | 61 virtual void SetLayerStyle(const RenderStyle& style) |
62 { | |
63 visible_ = style.visible_; | |
64 } | |
65 | |
66 virtual bool IsFullQuality() | |
67 { | |
68 return true; | |
69 } | |
70 }; | |
71 | |
72 | |
121
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
73 void DicomStructureSetRendererFactory::ScheduleLayerCreation(const CoordinateSystem3D& viewportSlice) |
0 | 74 { |
75 bool isOpposite; | |
121
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
76 if (GeometryToolbox::IsParallelOrOpposite(isOpposite, viewportSlice.GetNormal(), structureSet_.GetNormal())) |
0 | 77 { |
121
e66b2c757790
displaying rt-struct
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
78 NotifyLayerReady(new Renderer(structureSet_, viewportSlice), viewportSlice, false); |
0 | 79 } |
80 } | |
81 } |