comparison Framework/Widgets/WidgetBase.h @ 726:4f2416d519b4

moving layers, widgets and loaders to Deprecated namespace
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 21 May 2019 11:43:25 +0200
parents b70e9be013e4
children
comparison
equal deleted inserted replaced
714:d2c0e347ddc2 726:4f2416d519b4
24 #include "IWidget.h" 24 #include "IWidget.h"
25 25
26 #include "../Viewport/CairoContext.h" 26 #include "../Viewport/CairoContext.h"
27 #include "../Viewport/WidgetViewport.h" 27 #include "../Viewport/WidgetViewport.h"
28 28
29 namespace OrthancStone 29 namespace Deprecated
30 { 30 {
31 class WidgetBase : public IWidget 31 class WidgetBase : public IWidget
32 { 32 {
33 private: 33 private:
34 IWidget* parent_; 34 IWidget* parent_;
40 std::string name_; 40 std::string name_;
41 41
42 protected: 42 protected:
43 void ClearBackgroundOrthanc(Orthanc::ImageAccessor& target) const; 43 void ClearBackgroundOrthanc(Orthanc::ImageAccessor& target) const;
44 44
45 void ClearBackgroundCairo(CairoContext& context) const; 45 void ClearBackgroundCairo(OrthancStone::CairoContext& context) const;
46 46
47 void ClearBackgroundCairo(Orthanc::ImageAccessor& target) const; 47 void ClearBackgroundCairo(Orthanc::ImageAccessor& target) const;
48 48
49 void UpdateStatusBar(const std::string& message); 49 void UpdateStatusBar(const std::string& message);
50 50