diff options
author | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2013-01-23 11:15:16 +0000 |
---|---|---|
committer | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2013-01-23 11:15:16 +0000 |
commit | 3799094004cca72581cc665c7f3e7ebd41e71820 (patch) | |
tree | 47680a2017b44d106cadb530aa71677794abe282 | |
parent | 95b46518030dec734ba8b362483bdf032b0a31ec (diff) | |
download | enlightenment-3799094004cca72581cc665c7f3e7ebd41e71820.tar.gz enlightenment-3799094004cca72581cc665c7f3e7ebd41e71820.tar.xz enlightenment-3799094004cca72581cc665c7f3e7ebd41e71820.zip |
the madness continues: flip style for compositing
SVN revision: 83165
-rw-r--r-- | data/themes/edc/comp.edc | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/data/themes/edc/comp.edc b/data/themes/edc/comp.edc index 7adf1b280..52b5ef18c 100644 --- a/data/themes/edc/comp.edc +++ b/data/themes/edc/comp.edc @@ -464,6 +464,43 @@ group { name: "e/comp/rotate/fast"; } } +group { name: "e/comp/flip"; + inherit: "e/comp/rotate"; + parts { + part { name: "e.swallow.content"; + description { state: "default"; + map { + on: 1; + rotation { + z: 0; + y: 0; + } + backface_cull: 1; + } + } + description { state: "focus-out"; + inherit: "default"; + map.rotation { + z: 0; + y: 180; + } + } + } + } +} + +group { name: "e/comp/flip/fast"; + inherit: "e/comp/flip"; + programs { + program { name: "focus3"; + transition: LINEAR 0; + } + program { name: "focus_off3"; + transition: LINEAR 0; + } + } +} + group { name: "e/comp/popup"; inherit: "e/comp/default"; parts { |