summaryrefslogtreecommitdiff
path: root/openbox/window.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2008-01-11 15:28:26 -0500
committerDana Jansens <danakj@orodu.net>2008-01-11 15:28:26 -0500
commitabc67cbdc1c1e61e074f8f312eaecb357cd0aa5c (patch)
tree06d8ea7cbf87a219e3d9e6ef3359a0452f0ea702 /openbox/window.h
parent1789d4564514c4cefe3d2e9d2b7b65119784b53c (diff)
make it possible to temporarily raise a window to the top, and restore it. also fix the return val for window_layer.
Diffstat (limited to 'openbox/window.h')
-rw-r--r--openbox/window.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/openbox/window.h b/openbox/window.h
index ef29edd7..aaf83995 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>
@@ -74,6 +76,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