From: Mikael Magnusson Date: Wed, 17 Apr 2013 11:08:33 +0000 (+0200) Subject: Handle edges in window.c X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=525f424c9159f19dcb0e144336431cf03d1b6ebf;p=mikachu%2Fopenbox.git Handle edges in window.c --- diff --git a/openbox/window.c b/openbox/window.c index 51806f9c..3d231439 100644 --- a/openbox/window.c +++ b/openbox/window.c @@ -24,6 +24,7 @@ #include "frame.h" #include "openbox.h" #include "prompt.h" +#include "edges.h" #include "debug.h" #include "grab.h" #include "obt/prop.h" @@ -62,6 +63,8 @@ Window window_top(ObWindow *self) return WINDOW_AS_INTERNAL(self)->window; case OB_WINDOW_CLASS_PROMPT: return WINDOW_AS_PROMPT(self)->super.window; + case OB_WINDOW_CLASS_EDGE: + return WINDOW_AS_EDGE(self)->win; } g_assert_not_reached(); return None; @@ -74,6 +77,7 @@ ObStackingLayer window_layer(ObWindow *self) return config_dock_layer; case OB_WINDOW_CLASS_CLIENT: return ((ObClient*)self)->layer; + case OB_WINDOW_CLASS_EDGE: case OB_WINDOW_CLASS_MENUFRAME: case OB_WINDOW_CLASS_INTERNAL: return OB_STACKING_LAYER_INTERNAL;