Mercurial > hg > orthanc-stone
annotate Applications/Resources/Graveyard/ReferenceLineFactory.h @ 1934:00edc8504b68
todo
author | Alain Mazy <am@osimis.io> |
---|---|
date | Mon, 25 Apr 2022 09:15:08 +0200 |
parents | 7053b8a0aaec |
children | 07964689cb0b |
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 | |
1871
7053b8a0aaec
upgrade to year 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1870
diff
changeset
|
5 * Copyright (C) 2017-2022 Osimis S.A., Belgium |
7053b8a0aaec
upgrade to year 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1870
diff
changeset
|
6 * Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
47 | 9 * modify it under the terms of the GNU Affero General Public License |
10 * as published by the Free Software Foundation, either version 3 of | |
11 * the License, or (at your option) any later version. | |
0 | 12 * |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
47 | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 * Affero General Public License for more details. | |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1586
diff
changeset
|
17 * |
47 | 18 * You should have received a copy of the GNU Affero General Public License |
0 | 19 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 **/ | |
21 | |
22 | |
23 #pragma once | |
24 | |
391 | 25 #include "../Widgets/SliceViewerWidget.h" |
0 | 26 |
27 namespace OrthancStone | |
28 { | |
390
0cb925325470
renamed SiblingSliceLocation as ReferenceLine
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
196
diff
changeset
|
29 class ReferenceLineFactory : |
0 | 30 public ILayerRendererFactory, |
391 | 31 public SliceViewerWidget::ISliceObserver |
0 | 32 { |
33 private: | |
391 | 34 SliceViewerWidget& owner_; |
35 SliceViewerWidget& sibling_; | |
36 SliceGeometry slice_; | |
37 RenderStyle style_; | |
38 bool hasLayerIndex_; | |
39 size_t layerIndex_; | |
0 | 40 |
41 | |
42 public: | |
391 | 43 ReferenceLineFactory(SliceViewerWidget& owner, |
44 SliceViewerWidget& sibling); | |
0 | 45 |
399
885e1ebd315c
rename SliceChange as SliceContentChange
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
392
diff
changeset
|
46 virtual void NotifySliceContentChange(const SliceViewerWidget& source, |
0 | 47 const SliceGeometry& slice); |
48 | |
49 void SetLayerIndex(size_t layerIndex); | |
50 | |
51 void SetStyle(const RenderStyle& style); | |
52 | |
53 RenderStyle GetRenderStyle(); | |
54 | |
55 void SetSlice(const SliceGeometry& slice); | |
56 | |
57 virtual bool GetExtent(double& x1, | |
58 double& y1, | |
59 double& x2, | |
60 double& y2, | |
61 const SliceGeometry& viewportSlice) | |
62 { | |
63 return false; | |
64 } | |
65 | |
66 virtual ILayerRenderer* CreateLayerRenderer(const SliceGeometry& viewportSlice); | |
67 | |
68 virtual bool HasSourceVolume() const | |
69 { | |
70 return false; | |
71 } | |
72 | |
73 virtual ISliceableVolume& GetSourceVolume() const; | |
74 | |
391 | 75 static void Configure(SliceViewerWidget& a, |
76 SliceViewerWidget& b); | |
0 | 77 }; |
78 } |