0
|
1 /**
|
|
2 * Stone of Orthanc
|
|
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
|
|
4 * Department, University Hospital of Liege, Belgium
|
|
5 *
|
|
6 * This program is free software: you can redistribute it and/or
|
|
7 * modify it under the terms of the GNU General Public License as
|
|
8 * published by the Free Software Foundation, either version 3 of the
|
|
9 * License, or (at your option) any later version.
|
|
10 *
|
|
11 * In addition, as a special exception, the copyright holders of this
|
|
12 * program give permission to link the code of its release with the
|
|
13 * OpenSSL project's "OpenSSL" library (or with modified versions of it
|
|
14 * that use the same license as the "OpenSSL" library), and distribute
|
|
15 * the linked executables. You must obey the GNU General Public License
|
|
16 * in all respects for all of the code used other than "OpenSSL". If you
|
|
17 * modify file(s) with this exception, you may extend this exception to
|
|
18 * your version of the file(s), but you are not obligated to do so. If
|
|
19 * you do not wish to do so, delete this exception statement from your
|
|
20 * version. If you delete this exception statement from all source files
|
|
21 * in the program, then also delete it here.
|
|
22 *
|
|
23 * This program is distributed in the hope that it will be useful, but
|
|
24 * WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
26 * General Public License for more details.
|
|
27 *
|
|
28 * You should have received a copy of the GNU General Public License
|
|
29 * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
30 **/
|
|
31
|
|
32
|
|
33 #pragma once
|
|
34
|
|
35 #include "SampleInteractor.h"
|
|
36
|
|
37 #include "../Framework/Toolbox/OrthancSeriesLoader.h"
|
|
38 #include "../Framework/Layers/SeriesFrameRendererFactory.h"
|
|
39 #include "../Framework/Layers/SiblingSliceLocationFactory.h"
|
|
40 #include "../Framework/Widgets/LayoutWidget.h"
|
16
|
41 #include "../Resources/Orthanc/Core/Logging.h"
|
0
|
42
|
|
43 namespace OrthancStone
|
|
44 {
|
|
45 namespace Samples
|
|
46 {
|
|
47 class SynchronizedSeriesApplication : public SampleApplicationBase
|
|
48 {
|
|
49 private:
|
|
50 LayeredSceneWidget* CreateSeriesWidget(BasicApplicationContext& context,
|
|
51 const std::string& series)
|
|
52 {
|
|
53 std::auto_ptr<ISeriesLoader> loader(new OrthancSeriesLoader(context.GetOrthancConnection(), series));
|
|
54
|
|
55 std::auto_ptr<SampleInteractor> interactor(new SampleInteractor(*loader, false));
|
|
56
|
|
57 std::auto_ptr<LayeredSceneWidget> widget(new LayeredSceneWidget);
|
|
58 widget->AddLayer(new SeriesFrameRendererFactory(loader.release(), false));
|
|
59 widget->SetSlice(interactor->GetCursor().GetCurrentSlice());
|
|
60 widget->SetInteractor(*interactor);
|
|
61
|
|
62 context.AddInteractor(interactor.release());
|
|
63
|
|
64 return widget.release();
|
|
65 }
|
|
66
|
|
67 public:
|
|
68 virtual void DeclareCommandLineOptions(boost::program_options::options_description& options)
|
|
69 {
|
|
70 boost::program_options::options_description generic("Sample options");
|
|
71 generic.add_options()
|
|
72 ("a", boost::program_options::value<std::string>(),
|
|
73 "Orthanc ID of the 1st series")
|
|
74 ("b", boost::program_options::value<std::string>(),
|
|
75 "Orthanc ID of the 2nd series")
|
|
76 ("c", boost::program_options::value<std::string>(),
|
|
77 "Orthanc ID of the 3rd series")
|
|
78 ;
|
|
79
|
|
80 options.add(generic);
|
|
81 }
|
|
82
|
|
83 virtual void Initialize(BasicApplicationContext& context,
|
|
84 IStatusBar& statusBar,
|
|
85 const boost::program_options::variables_map& parameters)
|
|
86 {
|
|
87 if (parameters.count("a") != 1 ||
|
|
88 parameters.count("b") != 1 ||
|
|
89 parameters.count("c") != 1)
|
|
90 {
|
|
91 LOG(ERROR) << "At least one of the three series IDs is missing";
|
|
92 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange);
|
|
93 }
|
|
94
|
|
95 std::auto_ptr<LayeredSceneWidget> a(CreateSeriesWidget(context, parameters["a"].as<std::string>()));
|
|
96 std::auto_ptr<LayeredSceneWidget> b(CreateSeriesWidget(context, parameters["b"].as<std::string>()));
|
|
97 std::auto_ptr<LayeredSceneWidget> c(CreateSeriesWidget(context, parameters["c"].as<std::string>()));
|
|
98
|
|
99 SiblingSliceLocationFactory::Configure(*a, *b);
|
|
100 SiblingSliceLocationFactory::Configure(*a, *c);
|
|
101 SiblingSliceLocationFactory::Configure(*b, *c);
|
|
102
|
|
103 std::auto_ptr<LayoutWidget> layout(new LayoutWidget);
|
|
104 layout->SetPadding(5);
|
|
105 layout->AddWidget(a.release());
|
|
106
|
|
107 std::auto_ptr<LayoutWidget> layoutB(new LayoutWidget);
|
|
108 layoutB->SetVertical();
|
|
109 layoutB->SetPadding(5);
|
|
110 layoutB->AddWidget(b.release());
|
|
111 layoutB->AddWidget(c.release());
|
|
112 layout->AddWidget(layoutB.release());
|
|
113
|
|
114 context.SetCentralWidget(layout.release());
|
|
115 }
|
|
116 };
|
|
117 }
|
|
118 }
|