diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2010-09-11 15:09:07 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2010-09-11 15:09:07 (GMT) |
commit | faa4c978885ceacfb75b0088e8c5a362a41794f6 (patch) | |
tree | 600e09fafca10e702150abac9e852f8aa6ef38c3 /src/Window.hh | |
parent | 4e2c7e2167a0e0efbfc73c1b226eaafa808736ee (diff) | |
download | fluxbox_pavel-faa4c978885ceacfb75b0088e8c5a362a41794f6.zip fluxbox_pavel-faa4c978885ceacfb75b0088e8c5a362a41794f6.tar.bz2 |
added 'SetXProp' action and (@PROP=foo) clientpattern
these two allow 'tagging' of arbitrary windows with 'tags' (or 'labels'). such 'tagged' windows can then be used in ':NextWindow (@PROP=foo)' commands to quickly cycle through a subset of available windows.
since the 'tags' are applied as real xproperties to a window they survive a restart of fluxbox or even another windowmanager. the user can also set the tags by using xprop(1).
the next step regarding the UI should be to visualize the tags of a window.
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Window.hh b/src/Window.hh index 080ceac..7f8133e 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -422,6 +422,7 @@ public: | |||
422 | const FbTk::FbString &getWMClassName() const; | 422 | const FbTk::FbString &getWMClassName() const; |
423 | const FbTk::FbString &getWMClassClass() const; | 423 | const FbTk::FbString &getWMClassClass() const; |
424 | std::string getWMRole() const; | 424 | std::string getWMRole() const; |
425 | FbTk::FbString getTextProperty(Atom prop) const; | ||
425 | void setWindowType(WindowState::WindowType type); | 426 | void setWindowType(WindowState::WindowType type); |
426 | bool isTransient() const; | 427 | bool isTransient() const; |
427 | 428 | ||