Mercurial > hg > orthanc-stone
annotate Applications/Sdl/SdlEngine.h @ 1117:383aa2a7d426 broker
integration mainline->broker
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 04 Nov 2019 15:54:57 +0100 |
parents | b537002f83a9 |
children | 0ca50d275b9a |
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 | |
439 | 5 * Copyright (C) 2017-2019 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 | |
24 #if ORTHANC_ENABLE_SDL == 1 | |
25 | |
1066
b537002f83a9
removing broker from deprecated classes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
726
diff
changeset
|
26 #include "../../Framework/Messages/ObserverBase.h" |
b537002f83a9
removing broker from deprecated classes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
726
diff
changeset
|
27 #include "../Generic/NativeStoneApplicationContext.h" |
213
f753a7e15a73
rename SdlSurface as SdlCairoSurface
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
196
diff
changeset
|
28 #include "SdlCairoSurface.h" |
0 | 29 |
30 namespace OrthancStone | |
31 { | |
1066
b537002f83a9
removing broker from deprecated classes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
726
diff
changeset
|
32 class SdlEngine : public ObserverBase<SdlEngine> |
0 | 33 { |
34 private: | |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
35 SdlWindow& window_; |
293 | 36 NativeStoneApplicationContext& context_; |
213
f753a7e15a73
rename SdlSurface as SdlCairoSurface
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
196
diff
changeset
|
37 SdlCairoSurface surface_; |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
38 bool viewportChanged_; |
0 | 39 |
271
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
222
diff
changeset
|
40 void SetSize(unsigned int width, |
0 | 41 unsigned int height); |
56
9e3c2e75b870
extremely simplified SDL engine
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
53
diff
changeset
|
42 |
0 | 43 void RenderFrame(); |
44 | |
45 static KeyboardModifiers GetKeyboardModifiers(const uint8_t* keyboardState, | |
46 const int scancodeCount); | |
47 | |
48 public: | |
49 SdlEngine(SdlWindow& window, | |
1066
b537002f83a9
removing broker from deprecated classes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
726
diff
changeset
|
50 NativeStoneApplicationContext& context); |
0 | 51 |
726
4f2416d519b4
moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
52 void OnViewportChanged(const Deprecated::IViewport::ViewportChangedMessage& message) |
0 | 53 { |
54 viewportChanged_ = true; | |
55 } | |
56 | |
57 void Run(); | |
58 }; | |
59 } | |
60 | |
61 #endif |