comparison Resources/Graveyard/Deprecated/Applications/IStoneApplication.h @ 1503:553084468225

moving /Deprecated/ to /Resources/Graveyard/Deprecated/
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 30 Jun 2020 11:38:13 +0200
parents Deprecated/Applications/IStoneApplication.h@ff8d2e46ac63
children
comparison
equal deleted inserted replaced
1502:e5729dab3f67 1503:553084468225
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-2020 Osimis S.A., 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 "StoneApplicationContext.h"
25 #include "../Framework/Deprecated/Viewport/WidgetViewport.h"
26
27 #include <boost/program_options.hpp>
28 #include <json/json.h>
29
30 namespace OrthancStone
31 {
32 #if ORTHANC_ENABLE_QT==1
33 class QStoneMainWindow;
34 #endif
35
36 // a StoneApplication is an application that can actually be executed
37 // in multiple environments. i.e: it can run natively integrated in a QtApplication
38 // or it can be executed as part of a WebPage when compiled into WebAssembly.
39 class IStoneApplication : public boost::noncopyable
40 {
41 protected:
42 StoneApplicationContext* context_;
43
44 public:
45 virtual ~IStoneApplication()
46 {
47 }
48
49 virtual void DeclareStartupOptions(boost::program_options::options_description& options) = 0;
50 virtual void Initialize(StoneApplicationContext* context,
51 Deprecated::IStatusBar& statusBar,
52 const boost::program_options::variables_map& parameters) = 0;
53
54 /**
55 This method is meant to process messages received from the outside world (i.e. GUI)
56 */
57 virtual void HandleSerializedMessage(const char* data) = 0;
58
59 #if ORTHANC_ENABLE_WASM==1
60 virtual void InitializeWasm() {} // specific initialization when the app is running in WebAssembly. This is called after the other Initialize()
61 #endif
62 #if ORTHANC_ENABLE_QT==1
63 virtual QStoneMainWindow* CreateQtMainWindow() = 0;
64 #endif
65
66 virtual std::string GetTitle() const = 0;
67
68 virtual void SetCentralWidget(boost::shared_ptr<Deprecated::IWidget> widget) = 0;
69
70 virtual boost::shared_ptr<Deprecated::IWidget> GetCentralWidget() = 0;
71
72 virtual void Finalize() = 0;
73 };
74 }