Mercurial > hg > orthanc-stone
annotate Framework/Radiography/RadiographyWidget.h @ 1223:04fd875b91f4
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sat, 07 Dec 2019 18:41:54 +0100 |
parents | 9ee6b28f53e8 |
children | 37bc7f115f81 c14fde4a595c |
rev | line source |
---|---|
413 | 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 |
413 | 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 | |
732
c35e98d22764
move Deprecated classes to a separate folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
726
diff
changeset
|
24 #include "../Deprecated/Widgets/WorldSceneWidget.h" |
413 | 25 #include "RadiographyScene.h" |
26 | |
27 | |
28 namespace OrthancStone | |
29 { | |
492 | 30 class RadiographyMaskLayer; |
31 | |
413 | 32 class RadiographyWidget : |
726
4f2416d519b4
moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
492
diff
changeset
|
33 public Deprecated::WorldSceneWidget, |
1220
9ee6b28f53e8
RadiographyTextLayer: support multiple fonts
Alain Mazy <alain@mazy.be>
parents:
1199
diff
changeset
|
34 public IObserver, |
9ee6b28f53e8
RadiographyTextLayer: support multiple fonts
Alain Mazy <alain@mazy.be>
parents:
1199
diff
changeset
|
35 public IObservable |
413 | 36 { |
1220
9ee6b28f53e8
RadiographyTextLayer: support multiple fonts
Alain Mazy <alain@mazy.be>
parents:
1199
diff
changeset
|
37 public: |
9ee6b28f53e8
RadiographyTextLayer: support multiple fonts
Alain Mazy <alain@mazy.be>
parents:
1199
diff
changeset
|
38 ORTHANC_STONE_DEFINE_ORIGIN_MESSAGE(__FILE__, __LINE__, SelectionChangedMessage, RadiographyWidget); |
9ee6b28f53e8
RadiographyTextLayer: support multiple fonts
Alain Mazy <alain@mazy.be>
parents:
1199
diff
changeset
|
39 |
413 | 40 private: |
428
751fb354149e
ability to change the scene of the RadiographyWidget
am@osimis.io
parents:
413
diff
changeset
|
41 boost::shared_ptr<RadiographyScene> scene_; |
413 | 42 std::auto_ptr<Orthanc::ImageAccessor> floatBuffer_; |
43 std::auto_ptr<CairoSurface> cairoBuffer_; | |
44 bool invert_; | |
45 ImageInterpolation interpolation_; | |
46 bool hasSelection_; | |
47 size_t selectedLayer_; | |
48 | |
49 bool RenderInternal(unsigned int width, | |
50 unsigned int height, | |
51 ImageInterpolation interpolation); | |
52 | |
53 protected: | |
54 virtual Extent2D GetSceneExtent() | |
55 { | |
428
751fb354149e
ability to change the scene of the RadiographyWidget
am@osimis.io
parents:
413
diff
changeset
|
56 return scene_->GetSceneExtent(); |
413 | 57 } |
58 | |
59 virtual bool RenderScene(CairoContext& context, | |
726
4f2416d519b4
moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
492
diff
changeset
|
60 const Deprecated::ViewportGeometry& view); |
413 | 61 |
432
4eb96c6b4e96
improved handling of MONOCHROME1, background and invertion
am@osimis.io
parents:
428
diff
changeset
|
62 virtual void RenderBackground(Orthanc::ImageAccessor& image, float minValue, float maxValue); |
4eb96c6b4e96
improved handling of MONOCHROME1, background and invertion
am@osimis.io
parents:
428
diff
changeset
|
63 |
4eb96c6b4e96
improved handling of MONOCHROME1, background and invertion
am@osimis.io
parents:
428
diff
changeset
|
64 bool IsInvertedInternal() const; |
4eb96c6b4e96
improved handling of MONOCHROME1, background and invertion
am@osimis.io
parents:
428
diff
changeset
|
65 |
413 | 66 public: |
67 RadiographyWidget(MessageBroker& broker, | |
428
751fb354149e
ability to change the scene of the RadiographyWidget
am@osimis.io
parents:
413
diff
changeset
|
68 boost::shared_ptr<RadiographyScene> scene, // TODO: check how we can avoid boost::shared_ptr here since we don't want them in the public API (app is keeping a boost::shared_ptr to this right now) |
413 | 69 const std::string& name); |
70 | |
71 RadiographyScene& GetScene() const | |
72 { | |
428
751fb354149e
ability to change the scene of the RadiographyWidget
am@osimis.io
parents:
413
diff
changeset
|
73 return *scene_; |
413 | 74 } |
75 | |
428
751fb354149e
ability to change the scene of the RadiographyWidget
am@osimis.io
parents:
413
diff
changeset
|
76 void SetScene(boost::shared_ptr<RadiographyScene> scene); |
751fb354149e
ability to change the scene of the RadiographyWidget
am@osimis.io
parents:
413
diff
changeset
|
77 |
1199
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
78 void Select(size_t layer); |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
79 |
1220
9ee6b28f53e8
RadiographyTextLayer: support multiple fonts
Alain Mazy <alain@mazy.be>
parents:
1199
diff
changeset
|
80 void Unselect(); |
413 | 81 |
1199
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
82 template<typename LayerType> bool SelectLayerByType(size_t index = 0); |
492 | 83 |
413 | 84 bool LookupSelectedLayer(size_t& layer); |
85 | |
86 void OnGeometryChanged(const RadiographyScene::GeometryChangedMessage& message); | |
87 | |
88 void OnContentChanged(const RadiographyScene::ContentChangedMessage& message); | |
89 | |
1131
4663f158c748
RadiographyWidget is now notified when a layer is removed from the scene
Alain Mazy <alain@mazy.be>
parents:
732
diff
changeset
|
90 void OnLayerRemoved(const RadiographyScene::LayerRemovedMessage& message); |
4663f158c748
RadiographyWidget is now notified when a layer is removed from the scene
Alain Mazy <alain@mazy.be>
parents:
732
diff
changeset
|
91 |
413 | 92 void SetInvert(bool invert); |
93 | |
94 void SwitchInvert(); | |
95 | |
96 bool IsInverted() const | |
97 { | |
98 return invert_; | |
99 } | |
100 | |
101 void SetInterpolation(ImageInterpolation interpolation); | |
102 | |
103 ImageInterpolation GetInterpolation() const | |
104 { | |
105 return interpolation_; | |
106 } | |
107 }; | |
1199
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
108 |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
109 template<typename LayerType> bool RadiographyWidget::SelectLayerByType(size_t index) |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
110 { |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
111 std::vector<size_t> layerIndexes; |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
112 size_t count = 0; |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
113 scene_->GetLayersIndexes(layerIndexes); |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
114 |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
115 for (size_t i = 0; i < layerIndexes.size(); ++i) |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
116 { |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
117 const LayerType* typedLayer = dynamic_cast<const LayerType*>(&(scene_->GetLayer(layerIndexes[i]))); |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
118 if (typedLayer != NULL) |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
119 { |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
120 if (count == index) |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
121 { |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
122 Select(layerIndexes[i]); |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
123 return true; |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
124 } |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
125 count++; |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
126 } |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
127 } |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
128 |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
129 return false; |
922d2e61aa5d
RadiograpyScene: can now remove any layer + new key wrappers for Delete/Backspace
Alain Mazy <alain@mazy.be>
parents:
1131
diff
changeset
|
130 } |
413 | 131 } |