summaryrefslogtreecommitdiff
path: root/src/frame.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-11-10 08:42:34 +0000
committerDana Jansens <danakj@orodu.net>2002-11-10 08:42:34 +0000
commit6e2593cadc9a755d0e08facb7df0459a786e692b (patch)
treea9e837b78d12fcecdf373d73efa68f542a04f244 /src/frame.hh
parent0b17bd83c7d09ee364913f5e5f6b214f996b3a83 (diff)
handle events on all of the client's decor as for the client
Diffstat (limited to 'src/frame.hh')
-rw-r--r--src/frame.hh10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/frame.hh b/src/frame.hh
index 7814ed35..5e7ba927 100644
--- a/src/frame.hh
+++ b/src/frame.hh
@@ -104,6 +104,16 @@ public:
//! Returns the frame's most-parent window, which is a child of the root
//! window
inline Window window() const { return _window; }
+
+ inline Window titlebar() const { return _titlebar; }
+ inline Window label() const { return _label; }
+ inline Window buttonIconify() const { return _button_iconify; }
+ inline Window buttonMax() const { return _button_max; }
+ inline Window buttonStick() const { return _button_stick; }
+ inline Window buttonClose() const { return _button_close; }
+ inline Window handle() const { return _handle; }
+ inline Window gripLeft() const { return _grip_left; }
+ inline Window gripRight() const { return _grip_right; }
};
}