summaryrefslogtreecommitdiff
path: root/openbox/dispatch.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-24 04:56:46 +0000
committerDana Jansens <danakj@orodu.net>2003-03-24 04:56:46 +0000
commit3b14b587ef8131cbeb2afb2c11240f50c5f5d02b (patch)
treebed07031f472f31f7e962ec34f5f3aee30c2035d /openbox/dispatch.h
parentd82048b4e515303673edf853cc64dd585f0b310a (diff)
more focus improvements. everything seems to work!
Diffstat (limited to 'openbox/dispatch.h')
-rw-r--r--openbox/dispatch.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/openbox/dispatch.h b/openbox/dispatch.h
index 31116c5c..412e135e 100644
--- a/openbox/dispatch.h
+++ b/openbox/dispatch.h
@@ -18,9 +18,11 @@ typedef enum {
Event_X_Bell = 1 << 7, /* an XKB bell event */
Event_Client_New = 1 << 8, /* new window, before mapping */
- Event_Client_Mapped = 1 << 9, /* new window, after mapping */
+ Event_Client_Mapped = 1 << 9, /* new window, after mapping
+ or uniconified */
Event_Client_Destroy = 1 << 10, /* unmanaged */
- Event_Client_Unmapped = 1 << 11, /* unmanaged, after unmapping */
+ Event_Client_Unmapped = 1 << 11, /* unmanaged, after unmapping
+ or iconified */
Event_Client_Focus = 1 << 12, /* focused */
Event_Client_Unfocus = 1 << 13, /* unfocused */
Event_Client_Urgent = 1 << 14, /* entered/left urgent state */