diff options
author | Sam Spilsbury <smspillaz@gmail.com> | 2009-06-04 14:40:00 +0800 |
---|---|---|
committer | Joel Bosveld <Joel.Bosveld@gmail.com> | 2009-07-01 21:04:14 +0800 |
commit | 8f734f64d025eeaecc9ca9ab5b250dc305a425ea (patch) | |
tree | 466e54a75d4dc749843f954eef9230cbed6bdbd4 /include | |
parent | 0a4cf3fd9e2f1eff7094da3ef49d270d72ac5452 (diff) | |
download | zcomp-8f734f64d025eeaecc9ca9ab5b250dc305a425ea.tar.gz zcomp-8f734f64d025eeaecc9ca9ab5b250dc305a425ea.tar.bz2 |
Make bool CompWindow::isFocussable () wrappable
Diffstat (limited to 'include')
-rw-r--r-- | include/core/window.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/window.h b/include/core/window.h index ac8ff0a..2b4f358 100644 --- a/include/core/window.h +++ b/include/core/window.h @@ -227,10 +227,11 @@ class WindowInterface : public WrapableInterface<CompWindow, WindowInterface> virtual void updateFrameRegion (CompRegion ®ion); virtual bool alpha (); + virtual bool isFocussable (); }; class CompWindow : - public WrapableHandler<WindowInterface, 14>, + public WrapableHandler<WindowInterface, 15>, public PluginClassStorage { public: @@ -456,8 +457,6 @@ class CompWindow : bool isMapped () const; bool isViewable () const; - bool isFocussable () const; - int windowClass (); unsigned int depth (); @@ -501,6 +500,7 @@ class CompWindow : CompRegion &); WRAPABLE_HND (13, WindowInterface, bool, alpha); + WRAPABLE_HND (14, WindowInterface, bool, isFocussable); friend class PrivateWindow; friend class CompScreen; |