Mercurial > hg > orthanc-stone
annotate Applications/Sdl/SdlEngine.h @ 482:f58fe38c8c04 bgo-commands-codegen
Ongoing work on codegen: ts and cpp enum and struct writing seem to be OK. No file write yet
author | bgo-osimis |
---|---|
date | Thu, 14 Feb 2019 20:58:42 +0100 |
parents | b70e9be013e4 |
children | 4f2416d519b4 |
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 | |
213
f753a7e15a73
rename SdlSurface as SdlCairoSurface
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
196
diff
changeset
|
26 #include "SdlCairoSurface.h" |
293 | 27 #include "../Generic/NativeStoneApplicationContext.h" |
0 | 28 |
29 namespace OrthancStone | |
30 { | |
385
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
293
diff
changeset
|
31 class SdlEngine : public IObserver |
0 | 32 { |
33 private: | |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
34 SdlWindow& window_; |
293 | 35 NativeStoneApplicationContext& context_; |
213
f753a7e15a73
rename SdlSurface as SdlCairoSurface
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
196
diff
changeset
|
36 SdlCairoSurface surface_; |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
37 bool viewportChanged_; |
0 | 38 |
271
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
222
diff
changeset
|
39 void SetSize(unsigned int width, |
0 | 40 unsigned int height); |
56
9e3c2e75b870
extremely simplified SDL engine
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
53
diff
changeset
|
41 |
0 | 42 void RenderFrame(); |
43 | |
44 static KeyboardModifiers GetKeyboardModifiers(const uint8_t* keyboardState, | |
45 const int scancodeCount); | |
46 | |
47 public: | |
48 SdlEngine(SdlWindow& window, | |
385
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
293
diff
changeset
|
49 NativeStoneApplicationContext& context, |
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
293
diff
changeset
|
50 MessageBroker& broker); |
0 | 51 |
385
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
293
diff
changeset
|
52 void OnViewportChanged(const IViewport::ViewportChangedMessage& message) |
0 | 53 { |
54 viewportChanged_ = true; | |
55 } | |
56 | |
57 void Run(); | |
58 }; | |
59 } | |
60 | |
61 #endif |