diff options
author | fluxgen <fluxgen> | 2004-01-18 19:14:08 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2004-01-18 19:14:08 (GMT) |
commit | eb078ab8cf97634bff08979c43d9a238fca2b501 (patch) | |
tree | 192481847e4f3ebc0ab803bfc4522636e0122227 /src/Window.hh | |
parent | dba6249a1c66a8ef78266d9bbbf83c5ae8048813 (diff) | |
download | fluxbox-eb078ab8cf97634bff08979c43d9a238fca2b501.zip fluxbox-eb078ab8cf97634bff08979c43d9a238fca2b501.tar.bz2 |
support for _NET_WM_STATE_HIDDEN and _NET_WM_STATE_SKIP_TASKBAR
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Window.hh b/src/Window.hh index d61703a..71c0b71 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.hh,v 1.105 2003/12/30 20:56:40 fluxgen Exp $ | 25 | // $Id: Window.hh,v 1.106 2004/01/18 19:14:08 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef WINDOW_HH | 27 | #ifndef WINDOW_HH |
28 | #define WINDOW_HH | 28 | #define WINDOW_HH |
@@ -100,7 +100,8 @@ public: | |||
100 | ATTRIB_OMNIPRESENT = 0x08, | 100 | ATTRIB_OMNIPRESENT = 0x08, |
101 | ATTRIB_WORKSPACE = 0x10, | 101 | ATTRIB_WORKSPACE = 0x10, |
102 | ATTRIB_STACK = 0x20, | 102 | ATTRIB_STACK = 0x20, |
103 | ATTRIB_DECORATION = 0x40 | 103 | ATTRIB_DECORATION = 0x40, |
104 | ATTRIB_HIDDEN = 0x80, | ||
104 | }; | 105 | }; |
105 | 106 | ||
106 | /** | 107 | /** |
@@ -206,7 +207,7 @@ public: | |||
206 | void raiseLayer(); | 207 | void raiseLayer(); |
207 | void lowerLayer(); | 208 | void lowerLayer(); |
208 | void moveToLayer(int layernum); | 209 | void moveToLayer(int layernum); |
209 | 210 | void setHidden(bool value); | |
210 | void reconfigure(); | 211 | void reconfigure(); |
211 | 212 | ||
212 | 213 | ||
@@ -261,6 +262,7 @@ public: | |||
261 | @name accessors | 262 | @name accessors |
262 | */ | 263 | */ |
263 | //@{ | 264 | //@{ |
265 | inline bool isHidden() const { return (m_blackbox_attrib.flags & ATTRIB_HIDDEN); } | ||
264 | inline bool isManaged() const { return m_managed; } | 266 | inline bool isManaged() const { return m_managed; } |
265 | inline bool isFocused() const { return focused; } | 267 | inline bool isFocused() const { return focused; } |
266 | bool isVisible() const; | 268 | bool isVisible() const; |