Mercurial > hg > orthanc-stone
annotate Applications/IStoneApplication.h @ 337:c4d4213f095c am-2
cont
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 18 Oct 2018 20:07:09 +0200 |
parents | daa04d15192c |
children | b70e9be013e4 |
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 | |
288 | 24 #include "StoneApplicationContext.h" |
0 | 25 #include <boost/program_options.hpp> |
222 | 26 #include "../Framework/Viewport/WidgetViewport.h" |
287 | 27 #include "json/json.h" |
307 | 28 #include "Commands/ICommand.h" |
29 #include "Commands/BaseCommandBuilder.h" | |
0 | 30 |
319
daa04d15192c
new SimpleViewer sample that has been split in multiple files to be able to scale it
am@osimis.io
parents:
307
diff
changeset
|
31 |
0 | 32 namespace OrthancStone |
33 { | |
319
daa04d15192c
new SimpleViewer sample that has been split in multiple files to be able to scale it
am@osimis.io
parents:
307
diff
changeset
|
34 #if ORTHANC_ENABLE_QT==1 |
daa04d15192c
new SimpleViewer sample that has been split in multiple files to be able to scale it
am@osimis.io
parents:
307
diff
changeset
|
35 class QStoneMainWindow; |
daa04d15192c
new SimpleViewer sample that has been split in multiple files to be able to scale it
am@osimis.io
parents:
307
diff
changeset
|
36 #endif |
daa04d15192c
new SimpleViewer sample that has been split in multiple files to be able to scale it
am@osimis.io
parents:
307
diff
changeset
|
37 |
288 | 38 // a StoneApplication is an application that can actually be executed |
39 // in multiple environments. i.e: it can run natively integrated in a QtApplication | |
40 // or it can be executed as part of a WebPage when compiled into WebAssembly. | |
41 class IStoneApplication : public boost::noncopyable | |
0 | 42 { |
242 | 43 protected: |
288 | 44 StoneApplicationContext* context_; |
242 | 45 |
0 | 46 public: |
288 | 47 virtual ~IStoneApplication() |
0 | 48 { |
49 } | |
50 | |
221
d7b2590744f8
wip: building applications reusable in SDL and WASM
am@osimis.io
parents:
134
diff
changeset
|
51 virtual void DeclareStartupOptions(boost::program_options::options_description& options) = 0; |
288 | 52 virtual void Initialize(StoneApplicationContext* context, |
242 | 53 IStatusBar& statusBar, |
221
d7b2590744f8
wip: building applications reusable in SDL and WASM
am@osimis.io
parents:
134
diff
changeset
|
54 const boost::program_options::variables_map& parameters) = 0; |
274
dc1beee33134
split SdlApplication into NativeApplication and SdlApplication
am@osimis.io
parents:
242
diff
changeset
|
55 #if ORTHANC_ENABLE_WASM==1 |
242 | 56 virtual void InitializeWasm() {} // specific initialization when the app is running in WebAssembly. This is called after the other Initialize() |
222 | 57 #endif |
319
daa04d15192c
new SimpleViewer sample that has been split in multiple files to be able to scale it
am@osimis.io
parents:
307
diff
changeset
|
58 #if ORTHANC_ENABLE_QT==1 |
daa04d15192c
new SimpleViewer sample that has been split in multiple files to be able to scale it
am@osimis.io
parents:
307
diff
changeset
|
59 virtual QStoneMainWindow* CreateQtMainWindow() = 0; |
daa04d15192c
new SimpleViewer sample that has been split in multiple files to be able to scale it
am@osimis.io
parents:
307
diff
changeset
|
60 #endif |
0 | 61 |
62 virtual std::string GetTitle() const = 0; | |
242 | 63 virtual IWidget* GetCentralWidget() = 0; |
0 | 64 |
65 virtual void Finalize() = 0; | |
307 | 66 |
67 virtual BaseCommandBuilder& GetCommandBuilder() = 0; | |
68 | |
69 virtual void ExecuteCommand(ICommand& command) | |
70 { | |
71 } | |
0 | 72 }; |
221
d7b2590744f8
wip: building applications reusable in SDL and WASM
am@osimis.io
parents:
134
diff
changeset
|
73 |
0 | 74 } |