comparison Applications/Samples/TestPatternApplication.h @ 51:b340879da9bd

reorganization
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 27 Apr 2017 14:50:20 +0200
parents Samples/TestPatternApplication.h@28956ed68280
children c2dc924f1a63 4cff7b1ed31d
comparison
equal deleted inserted replaced
49:c45f368de5c0 51:b340879da9bd
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 Osimis, 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 "SampleApplicationBase.h"
25
26 #include "../../Framework/Widgets/TestCairoWidget.h"
27 #include "../../Framework/Widgets/TestWorldSceneWidget.h"
28 #include "../../Framework/Widgets/LayoutWidget.h"
29
30 namespace OrthancStone
31 {
32 namespace Samples
33 {
34 class TestPatternApplication : public SampleApplicationBase
35 {
36 public:
37 virtual void DeclareCommandLineOptions(boost::program_options::options_description& options)
38 {
39 boost::program_options::options_description generic("Sample options");
40 generic.add_options()
41 ("animate", boost::program_options::value<bool>()->default_value(true), "Animate the test pattern")
42 ;
43
44 options.add(generic);
45 }
46
47 virtual void Initialize(BasicApplicationContext& context,
48 IStatusBar& statusBar,
49 const boost::program_options::variables_map& parameters)
50 {
51 using namespace OrthancStone;
52
53 std::auto_ptr<LayoutWidget> layout(new LayoutWidget);
54 layout->SetPadding(10);
55 layout->SetBackgroundCleared(true);
56 layout->AddWidget(new TestCairoWidget(parameters["animate"].as<bool>()));
57 layout->AddWidget(new TestWorldSceneWidget);
58
59 context.SetCentralWidget(layout.release());
60 }
61 };
62 }
63 }