Mercurial > hg > orthanc-stone
annotate Applications/Samples/SampleApplicationBase.h @ 242:092db46c6291 am
improved SDL/Wasm unification
author | am@osimis.io |
---|---|
date | Wed, 20 Jun 2018 14:20:55 +0200 |
parents | b4642964c355 |
children | dc1beee33134 |
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 | |
134
4cff7b1ed31d
upgrade to year 2018
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
5 * Copyright (C) 2017-2018 Osimis S.A., 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 #pragma once | |
23 | |
242 | 24 //#if ORTHANC_ENABLE_SDL==1 |
25 //#include "../../Applications/Sdl/BasicSdlApplication.h" | |
26 //#else | |
27 //#include "../../Applications/Wasm/BasicWasmApplication.h" | |
28 //#endif | |
29 #include "../../Applications/IBasicApplication.h" | |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
221
diff
changeset
|
30 #include "../../Framework/Viewport/WidgetViewport.h" |
242 | 31 //#include "SampleApplicationContext.h" |
0 | 32 |
33 namespace OrthancStone | |
34 { | |
35 namespace Samples | |
36 { | |
221
d7b2590744f8
wip: building applications reusable in SDL and WASM
am@osimis.io
parents:
134
diff
changeset
|
37 |
242 | 38 //#if ORTHANC_ENABLE_SDL==1 |
39 // class SampleSdlApplicationBase : public BasicSdlApplication { | |
40 // protected: | |
41 // public: | |
42 // virtual BasicApplicationContext& CreateApplicationContext(Orthanc::WebServiceParameters& orthanc, WidgetViewport* centralViewport) { | |
43 // context_.reset(new SampleApplicationContext(orthanc, centralViewport)); | |
221
d7b2590744f8
wip: building applications reusable in SDL and WASM
am@osimis.io
parents:
134
diff
changeset
|
44 |
242 | 45 // return *context_; |
46 // } | |
47 // }; | |
221
d7b2590744f8
wip: building applications reusable in SDL and WASM
am@osimis.io
parents:
134
diff
changeset
|
48 |
242 | 49 // typedef SampleSdlApplicationBase SampleApplicationBase_; |
50 //#else | |
51 // class SampleWasmApplicationBase : public BasicWasmApplication { | |
52 // protected: | |
53 // std::unique_ptr<SampleApplicationContext> context_; | |
54 // public: | |
55 // virtual BasicApplicationContext& CreateApplicationContext(IWebService& orthancWebService, std::shared_ptr<WidgetViewport> centralViewport) { | |
56 // context_.reset(new SampleApplicationContext(orthancWebService)); | |
57 // return *context_; | |
58 // } | |
237
b4642964c355
SimpleViewer demo running both with SDL and Wasm
am@osimis.io
parents:
235
diff
changeset
|
59 |
242 | 60 // }; |
237
b4642964c355
SimpleViewer demo running both with SDL and Wasm
am@osimis.io
parents:
235
diff
changeset
|
61 |
242 | 62 // typedef SampleWasmApplicationBase SampleApplicationBase_; |
221
d7b2590744f8
wip: building applications reusable in SDL and WASM
am@osimis.io
parents:
134
diff
changeset
|
63 |
242 | 64 //#endif |
221
d7b2590744f8
wip: building applications reusable in SDL and WASM
am@osimis.io
parents:
134
diff
changeset
|
65 |
242 | 66 class SampleApplicationBase : public IBasicApplication |
0 | 67 { |
68 public: | |
69 virtual std::string GetTitle() const | |
70 { | |
71 return "Stone of Orthanc - Sample"; | |
72 } | |
242 | 73 |
74 virtual void CustomInitialize() {} | |
75 | |
221
d7b2590744f8
wip: building applications reusable in SDL and WASM
am@osimis.io
parents:
134
diff
changeset
|
76 }; |
0 | 77 |
221
d7b2590744f8
wip: building applications reusable in SDL and WASM
am@osimis.io
parents:
134
diff
changeset
|
78 |
0 | 79 } |
80 } |