From 20b9cba90a6b3152f66f383f696aaa3c09b54fe3 Mon Sep 17 00:00:00 2001 From: Tom Beckmann Date: Sat, 9 Jun 2012 03:07:28 +0200 Subject: [PATCH] Added black border between workspaces --- src/Main.vala | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/Main.vala b/src/Main.vala index a95f2556..736c536f 100644 --- a/src/Main.vala +++ b/src/Main.vala @@ -427,6 +427,7 @@ namespace Gala GLib.List? par; //class space for kill func Clutter.Actor in_group; Clutter.Actor out_group; + Clutter.Rectangle black; //black border between workspaces public override void switch_workspace (int from, int to, MotionDirection direction) { @@ -482,8 +483,17 @@ namespace Gala in_group.set_position (-x2, -y2); group.set_child_above_sibling (in_group, null); + black = new Clutter.Rectangle.with_color ({0, 0, 0, 255}); + black.width = 120; + black.height = h; + + Compositor.get_overlay_group_for_screen (get_screen ()).add_child (black); + black.x = (x2<0)?w-black.width:-black.width; + black.y = 0.0f; + + black.animate (Clutter.AnimationMode.EASE_IN_OUT_SINE, 400, x:(x2<0)?-black.width:w+black.width); out_group.animate (Clutter.AnimationMode.EASE_IN_OUT_SINE, 400, - x:x2, y:y2); + x:x2-black.width, y:y2); in_group.animate (Clutter.AnimationMode.EASE_IN_OUT_SINE, 400, x:0.0f, y:0.0f).completed.connect ( () => { end_switch_workspace (); @@ -520,6 +530,9 @@ namespace Gala clutter_actor_reparent (window, par.nth_data (i)); } + black.destroy (); + black = null; + win = null; par = null;