diff options
author | markt <markt> | 2007-10-14 18:05:31 (GMT) |
---|---|---|
committer | markt <markt> | 2007-10-14 18:05:31 (GMT) |
commit | 7e4f8a38531642cc9cb6cba31499d549f4c5f8a0 (patch) | |
tree | cd06e7c0330aff145744a8284bf5ff8ad4f0bbe1 /src/Focusable.hh | |
parent | 79cd21ce0fe56f4b38a96ecccc969f740b801cc8 (diff) | |
download | fluxbox_pavel-7e4f8a38531642cc9cb6cba31499d549f4c5f8a0.zip fluxbox_pavel-7e4f8a38531642cc9cb6cba31499d549f4c5f8a0.tar.bz2 |
add support for transient windows in client patterns, and merge a few more changes from pre-devel
Diffstat (limited to 'src/Focusable.hh')
-rw-r--r-- | src/Focusable.hh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Focusable.hh b/src/Focusable.hh index e02e0d7..cd2ad49 100644 --- a/src/Focusable.hh +++ b/src/Focusable.hh | |||
@@ -84,9 +84,12 @@ public: | |||
84 | virtual const std::string &getWMClassClass() const { return m_class_name; } | 84 | virtual const std::string &getWMClassClass() const { return m_class_name; } |
85 | /// @return WM_CLASS name string (for pattern matching) | 85 | /// @return WM_CLASS name string (for pattern matching) |
86 | virtual const std::string &getWMClassName() const { return m_instance_name; } | 86 | virtual const std::string &getWMClassName() const { return m_instance_name; } |
87 | /// @return wm role string ( for pattern matching) | 87 | /// @return wm role string (for pattern matching) |
88 | virtual std::string getWMRole() const { return "Focusable"; } | 88 | virtual std::string getWMRole() const { return "Focusable"; } |
89 | 89 | ||
90 | /// @return whether this window is a transient (for pattern matching) | ||
91 | virtual bool isTransient() const { return false; } | ||
92 | |||
90 | // so we can make nice buttons, menu entries, etc. | 93 | // so we can make nice buttons, menu entries, etc. |
91 | /// @return icon pixmap of the focusable | 94 | /// @return icon pixmap of the focusable |
92 | virtual const FbTk::PixmapWithMask &icon() const { return m_icon; } | 95 | virtual const FbTk::PixmapWithMask &icon() const { return m_icon; } |