eflxx/eflxx_examples/data/edjes/elementaryxx-test.edc

141 lines
3.3 KiB
Plaintext

collections {
group { name: "layout";
images {
image: "over.png" COMP;
image: "under.png" COMP;
image: "sky.jpg" LOSSY 80;
image: "clo.png" LOSSY 60;
}
parts {
part { name: "sky";
mouse_events: 0;
description { state: "default" 0.0;
aspect: 2.6225 2.6225;
aspect_preference: NONE;
image.normal: "sky.jpg";
}
description { state: "drift" 0.0;
inherit: "default" 0.0;
fill {
origin {
relative: 1.0 0.0;
offset: 0 0;
}
}
}
}
part { name: "under";
mouse_events: 0;
description { state: "default" 0.0;
align: 0.5 0.0;
aspect: 1.486068111 1.486068111;
aspect_preference: HORIZONTAL;
image.normal: "under.png";
}
}
part { name: "element1";
type: SWALLOW;
description { state: "default" 0.0;
rel1 {
relative: 0.2 0.2;
}
rel2 {
relative: 0.4 0.3;
}
}
}
part { name: "element2";
type: SWALLOW;
description { state: "default" 0.0;
rel1 {
relative: 0.6 0.3;
}
rel2 {
relative: 0.9 0.5;
}
}
}
part { name: "element3";
type: SWALLOW;
description { state: "default" 0.0;
rel1 {
relative: 0.1 0.7;
}
rel2 {
relative: 0.9 0.9;
}
}
}
part { name: "over";
mouse_events: 0;
description { state: "default" 0.0;
align: 0.0 1.0;
aspect: 2.238095238 2.238095238;
max: 329 147;
aspect_preference: HORIZONTAL;
image.normal: "over.png";
}
}
part { name: "clo";
mouse_events: 0;
description { state: "default" 0.0;
fill {
smooth: 0;
origin {
relative: 0.0 0.0;
offset: 0 0;
}
size {
relative: 1.84722 1.0;
offset: 0 0;
}
}
image.normal: "clo.png";
}
description { state: "drift" 0.0;
inherit: "default" 0.0;
fill {
origin {
relative: 1.84722 0.0;
offset: 0 0;
}
size {
relative: 1.84722 1.0;
offset: 0 0;
}
}
}
}
}
programs {
program { name: "anim1";
signal: "show";
source: "";
action: STATE_SET "drift" 0.0;
transition: LINEAR 10.0;
target: "clo";
after: "anim2";
}
program { name: "anim2";
action: STATE_SET "default" 0.0;
target: "clo";
after: "anim1";
}
program { name: "anim3";
signal: "show";
source: "";
action: STATE_SET "drift" 0.0;
transition: LINEAR 40.0;
target: "sky";
after: "anim4";
}
program { name: "anim4";
action: STATE_SET "default" 0.0;
target: "sky";
after: "anim3";
}
}
}
}