summaryrefslogtreecommitdiff
path: root/src/frame.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/frame.hh')
-rw-r--r--src/frame.hh11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/frame.hh b/src/frame.hh
index 7831284e..5da88902 100644
--- a/src/frame.hh
+++ b/src/frame.hh
@@ -40,9 +40,6 @@ private:
Client *_client;
const otk::ScreenInfo *_screen;
- //! The style to use for size and display the decorations
- otk::Style *_style;
-
//! The size of the frame on each side of the client window
otk::Strut _size;
@@ -78,6 +75,14 @@ public:
//! Destroys the Frame object
virtual ~Frame();
+ otk::Rect area() const {
+ otk::Rect a(_client->area());
+ a.setRect(a.x() - _size.left, a.y() - _size.top,
+ a.width() + _size.left + _size.right,
+ a.height() + _size.top + _size.bottom);
+ return a;
+ }
+
//! Set the style to decorate the frame with
virtual void setStyle(otk::Style *style);