From bfdfa13306d8160ece7886067707e2c161fe09e0 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 11 Jan 2013 13:06:49 +0000 Subject: [PATCH] fast fullscreen comp group SVN revision: 82634 --- data/themes/edc/comp.edc | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/data/themes/edc/comp.edc b/data/themes/edc/comp.edc index e7ba3745b..d682bef81 100644 --- a/data/themes/edc/comp.edc +++ b/data/themes/edc/comp.edc @@ -667,6 +667,7 @@ group { name: "e/comp/fullscreen"; target: "shadow"; } program { + name: "visible_on"; signal: "e,state,visible,on"; source: "e"; action: STATE_SET "visible" 0.0; transition: DECELERATE 0.25; @@ -674,6 +675,7 @@ group { name: "e/comp/fullscreen"; target: "scr_shade"; } program { + name: "visible_on2"; signal: "e,state,visible,on"; source: "e"; action: STATE_SET "visible1" 0.0; transition: DECELERATE 0.05; @@ -696,6 +698,7 @@ group { name: "e/comp/fullscreen"; action: SIGNAL_EMIT "e,action,show,done" "e"; } program { + name: "visible_off"; signal: "e,state,visible,off"; source: "e"; action: STATE_SET "default" 0.0; transition: DECELERATE 0.25; @@ -703,6 +706,7 @@ group { name: "e/comp/fullscreen"; target: "scr_shade"; } program { + name: "visible_off2"; signal: "e,state,visible,off"; source: "e"; action: STATE_SET "visible1" 0.0; transition: DECELERATE 0.2; @@ -726,3 +730,32 @@ group { name: "e/comp/fullscreen"; } } } + +group { name: "e/comp/fullscreen/fast"; + inherit: "e/comp/fullscreen"; + programs { + program { + name: "visible_on"; + transition: DECELERATE 0; + } + program { + name: "visible_on2"; + transition: DECELERATE 0; + } + program { name: "show2"; + transition: DECELERATE 0; + } + program { + name: "visible_off"; + transition: DECELERATE 0; + } + program { + name: "visible_off2"; + transition: DECELERATE 0; + } + program { name: "hide2"; + action: STATE_SET "default" 0.0; + transition: DECELERATE 0; + } + } +}