Mercurial > hg > orthanc-stone
annotate Framework/Widgets/EmptyWidget.h @ 550:01c4b4583cc1 ct-pet-dose-struct
Close branch ct-pet-dose-struct
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Tue, 02 Apr 2019 14:02:12 +0000 |
parents | 3b4df9925db6 |
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. | |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
16 * |
47 | 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 #include "IWidget.h" | |
25 | |
26 namespace OrthancStone | |
27 { | |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
28 /** |
385
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
29 * This is a test widget that simply fills its surface with an |
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
30 * uniform color. |
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
31 **/ |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
32 class EmptyWidget : public IWidget |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
33 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
34 private: |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
35 uint8_t red_; |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
36 uint8_t green_; |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
37 uint8_t blue_; |
0 | 38 |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
39 public: |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
40 EmptyWidget(uint8_t red, |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
41 uint8_t green, |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
42 uint8_t blue) : |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
43 red_(red), |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
44 green_(green), |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
45 blue_(blue) |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
46 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
47 } |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
48 |
330 | 49 virtual void FitContent() |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
50 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
51 } |
0 | 52 |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
53 virtual void SetParent(IWidget& widget) |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
54 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
55 } |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
56 |
385
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
57 virtual void SetViewport(WidgetViewport& viewport) |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
58 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
59 } |
0 | 60 |
278 | 61 virtual void NotifyContentChanged() |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
62 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
63 } |
66 | 64 |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
65 virtual void SetStatusBar(IStatusBar& statusBar) |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
66 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
67 } |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
68 |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
69 virtual void SetSize(unsigned int width, |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
70 unsigned int height) |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
71 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
72 } |
0 | 73 |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
74 virtual bool Render(Orthanc::ImageAccessor& surface); |
0 | 75 |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
76 virtual IMouseTracker* CreateMouseTracker(MouseButton button, |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
77 int x, |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
78 int y, |
457
3b4df9925db6
added support for 'touch' in mouse trackers. This is still a bit hacky and we need to refactor it to make it clean. Thanks to that, Pan and zoom are available together with 2 touches
Alain Mazy <alain@mazy.be>
parents:
439
diff
changeset
|
79 KeyboardModifiers modifiers, |
3b4df9925db6
added support for 'touch' in mouse trackers. This is still a bit hacky and we need to refactor it to make it clean. Thanks to that, Pan and zoom are available together with 2 touches
Alain Mazy <alain@mazy.be>
parents:
439
diff
changeset
|
80 const std::vector<Touch>& touches) |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
81 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
82 return NULL; |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
83 } |
0 | 84 |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
85 virtual void RenderMouseOver(Orthanc::ImageAccessor& target, |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
86 int x, |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
87 int y) |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
88 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
89 } |
0 | 90 |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
91 virtual void MouseWheel(MouseWheelDirection direction, |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
92 int x, |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
93 int y, |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
94 KeyboardModifiers modifiers) |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
95 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
96 } |
46
766d31dc5716
removing threads for wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
40
diff
changeset
|
97 |
327 | 98 virtual void KeyPressed(KeyboardKeys key, |
99 char keyChar, | |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
100 KeyboardModifiers modifiers) |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
101 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
102 } |
0 | 103 |
386
e33659decec5
renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
385
diff
changeset
|
104 virtual bool HasAnimation() const |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
105 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
106 return false; |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
107 } |
66 | 108 |
386
e33659decec5
renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
385
diff
changeset
|
109 virtual void DoAnimation(); |
54
01aa453d4d5b
IWidget::HasRenderMouseOver
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
48
diff
changeset
|
110 |
235
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
111 virtual bool HasRenderMouseOver() |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
112 { |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
113 return false; |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
114 } |
ce4405d98b92
Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents:
196
diff
changeset
|
115 }; |
0 | 116 } |