|
|
|
@ -405,7 +405,7 @@ collections { |
|
|
|
|
} |
|
|
|
|
group { name: "ephoto,slideshow,base"; |
|
|
|
|
data { |
|
|
|
|
item: transitions "fade black_fade horizontal vertical square"; |
|
|
|
|
item: transitions "fade black_fade square"; |
|
|
|
|
} |
|
|
|
|
parts { |
|
|
|
|
rect { "background"; |
|
|
|
@ -422,6 +422,10 @@ collections { |
|
|
|
|
rel2.to: "background"; |
|
|
|
|
color: 255 255 255 255; |
|
|
|
|
} |
|
|
|
|
description { state: "fade" 0.0; |
|
|
|
|
inherit: "default" 0.0; |
|
|
|
|
color: 255 255 255 0; |
|
|
|
|
} |
|
|
|
|
description { state: "black_fade_init" 0.0; |
|
|
|
|
inherit: "default" 0.0; |
|
|
|
|
color: 255 255 255 255; |
|
|
|
@ -430,6 +434,10 @@ collections { |
|
|
|
|
inherit: "default" 0.0; |
|
|
|
|
color: 0 0 0 255; |
|
|
|
|
} |
|
|
|
|
description { state: "square" 0.0; |
|
|
|
|
inherit: "default" 0.0; |
|
|
|
|
color: 255 255 255 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
rect { "slide_clip2"; |
|
|
|
|
scale: 1; |
|
|
|
@ -438,6 +446,10 @@ collections { |
|
|
|
|
rel2.to: "background"; |
|
|
|
|
color: 255 255 255 0; |
|
|
|
|
} |
|
|
|
|
description { state: "fade" 0.0; |
|
|
|
|
inherit: "default" 0.0; |
|
|
|
|
color: 255 255 255 255; |
|
|
|
|
} |
|
|
|
|
description { state: "black_fade_init" 0.0; |
|
|
|
|
inherit: "default" 0.0; |
|
|
|
|
color: 0 0 0 255; |
|
|
|
@ -446,29 +458,56 @@ collections { |
|
|
|
|
inherit: "default" 0.0; |
|
|
|
|
color: 255 255 255 255; |
|
|
|
|
} |
|
|
|
|
description { state: "square_init" 0.0; |
|
|
|
|
inherit: "default" 0.0; |
|
|
|
|
rel1.relative: 0.5 0.5; |
|
|
|
|
rel2.relative: 0.5 0.5; |
|
|
|
|
color: 255 255 255 255; |
|
|
|
|
} |
|
|
|
|
description { state: "square" 0.0; |
|
|
|
|
inherit: "default" 0.0; |
|
|
|
|
rel1.relative: 0.0 0.0; |
|
|
|
|
rel2.relative: 1.0 1.0; |
|
|
|
|
color: 255 255 255 255; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
swallow { "ephoto.swallow.slideshow.item2"; |
|
|
|
|
swallow { "ephoto.swallow.slideshow.item"; |
|
|
|
|
scale: 1; |
|
|
|
|
mouse_events: 1; |
|
|
|
|
clip_to: "slide_clip2"; |
|
|
|
|
clip_to: "slide_clip"; |
|
|
|
|
description { |
|
|
|
|
state: "default" 0.0; |
|
|
|
|
rel1.to: "slide_clip2"; |
|
|
|
|
rel2.to: "slide_clip2"; |
|
|
|
|
rel1.to: "slide_clip"; |
|
|
|
|
rel2.to: "slide_clip"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
swallow { "ephoto.swallow.slideshow.item"; |
|
|
|
|
swallow { "ephoto.swallow.slideshow.item2"; |
|
|
|
|
scale: 1; |
|
|
|
|
mouse_events: 1; |
|
|
|
|
clip_to: "slide_clip"; |
|
|
|
|
clip_to: "slide_clip2"; |
|
|
|
|
description { |
|
|
|
|
state: "default" 0.0; |
|
|
|
|
rel1.to: "slide_clip"; |
|
|
|
|
rel2.to: "slide_clip"; |
|
|
|
|
rel1.to: "slide_clip2"; |
|
|
|
|
rel2.to: "slide_clip2"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
programs { |
|
|
|
|
program { |
|
|
|
|
signal: "ephoto,fade"; |
|
|
|
|
source: "ephoto"; |
|
|
|
|
action: STATE_SET "default" 0.0; |
|
|
|
|
target: "slide_clip"; |
|
|
|
|
target: "slide_clip2"; |
|
|
|
|
after: "fade_2"; |
|
|
|
|
} |
|
|
|
|
program { name: "fade_2"; |
|
|
|
|
action: STATE_SET "fade" 0.0; |
|
|
|
|
target: "slide_clip"; |
|
|
|
|
target: "slide_clip2"; |
|
|
|
|
transition: SINUSOIDAL 1.5; |
|
|
|
|
after: "end"; |
|
|
|
|
} |
|
|
|
|
program { |
|
|
|
|
signal: "ephoto,black_fade"; |
|
|
|
|
source: "ephoto"; |
|
|
|
@ -493,6 +532,28 @@ collections { |
|
|
|
|
transition: SINUSOIDAL 0.75; |
|
|
|
|
after: "end"; |
|
|
|
|
} |
|
|
|
|
program { |
|
|
|
|
signal: "ephoto,square"; |
|
|
|
|
source: "ephoto"; |
|
|
|
|
action: STATE_SET "square_init" 0.0; |
|
|
|
|
target: "slide_clip2"; |
|
|
|
|
after: "square_next_2"; |
|
|
|
|
} |
|
|
|
|
program { name: "square_next_2"; |
|
|
|
|
action: STATE_SET "square" 0.0; |
|
|
|
|
target: "slide_clip"; |
|
|
|
|
target: "slide_clip2"; |
|
|
|
|
transition: SINUSOIDAL 1.5; |
|
|
|
|
after: "end"; |
|
|
|
|
} |
|
|
|
|
program { |
|
|
|
|
signal: "ephoto,none"; |
|
|
|
|
source: "ephoto"; |
|
|
|
|
action: STATE_SET "fade" 0.0; |
|
|
|
|
target: "slide_clip"; |
|
|
|
|
target: "slide_clip2"; |
|
|
|
|
after: "end"; |
|
|
|
|
} |
|
|
|
|
program { name: "end"; |
|
|
|
|
action: SIGNAL_EMIT "ephoto,transition,end" "ephoto"; |
|
|
|
|
} |
|
|
|
|