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/ClientPattern.hh | |
parent | 79cd21ce0fe56f4b38a96ecccc969f740b801cc8 (diff) | |
download | fluxbox-7e4f8a38531642cc9cb6cba31499d549f4c5f8a0.zip fluxbox-7e4f8a38531642cc9cb6cba31499d549f4c5f8a0.tar.bz2 |
add support for transient windows in client patterns, and merge a few more changes from pre-devel
Diffstat (limited to 'src/ClientPattern.hh')
-rw-r--r-- | src/ClientPattern.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientPattern.hh b/src/ClientPattern.hh index 4a3cd0b..e5f4944 100644 --- a/src/ClientPattern.hh +++ b/src/ClientPattern.hh | |||
@@ -46,7 +46,7 @@ public: | |||
46 | * apps file. the bool value returns the character at which | 46 | * apps file. the bool value returns the character at which |
47 | * there was a parse problem, or -1. | 47 | * there was a parse problem, or -1. |
48 | */ | 48 | */ |
49 | explicit ClientPattern(const char * str); | 49 | explicit ClientPattern(const char * str, bool default_no_transient = false); |
50 | 50 | ||
51 | ~ClientPattern(); | 51 | ~ClientPattern(); |
52 | 52 | ||
@@ -54,7 +54,7 @@ public: | |||
54 | std::string toString() const; | 54 | std::string toString() const; |
55 | 55 | ||
56 | enum WinProperty { | 56 | enum WinProperty { |
57 | TITLE, CLASS, NAME, ROLE, | 57 | TITLE, CLASS, NAME, ROLE, TRANSIENT, |
58 | MAXIMIZED, MINIMIZED, SHADED, STUCK, FOCUSHIDDEN, ICONHIDDEN, | 58 | MAXIMIZED, MINIMIZED, SHADED, STUCK, FOCUSHIDDEN, ICONHIDDEN, |
59 | WORKSPACE, HEAD, LAYER | 59 | WORKSPACE, HEAD, LAYER |
60 | }; | 60 | }; |