summaryrefslogtreecommitdiff
path: root/dgl/Widget.hpp
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2014-11-18 02:02:48 +0000
committerfalkTX <falktx@gmail.com>2014-11-18 02:02:48 +0000
commitb8471201c6b2e2ec8f2693c9e6134ef83fa24362 (patch)
treefaec079ef1165032ac0bcf166fe70602ad736233 /dgl/Widget.hpp
parent9c99834f24fba894c2a282e2cea337589e015cac (diff)
Remove CairoWidget
Diffstat (limited to 'dgl/Widget.hpp')
-rw-r--r--dgl/Widget.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/dgl/Widget.hpp b/dgl/Widget.hpp
index 86c42d47..8c9664f7 100644
--- a/dgl/Widget.hpp
+++ b/dgl/Widget.hpp
@@ -26,6 +26,7 @@ START_NAMESPACE_DGL
class App;
class Window;
+class StandaloneWindow;
// -----------------------------------------------------------------------
@@ -177,22 +178,22 @@ public:
/**
Set width.
*/
- virtual void setWidth(uint width) noexcept;
+ void setWidth(uint width) noexcept;
/**
Set height.
*/
- virtual void setHeight(uint height) noexcept;
+ void setHeight(uint height) noexcept;
/**
Set size using @a width and @a height values.
*/
- virtual void setSize(uint width, uint height) noexcept;
+ void setSize(uint width, uint height) noexcept;
/**
Set size.
*/
- virtual void setSize(const Size<uint>& size) noexcept;
+ void setSize(const Size<uint>& size) noexcept;
/**
Get absolute X.
@@ -320,7 +321,6 @@ private:
Point<int> fAbsolutePos;
Size<uint> fSize;
- friend class CairoWidget;
friend class Window;
friend class StandaloneWindow;