annotate Framework/Deprecated/Widgets/EmptyWidget.h @ 732:c35e98d22764

move Deprecated classes to a separate folder
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 21 May 2019 14:27:35 +0200
parents Framework/Widgets/EmptyWidget.h@4f2416d519b4
children 2d8ab34c8c91
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 /**
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2 * Stone of Orthanc
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
4 * Department, University Hospital of Liege, Belgium
439
b70e9be013e4 preparing for 2019
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 386
diff changeset
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium
0
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
6 *
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
7 * This program is free software: you can redistribute it and/or
47
28956ed68280 agpl license
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 40
diff changeset
8 * modify it under the terms of the GNU Affero General Public License
28956ed68280 agpl license
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 40
diff changeset
9 * as published by the Free Software Foundation, either version 3 of
28956ed68280 agpl license
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 40
diff changeset
10 * the License, or (at your option) any later version.
0
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
11 *
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful, but
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
47
28956ed68280 agpl license
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 40
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28956ed68280 agpl license
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 40
diff changeset
15 * Affero General Public License for more details.
235
ce4405d98b92 Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents: 196
diff changeset
16 *
47
28956ed68280 agpl license
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 40
diff changeset
17 * You should have received a copy of the GNU Affero General Public License
0
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
19 **/
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
20
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
21
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
22 #pragma once
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
23
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
24 #include "IWidget.h"
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
25
726
4f2416d519b4 moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 457
diff changeset
26 namespace Deprecated
0
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
7a364e44fbb4 renamed SetDefaultView in FitContent
am@osimis.io
parents: 327
diff changeset
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
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
60
278
8a86695fcbc3 renamings
am@osimis.io
parents: 235
diff changeset
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
298f375dcb68 LayerWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 61
diff changeset
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
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
73
235
ce4405d98b92 Added SimpleViewerApplication (working in SDL)
am@osimis.io
parents: 196
diff changeset
74 virtual bool Render(Orthanc::ImageAccessor& surface);
0
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
75
726
4f2416d519b4 moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 457
diff changeset
76 virtual IMouseTracker* CreateMouseTracker(OrthancStone::MouseButton button,
235
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,
726
4f2416d519b4 moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 457
diff changeset
79 OrthancStone::KeyboardModifiers modifiers,
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
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
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
90
726
4f2416d519b4 moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 457
diff changeset
91 virtual void MouseWheel(OrthancStone::MouseWheelDirection direction,
235
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,
726
4f2416d519b4 moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 457
diff changeset
94 OrthancStone::KeyboardModifiers modifiers)
235
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
726
4f2416d519b4 moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 457
diff changeset
98 virtual void KeyPressed(OrthancStone::KeyboardKeys key,
327
8716176ff7f0 added support for arrow keys
am@osimis.io
parents: 278
diff changeset
99 char keyChar,
726
4f2416d519b4 moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 457
diff changeset
100 OrthancStone::KeyboardModifiers modifiers)
235
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
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
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
298f375dcb68 LayerWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 61
diff changeset
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
351ab0da0150 initial commit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
116 }