summaryrefslogtreecommitdiff
path: root/openbox/window.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2008-01-19 23:59:40 -0500
committerDana Jansens <danakj@orodu.net>2008-01-19 23:59:40 -0500
commit3ae58f457bcdfa90b26dad4c9d192f045874ddae (patch)
tree23d603a47cfedc8e51cf36bf3480f83118b94710 /openbox/window.h
parent2b8b5da04b14af1639143cc332874c7e1a03a8bb (diff)
parent4b41ac8343efa21a959d81a4db8aea32e5960f10 (diff)
Merge branch 'backport'
Diffstat (limited to 'openbox/window.h')
-rw-r--r--openbox/window.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/openbox/window.h b/openbox/window.h
index ef29edd7..a172cfce 100644
--- a/openbox/window.h
+++ b/openbox/window.h
@@ -19,6 +19,8 @@
#ifndef __window_h
#define __window_h
+#include "stacking.h"
+
#include <X11/Xlib.h>
#include <glib.h>
@@ -30,7 +32,8 @@ typedef enum {
Window_Dock,
Window_DockApp, /* used for events but not stacking */
Window_Client,
- Window_Internal /* used for stacking but not events */
+ Window_Internal /* used for stacking but not events (except to filter
+ events on the root window) */
} Window_InternalType;
struct _ObWindow
@@ -74,6 +77,6 @@ void window_startup(gboolean reconfig);
void window_shutdown(gboolean reconfig);
Window window_top(ObWindow *self);
-Window window_layer(ObWindow *self);
+ObStackingLayer window_layer(ObWindow *self);
#endif