Mercurial > hg > orthanc-stone
annotate Applications/Sdl/SdlEngine.h @ 236:f73d722d98c8 am
renamed folder
author | am@osimis.io |
---|---|
date | Tue, 19 Jun 2018 16:06:32 +0200 |
parents | 84844649a8fd |
children | 46c5296d867e |
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 | |
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" |
222 | 27 #include "BasicSdlApplicationContext.h" |
0 | 28 |
29 namespace OrthancStone | |
30 { | |
91 | 31 class SdlEngine : public IViewport::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_; |
222 | 35 BasicSdlApplicationContext& 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 |
222 | 39 void SetSize(BasicSdlApplicationContext::ViewportLocker& locker, |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
40 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, | |
222 | 50 BasicSdlApplicationContext& context); |
0 | 51 |
52 virtual ~SdlEngine(); | |
53 | |
54 virtual void NotifyChange(const IViewport& viewport) | |
55 { | |
56 viewportChanged_ = true; | |
57 } | |
58 | |
59 void Run(); | |
60 }; | |
61 } | |
62 | |
63 #endif |