Mercurial > hg > orthanc-stone
annotate Framework/Viewport/SdlWindow.h @ 1326:55166e57a77c broker
doc
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Tue, 24 Mar 2020 21:32:35 +0100 |
parents | 7ec8fea061b9 |
children |
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 | |
1270
2d8ab34c8c91
upgrade to year 2020
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
5 * Copyright (C) 2017-2020 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 | |
26 #include <boost/noncopyable.hpp> | |
27 | |
1198
4cc997207d8a
fix compatibility between SDL and DCMTK
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
28 // Forward declaration of SDL type to avoid clashes with DCMTK headers |
4cc997207d8a
fix compatibility between SDL and DCMTK
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
29 // on "typedef Sint8", in "StoneInitialization.cpp" |
4cc997207d8a
fix compatibility between SDL and DCMTK
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
30 struct SDL_Window; |
4cc997207d8a
fix compatibility between SDL and DCMTK
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
31 struct SDL_Renderer; |
4cc997207d8a
fix compatibility between SDL and DCMTK
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
32 struct SDL_Surface; |
4cc997207d8a
fix compatibility between SDL and DCMTK
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
33 |
0 | 34 namespace OrthancStone |
35 { | |
36 class SdlWindow : public boost::noncopyable | |
37 { | |
38 private: | |
1198
4cc997207d8a
fix compatibility between SDL and DCMTK
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
39 struct SDL_Window *window_; |
4cc997207d8a
fix compatibility between SDL and DCMTK
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
40 struct SDL_Renderer *renderer_; |
4cc997207d8a
fix compatibility between SDL and DCMTK
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
41 bool maximized_; |
0 | 42 |
43 public: | |
44 SdlWindow(const char* title, | |
45 unsigned int width, | |
46 unsigned int height, | |
656
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
555
diff
changeset
|
47 bool enableOpenGl, |
002d9562c8f5
Added support to DISABLE legacy scaling in SDL Windows (only in WIN32... this
Benjamin Golinvaux <bgo@osimis.io>
parents:
555
diff
changeset
|
48 bool allowDpiScaling = true); |
0 | 49 |
50 ~SdlWindow(); | |
51 | |
555
731b40e9bfe1
SdlWindow::GetObject()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
52 SDL_Window *GetObject() const |
731b40e9bfe1
SdlWindow::GetObject()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
53 { |
731b40e9bfe1
SdlWindow::GetObject()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
54 return window_; |
731b40e9bfe1
SdlWindow::GetObject()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
55 } |
731b40e9bfe1
SdlWindow::GetObject()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
56 |
0 | 57 unsigned int GetWidth() const; |
58 | |
59 unsigned int GetHeight() const; | |
60 | |
1205 | 61 /** |
62 * WARNING: "Refresh()" cannot only be called from the main SDL | |
63 * thread, in which the window was created. Otherwise, the | |
64 * renderer displays nothing! | |
65 **/ | |
1198
4cc997207d8a
fix compatibility between SDL and DCMTK
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1047
diff
changeset
|
66 void Render(struct SDL_Surface* surface); |
0 | 67 |
68 void ToggleMaximize(); | |
214 | 69 |
70 static void GlobalInitialize(); | |
71 | |
72 static void GlobalFinalize(); | |
0 | 73 }; |
74 } | |
75 | |
76 #endif |