comparison Framework/Deprecated/Widgets/WidgetBase.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/WidgetBase.h@4f2416d519b4
children c237e0625065
comparison
equal deleted inserted replaced
729:529189f399ec 732:c35e98d22764
1 /**
2 * Stone of Orthanc
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium
6 *
7 * This program is free software: you can redistribute it and/or
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.
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
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
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 #include "../Viewport/WidgetViewport.h"
28
29 namespace Deprecated
30 {
31 class WidgetBase : public IWidget
32 {
33 private:
34 IWidget* parent_;
35 WidgetViewport* viewport_;
36 IStatusBar* statusBar_;
37 bool backgroundCleared_;
38 uint8_t backgroundColor_[3];
39 bool transmitMouseOver_;
40 std::string name_;
41
42 protected:
43 void ClearBackgroundOrthanc(Orthanc::ImageAccessor& target) const;
44
45 void ClearBackgroundCairo(OrthancStone::CairoContext& context) const;
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:
57 WidgetBase(const std::string& name);
58
59 virtual void FitContent()
60 {
61 }
62
63 virtual void SetParent(IWidget& parent);
64
65 virtual void SetViewport(WidgetViewport& viewport);
66
67 void SetBackgroundCleared(bool clear)
68 {
69 backgroundCleared_ = clear;
70 }
71
72 bool IsBackgroundCleared() const
73 {
74 return backgroundCleared_;
75 }
76
77 void SetTransmitMouseOver(bool transmit)
78 {
79 transmitMouseOver_ = transmit;
80 }
81
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);
96
97 virtual bool HasAnimation() const
98 {
99 return false;
100 }
101
102 virtual void DoAnimation();
103
104 virtual bool HasRenderMouseOver()
105 {
106 return transmitMouseOver_;
107 }
108
109 virtual void NotifyContentChanged();
110
111 const std::string& GetName() const
112 {
113 return name_;
114 }
115
116 };
117 }