Mercurial > hg > orthanc-stone
annotate Framework/Deprecated/Widgets/WidgetBase.h @ 1006:4f28d9459e31 toa2019092001
Fixed unit tests and deprecated classes according to last API changes. UT all run ok.
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Fri, 20 Sep 2019 12:13:10 +0200 |
parents | c237e0625065 |
children | 2d8ab34c8c91 |
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 #include "IWidget.h" | |
25 | |
807
c237e0625065
deprecating CairoFont
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
732
diff
changeset
|
26 #include "../../Wrappers/CairoContext.h" |
385
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
27 #include "../Viewport/WidgetViewport.h" |
0 | 28 |
726
4f2416d519b4
moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
29 namespace Deprecated |
0 | 30 { |
31 class WidgetBase : public IWidget | |
32 { | |
33 private: | |
385
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
34 IWidget* parent_; |
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
35 WidgetViewport* viewport_; |
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
36 IStatusBar* statusBar_; |
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
37 bool backgroundCleared_; |
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
38 uint8_t backgroundColor_[3]; |
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
39 bool transmitMouseOver_; |
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
40 std::string name_; |
0 | 41 |
42 protected: | |
43 void ClearBackgroundOrthanc(Orthanc::ImageAccessor& target) const; | |
44 | |
726
4f2416d519b4
moving layers, widgets and loaders to Deprecated namespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
439
diff
changeset
|
45 void ClearBackgroundCairo(OrthancStone::CairoContext& context) const; |
0 | 46 |
47 void ClearBackgroundCairo(Orthanc::ImageAccessor& target) const; | |
48 | |
49 void UpdateStatusBar(const std::string& message); | |
50 | |
51 IStatusBar* GetStatusBar() const | |
52 { | |
53 return statusBar_; | |
54 } | |
55 | |
56 public: | |
273
f21ba2468570
force all Widgets to have a name to ease debugging
am@osimis.io
parents:
196
diff
changeset
|
57 WidgetBase(const std::string& name); |
0 | 58 |
330 | 59 virtual void FitContent() |
0 | 60 { |
61 } | |
61
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
62 |
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
63 virtual void SetParent(IWidget& parent); |
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
64 |
385
6cc3ce74dc05
using message broker in widgets
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
330
diff
changeset
|
65 virtual void SetViewport(WidgetViewport& viewport); |
0 | 66 |
67 void SetBackgroundCleared(bool clear) | |
68 { | |
69 backgroundCleared_ = clear; | |
70 } | |
71 | |
72 bool IsBackgroundCleared() const | |
73 { | |
74 return backgroundCleared_; | |
75 } | |
76 | |
85 | 77 void SetTransmitMouseOver(bool transmit) |
78 { | |
79 transmitMouseOver_ = transmit; | |
80 } | |
81 | |
0 | 82 void SetBackgroundColor(uint8_t red, |
83 uint8_t green, | |
84 uint8_t blue); | |
85 | |
86 void GetBackgroundColor(uint8_t& red, | |
87 uint8_t& green, | |
88 uint8_t& blue) const; | |
89 | |
90 virtual void SetStatusBar(IStatusBar& statusBar) | |
91 { | |
92 statusBar_ = &statusBar; | |
93 } | |
94 | |
95 virtual bool Render(Orthanc::ImageAccessor& surface); | |
46
766d31dc5716
removing threads for wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
40
diff
changeset
|
96 |
386
e33659decec5
renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
385
diff
changeset
|
97 virtual bool HasAnimation() const |
0 | 98 { |
46
766d31dc5716
removing threads for wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
40
diff
changeset
|
99 return false; |
766d31dc5716
removing threads for wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
40
diff
changeset
|
100 } |
0 | 101 |
386
e33659decec5
renamed UpdateContent() as DoAnimation()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
385
diff
changeset
|
102 virtual void DoAnimation(); |
0 | 103 |
55 | 104 virtual bool HasRenderMouseOver() |
54
01aa453d4d5b
IWidget::HasRenderMouseOver
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
48
diff
changeset
|
105 { |
85 | 106 return transmitMouseOver_; |
54
01aa453d4d5b
IWidget::HasRenderMouseOver
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
48
diff
changeset
|
107 } |
0 | 108 |
278 | 109 virtual void NotifyContentChanged(); |
273
f21ba2468570
force all Widgets to have a name to ease debugging
am@osimis.io
parents:
196
diff
changeset
|
110 |
f21ba2468570
force all Widgets to have a name to ease debugging
am@osimis.io
parents:
196
diff
changeset
|
111 const std::string& GetName() const |
f21ba2468570
force all Widgets to have a name to ease debugging
am@osimis.io
parents:
196
diff
changeset
|
112 { |
f21ba2468570
force all Widgets to have a name to ease debugging
am@osimis.io
parents:
196
diff
changeset
|
113 return name_; |
f21ba2468570
force all Widgets to have a name to ease debugging
am@osimis.io
parents:
196
diff
changeset
|
114 } |
f21ba2468570
force all Widgets to have a name to ease debugging
am@osimis.io
parents:
196
diff
changeset
|
115 |
0 | 116 }; |
117 } |