Mercurial > hg > orthanc-stone
annotate Framework/Widgets/WidgetBase.h @ 254:abc1c6231947 am-2
cleanup
author | am@osimis.io |
---|---|
date | Tue, 03 Jul 2018 11:49:02 +0200 |
parents | fccffbf99ba1 |
children | f21ba2468570 |
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:
47
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 #include "IWidget.h" | |
25 | |
26 #include "../Viewport/CairoContext.h" | |
27 | |
28 namespace OrthancStone | |
29 { | |
30 class WidgetBase : public IWidget | |
31 { | |
32 private: | |
61
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
33 IWidget* parent_; |
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
34 IViewport* viewport_; |
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
35 IStatusBar* statusBar_; |
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
36 bool backgroundCleared_; |
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
37 uint8_t backgroundColor_[3]; |
85 | 38 bool transmitMouseOver_; |
0 | 39 |
40 protected: | |
41 void ClearBackgroundOrthanc(Orthanc::ImageAccessor& target) const; | |
42 | |
43 void ClearBackgroundCairo(CairoContext& context) const; | |
44 | |
45 void ClearBackgroundCairo(Orthanc::ImageAccessor& target) const; | |
46 | |
47 void UpdateStatusBar(const std::string& message); | |
48 | |
49 IStatusBar* GetStatusBar() const | |
50 { | |
51 return statusBar_; | |
52 } | |
53 | |
54 public: | |
55 WidgetBase(); | |
56 | |
61
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
57 virtual void SetDefaultView() |
0 | 58 { |
59 } | |
61
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
60 |
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
61 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
|
62 |
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
63 virtual void SetViewport(IViewport& viewport); |
0 | 64 |
65 void SetBackgroundCleared(bool clear) | |
66 { | |
67 backgroundCleared_ = clear; | |
68 } | |
69 | |
70 bool IsBackgroundCleared() const | |
71 { | |
72 return backgroundCleared_; | |
73 } | |
74 | |
85 | 75 void SetTransmitMouseOver(bool transmit) |
76 { | |
77 transmitMouseOver_ = transmit; | |
78 } | |
79 | |
0 | 80 void SetBackgroundColor(uint8_t red, |
81 uint8_t green, | |
82 uint8_t blue); | |
83 | |
84 void GetBackgroundColor(uint8_t& red, | |
85 uint8_t& green, | |
86 uint8_t& blue) const; | |
87 | |
88 virtual void SetStatusBar(IStatusBar& statusBar) | |
89 { | |
90 statusBar_ = &statusBar; | |
91 } | |
92 | |
93 virtual bool Render(Orthanc::ImageAccessor& surface); | |
46
766d31dc5716
removing threads for wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
40
diff
changeset
|
94 |
766d31dc5716
removing threads for wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
40
diff
changeset
|
95 virtual bool HasUpdateContent() const |
0 | 96 { |
46
766d31dc5716
removing threads for wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
40
diff
changeset
|
97 return false; |
766d31dc5716
removing threads for wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
40
diff
changeset
|
98 } |
0 | 99 |
46
766d31dc5716
removing threads for wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
40
diff
changeset
|
100 virtual void UpdateContent(); |
0 | 101 |
55 | 102 virtual bool HasRenderMouseOver() |
54
01aa453d4d5b
IWidget::HasRenderMouseOver
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
48
diff
changeset
|
103 { |
85 | 104 return transmitMouseOver_; |
54
01aa453d4d5b
IWidget::HasRenderMouseOver
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
48
diff
changeset
|
105 } |
0 | 106 |
61
ca644004d2ee
MAJOR - removal of Start/Stop and observers in IWidget
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
107 virtual void NotifyChange(); |
0 | 108 }; |
109 } |