|
|
|
#define FIXED_SIZE(_W, _H) \
|
|
|
|
min: _W _H; max: _W _H;
|
|
|
|
|
|
|
|
collections {
|
|
|
|
images {
|
|
|
|
image: "images/shadow_circle_horiz.png" COMP;
|
|
|
|
image: "images/shadow_circle_vert.png" COMP;
|
|
|
|
image: "images/tile.png" COMP;
|
|
|
|
image: "images/shadow.png" COMP;
|
|
|
|
image: "images/sel_border.png" COMP;
|
|
|
|
image: "images/sel_corner1.png" COMP;
|
|
|
|
image: "images/sel_corner3.png" COMP;
|
|
|
|
image: "images/sel_corner5.png" COMP;
|
|
|
|
image: "images/sel_corner7.png" COMP;
|
|
|
|
}
|
|
|
|
group { name: "ephoto,main,layout";
|
|
|
|
script {
|
|
|
|
public offseth = 0;
|
|
|
|
public offsetv = 0;
|
|
|
|
public custom = 0 ;
|
|
|
|
public custom_folders = 0;
|
|
|
|
public folders_visible = 1;
|
|
|
|
public controls_visible = 1;
|
|
|
|
public message(Msg_Type:type, id, ...) {
|
|
|
|
if ((type == MSG_INT_SET) && (id == 1)) {
|
|
|
|
new hoffset = getarg(2);
|
|
|
|
new voffset = getarg(3);
|
|
|
|
new hoff, voff, roneoff;
|
|
|
|
|
|
|
|
set_int(custom, 1);
|
|
|
|
hoffset *= -1;
|
|
|
|
voffset *= -1;
|
|
|
|
|
|
|
|
get_state_val(PART:"ephoto.swallow.controls", STATE_REL1_OFFSET,
|
|
|
|
0, roneoff);
|
|
|
|
get_state_val(PART:"ephoto.swallow.controls", STATE_REL2_OFFSET,
|
|
|
|
hoff, voff);
|
|
|
|
|
|
|
|
roneoff -= get_int(offsetv);
|
|
|
|
roneoff += voffset;
|
|
|
|
hoff -= get_int(offseth);
|
|
|
|
voff -= get_int(offsetv);
|
|
|
|
hoff += hoffset;
|
|
|
|
voff += voffset;
|
|
|
|
set_int(offseth, hoffset);
|
|
|
|
set_int(offsetv, voffset);
|
|
|
|
|
|
|
|
custom_state(PART:"ephoto.swallow.controls", "default", 0.0);
|
|
|
|
set_state_val(PART:"ephoto.swallow.controls", STATE_REL1_OFFSET,
|
|
|
|
0, roneoff);
|
|
|
|
set_state_val(PART:"ephoto.swallow.controls", STATE_REL2_OFFSET,
|
|
|
|
hoff, voff);
|
|
|
|
set_state(PART:"ephoto.swallow.controls", "custom", 0.0);
|
|
|
|
}
|
|
|
|
if ((type == MSG_INT_SET) && (id == 2)) {
|
|
|
|
new minw = getarg(2);
|
|
|
|
set_int(custom_folders, 1);
|
|
|
|
custom_state(PART:"ephoto.swallow.folders", "visible", 0.0);
|
|
|
|
set_state_val(PART:"ephoto.swallow.folders",
|
|
|
|
STATE_MIN, minw, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public hide_folders(val, Float:pos) {
|
|
|
|
set_int(folders_visible, 0);
|
|
|
|
set_state_anim(PART:"ephoto.swallow.folders",
|
|
|
|
"hidden", 0.0, DECELERATE, pos);
|
|
|
|
set_state_anim(PART:"folders_shadow",
|
|
|
|
"hidden", 0.0, DECELERATE, pos);
|
|
|
|
set_state_anim(PART:"ephoto,folders",
|
|
|
|
"hidden", 0.0, DECELERATE, pos);
|
|
|
|
}
|
|
|
|
public show_folders(val, Float:pos) {
|
|
|
|
set_int(folders_visible, 1);
|
|
|
|
if (get_int(custom_folders)) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.folders",
|
|
|
|
"custom", 0.0, ACCELERATE, pos);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.folders",
|
|
|
|
"default", 0.0, ACCELERATE, pos);
|
|
|
|
}
|
|
|
|
set_state_anim(PART:"folders_shadow",
|
|
|
|
"default", 0.0, ACCELERATE, pos);
|
|
|
|
set_state_anim(PART:"ephoto,folders",
|
|
|
|
"default", 0.0, ACCELERATE, pos);
|
|
|
|
}
|
|
|
|
public hide_controls(val, Float:pos) {
|
|
|
|
set_int(controls_visible, 0);
|
|
|
|
set_state_anim(PART:"ephoto.swallow.controls",
|
|
|
|
"hidden", 0.0, DECELERATE, pos);
|
|
|
|
set_state_anim(PART:"controls_shadow",
|
|
|
|
"hidden", 0.0, DECELERATE, pos);
|
|
|
|
set_state_anim(PART:"ephoto,controls",
|
|
|
|
"hidden", 0.0, DECELERATE, pos);
|
|
|
|
}
|
|
|
|
public show_controls(val, Float:pos) {
|
|
|
|
set_int(controls_visible, 1);
|
|
|
|
if (get_int(custom)) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.controls",
|
|
|
|
"custom", 0.0, ACCELERATE, pos);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.controls",
|
|
|
|
"default", 0.0, ACCELERATE, pos);
|
|
|
|
}
|
|
|
|
set_state_anim(PART:"controls_shadow",
|
|
|
|
"default", 0.0, ACCELERATE, pos);
|
|
|
|
set_state_anim(PART:"ephoto,controls",
|
|
|
|
"default", 0.0, ACCELERATE, pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parts {
|
|
|
|
rect { name: "ephoto,main,clip";
|
|
|
|
scale: 1;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
image { name: "background_tile";
|
|
|
|
scale: 1;
|
|
|
|
clip_to: "ephoto,main,clip";
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
fixed: 1 1;
|
|
|
|
image.normal: "images/tile.png";
|
|
|
|
color: 210 210 210 255;
|
|
|
|
fill {
|
|
|
|
size.relative: 0.0 0.0;
|
|
|
|
size.offset: 32 32;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
swallow { name: "ephoto.swallow.main";
|
|
|
|
scale: 1;
|
|
|
|
mouse_events: 1;
|
|
|
|
clip_to: "ephoto,main,clip";
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
rel2.to: "ephoto,editor";
|
|
|
|
rel2.relative: 0.0 1.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rect { name: "ephoto,editor";
|
|
|
|
scale: 1;
|
|
|
|
clip_to: "ephoto,main,clip";
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
fixed: 1 1;
|
|
|
|
rel1.to: "ephoto.swallow.editor";
|
|
|
|
rel2.to: "ephoto.swallow.editor";
|
|
|
|
visible: 0;
|
|
|
|
}
|
|
|
|
description { state: "visible" 0.0;
|
|
|
|
inherit: default 0.0;
|
|
|
|
visible: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
image { name: "editor_shadow";
|
|
|
|
mouse_events: 0;
|
|
|
|
scale: 1;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
fixed: 1 1;
|
|
|
|
image.normal: "images/shadow_circle_vert.png";
|
|
|
|
min: 32 0;
|
|
|
|
color: 255 255 255 0;
|
|
|
|
visible: 0;
|
|
|
|
}
|
|
|
|
description { state: "visible" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
fixed: 1 1;
|
|
|
|
rel1.to: "ephoto,editor";
|
|
|
|
rel1.relative: 1.0 0.0;
|
|
|
|
rel2.to: "ephoto,editor";
|
|
|
|
color: 255 255 255 128;
|
|
|
|
visible: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rect { name: "editor_base";
|
|
|
|
clip_to: "ephoto,editor";
|
|
|
|
scale: 1;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
color: 15 15 15 150;
|
|
|
|
rel1.to: "ephoto,editor";
|
|
|
|
rel2.to: "ephoto,editor";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
swallow { name: "ephoto.swallow.editor";
|
|
|
|
scale: 1;
|
|
|
|
mouse_events: 1;
|
|
|
|
clip_to: "ephoto,editor";
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
fixed: 1 1;
|
|
|
|
rel1.to: "ephoto,main,clip";
|
|
|
|
rel1.relative: 1.0 0.0;
|
|
|
|
rel2.to: "ephoto,main,clip";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
visible: 0;
|
|
|
|
}
|
|
|
|
description { state: "visible" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.to: "ephoto,main,clip";
|
|
|
|
rel1.relative: 1.0 0.0;
|
|
|
|
rel2.to: "ephoto,main,clip";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
align: 1.0 0.0;
|
|
|
|
visible: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rect { name: "ephoto,folders";
|
|
|
|
clip_to: "ephoto,main,clip";
|
|
|
|
scale: 1;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
fixed: 1 1;
|
|
|
|
min: 220 0;
|
|
|
|
rel1.to: "ephoto.swallow.folders";
|
|
|
|
rel2.to: "ephoto.swallow.folders";
|
|
|
|
color: 255 255 255 255;
|
|
|
|
visible: 1;
|
|
|
|
}
|
|
|
|
description { state: "hidden" 0.0;
|
|
|
|
inherit: default 0.0;
|
|
|
|
color: 255 255 255 0;
|
|
|
|
visible: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
image { name: "folders_shadow";
|
|
|
|
mouse_events: 0;
|
|
|
|
scale: 1;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
fixed: 1 1;
|
|
|
|
image.normal: "images/shadow_circle_vert.png";
|
|
|
|
min: 32 0;
|
|
|
|
rel1.to: "ephoto,folders";
|
|
|
|
rel1.relative: 1.0 0.0;
|
|
|
|
rel2.to: "ephoto,folders";
|
|
|
|
color: 255 255 255 128;
|
|
|
|
visible: 1;
|
|
|
|
}
|
|
|
|
description { state: "hidden" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
color: 255 255 255 0;
|
|
|
|
visible: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rect { name: "folders_base";
|
|
|
|
clip_to: "ephoto,folders";
|
|
|
|
scale: 1;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
color: 15 15 15 150;
|
|
|
|
rel1.to: "ephoto,folders";
|
|
|
|
rel2.to: "ephoto,folders";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
swallow { name: "ephoto.swallow.folders";
|
|
|
|
scale: 1;
|
|
|
|
mouse_events: 1;
|
|
|
|
clip_to: "ephoto,folders";
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
fixed: 1 1;
|
|
|
|
min: 220 0;
|
|
|
|
rel1.to: "ephoto.swallow.main";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "ephoto,controls";
|
|
|
|
rel2.relative: 0.0 0.0;
|
|
|
|
align: 0.0 0.0;
|
|
|
|
color: 255 255 255 255;
|
|
|
|
visible: 1;
|
|
|
|
}
|
|
|
|
description { state: "hidden" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
color: 255 255 255 0;
|
|
|
|
visible: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rect { name: "ephoto,controls";
|
|
|
|
scale: 1;
|
|
|
|
clip_to: "ephoto,main,clip";
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
fixed: 0 1;
|
|
|
|
rel1.to: "ephoto.swallow.controls";
|
|
|
|
rel2.to: "ephoto.swallow.controls";
|
|
|
|
color: 255 255 255 255;
|
|
|
|
visible: 1;
|
|
|
|
}
|
|
|
|
description { state: "hidden" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
color: 255 255 255 0;
|
|
|
|
visible: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rect { name: "controls_base";
|
|
|
|
clip_to: "ephoto,controls";
|
|
|
|
scale: 1;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
color: 15 15 15 150;
|
|
|
|
rel1.to: "ephoto,controls";
|
|
|
|
rel2.to: "ephoto,controls";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
image { name: "controls_shadow";
|
|
|
|
mouse_events: 0;
|
|
|
|
scale: 1;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
fixed: 1 1;
|
|
|
|
rel1.to: "controls_base";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "controls_base";
|
|
|
|
rel2.relative: 1.0 0.0;
|
|
|
|
image.normal: "images/shadow_circle_horiz.png";
|
|
|
|
min: 0 32;
|
|
|
|
color: 255 255 255 128;
|
|
|
|
}
|
|
|
|
description { state: "hidden" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
color: 255 255 255 0;
|
|
|
|
visible: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
swallow { name: "ephoto.swallow.controls";
|
|
|
|
scale: 1;
|
|
|
|
mouse_events: 1;
|
|
|
|
clip_to: "ephoto,controls";
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
fixed: 1 1;
|
|
|
|
rel1.to: "ephoto.swallow.main";
|
|
|
|
rel2.to: "ephoto.swallow.main";
|
|
|
|
rel1.relative: 0.0 1.0;
|
|
|
|
rel1.offset: 0 -1;
|
|
|
|
rel2.offset: 0 -1;
|
|
|
|
align: 0.5 1.0;
|
|
|
|
color: 255 255 255 255;
|
|
|
|
visible: 1;
|
|
|
|
}
|
|
|
|
description { state: "hidden" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
color: 255 255 255 0;
|
|
|
|
visible: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
programs {
|
|
|
|
program { signal: "ephoto,editor,hide";
|
|
|
|
source: "ephoto";
|
|
|
|
action: STATE_SET "default" 0.0;
|
|
|
|
target: "ephoto.swallow.editor";
|
|
|
|
target: "editor_shadow";
|
|
|
|
target: "ephoto,editor";
|
|
|
|
}
|
|
|
|
program { signal: "ephoto,editor,show";
|
|
|
|
source: "ephoto";
|
|
|
|
action: STATE_SET "visible" 0.0;
|
|
|
|
target: "ephoto.swallow.editor";
|
|
|
|
target: "editor_shadow";
|
|
|
|
target: "ephoto,editor";
|
|
|
|
}
|
|
|
|
program { signal: "mouse,in";
|
|
|
|
source: "ephoto.swallow.controls";
|
|
|
|
action: SIGNAL_EMIT "ephoto,block" "ephoto";
|
|
|
|
}
|
|
|
|
program { signal: "mouse,out";
|
|
|
|
source: "ephoto.swallow.controls";
|
|
|
|
action: SIGNAL_EMIT "ephoto,unblock" "ephoto";
|
|
|
|
}
|
|
|
|
program { signal: "mouse,in";
|
|
|
|
source: "ephoto.swallow.folders";
|
|
|
|
action: SIGNAL_EMIT "ephoto,block" "ephoto";
|
|
|
|
}
|
|
|
|
program { signal: "mouse,out";
|
|
|
|
source: "ephoto.swallow.folders";
|
|
|
|
action: SIGNAL_EMIT "ephoto,unblock" "ephoto";
|
|
|
|
}
|
|
|
|
program { signal: "ephoto,folders,hide";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
if (get_int(folders_visible)) {
|
|
|
|
anim(1.0, "hide_folders", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program { signal: "ephoto,folders,show";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
if (!get_int(folders_visible)) {
|
|
|
|
anim(0.5, "show_folders", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program { signal: "ephoto,controls,hide";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
if (get_int(controls_visible)) {
|
|
|
|
anim(1.0, "hide_controls", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program { signal: "ephoto,controls,show";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
if (!get_int(controls_visible)) {
|
|
|
|
anim(0.5, "show_controls", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
group { "elm/label/base/info";
|
|
|
|
mouse_events: 0;
|
|
|
|
styles {
|
|
|
|
style { name: "info_style";
|
|
|
|
base: "font=Sans font_size=10 align=center valign=0.5 color=#ffffff style=glow glow_color=#151515 glow_color2=#000000 wrap=mixed text_class=info color_class=text";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parts {
|
|
|
|
textblock { "elm.text";
|
|
|
|
scale: 1;
|
|
|
|
desc {
|
|
|
|
text {
|
|
|
|
style: "info_style";
|
|
|
|
min: 1 1;
|
|
|
|
ellipsis: -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
group { name: "ephoto,slideshow,base";
|
|
|
|
data {
|
|
|
|
item: transitions "fade black_fade square";
|
|
|
|
}
|
|
|
|
parts {
|
|
|
|
rect { "background";
|
|
|
|
scale: 1;
|
|
|
|
description {
|
|
|
|
state: "default" 0.0;
|
|
|
|
color: 0 0 0 255;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rect { "slide_clip";
|
|
|
|
scale: 1;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
description { state: "black_fade" 0.0;
|
|
|
|
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;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
description { state: "black_fade" 0.0;
|
|
|
|
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.item";
|
|
|
|
scale: 1;
|
|
|
|
mouse_events: 1;
|
|
|
|
clip_to: "slide_clip";
|
|
|
|
description {
|
|
|
|
state: "default" 0.0;
|
|
|
|
rel1.to: "slide_clip";
|
|
|
|
rel2.to: "slide_clip";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
swallow { "ephoto.swallow.slideshow.item2";
|
|
|
|
scale: 1;
|
|
|
|
mouse_events: 1;
|
|
|
|
clip_to: "slide_clip2";
|
|
|
|
description {
|
|
|
|
state: "default" 0.0;
|
|
|
|
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";
|
|
|
|
action: STATE_SET "black_fade_init" 0.0;
|
|
|
|
target: "slide_clip";
|
|
|
|
target: "slide_clip2";
|
|
|
|
after: "black_fade_2";
|
|
|
|
}
|
|
|
|
program { name: "black_fade_2";
|
|
|
|
action: STATE_SET "black_fade" 0.0;
|
|
|
|
target: "slide_clip";
|
|
|
|
transition: SINUSOIDAL 0.75;
|
|
|
|
after: "black_fade_3";
|
|
|
|
}
|
|
|
|
program { name: "black_fade_3";
|
|
|
|
action: SIGNAL_EMIT "ephoto,transition,raise" "ephoto";
|
|
|
|
after: "black_fade_4";
|
|
|
|
}
|
|
|
|
program { name: "black_fade_4";
|
|
|
|
action: STATE_SET "black_fade" 0.0;
|
|
|
|
target: "slide_clip2";
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,transition,done";
|
|
|
|
source: "ephoto";
|
|
|
|
action: STATE_SET "default" 0.0;
|
|
|
|
target: "slide_clip";
|
|
|
|
target: "slide_clip2";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
group { name: "ephoto,slideshow,item";
|
|
|
|
script {
|
|
|
|
public timeout;
|
|
|
|
public message(Msg_Type:type, id, ...) {
|
|
|
|
if ((type == MSG_FLOAT_SET) && (id == 1)) {
|
|
|
|
new Float:time;
|
|
|
|
time = getfarg(2);
|
|
|
|
set_float(timeout, time);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public left_to_right(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_left_to_right", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public right_to_left(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_right_to_left", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public top_to_bottom(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_top_to_bottom", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public bottom_to_top(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_bottom_to_top", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public left_in(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_left_in", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public right_in(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_right_in", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public top_in(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_top_in", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public bottom_in(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_bottom_in", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public left_out(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_left_out", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public right_out(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_right_out", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public top_out(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_top_out", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public bottom_out(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_bottom_out", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public left_top_corner(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_left_top_corner", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public right_top_corner(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_right_top_corner", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public right_bottom_corner(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_right_bottom_corner", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public left_bottom_corner(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_left_bottom_corner", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public left_top_corner_in(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_left_top_corner_in", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public right_top_corner_in(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_right_top_corner_in", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public right_bottom_corner_in(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_right_bottom_corner_in", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public left_bottom_corner_in(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_left_bottom_corner_in", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public left_top_corner_out(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_left_top_corner_out", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public right_top_corner_out(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_right_top_corner_out", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public right_bottom_corner_out(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_right_bottom_corner_out", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
public left_bottom_corner_out(val, Float:pos) {
|
|
|
|
set_state_anim(PART:"ephoto.swallow.slideshow.item",
|
|
|
|
"end_left_bottom_corner_out", 0.0,
|
|
|
|
SINUSOIDAL, pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parts {
|
|
|
|
rect { "background";
|
|
|
|
scale: 1;
|
|
|
|
description {
|
|
|
|
state: "default" 0.0;
|
|
|
|
color: 0 0 0 255;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rect { "slide_clip";
|
|
|
|
scale: 1;
|
|
|
|
description { state: "default" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel2.to: "background";
|
|
|
|
color: 255 255 255 255;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
swallow { "ephoto.swallow.slideshow.item";
|
|
|
|
scale: 1;
|
|
|
|
clip_to: "slide_clip";
|
|
|
|
mouse_events: 1;
|
|
|
|
description {
|
|
|
|
state: "default" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_left_to_right" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: -0.2 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_left_to_right" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.relative: 1.2 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_right_to_left" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.2 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_right_to_left" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: -0.2 0.0;
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_top_to_bottom" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 -0.2;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_top_to_bottom" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.relative: 1.0 1.2;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_bottom_to_top" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.2;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_bottom_to_top" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 -0.2;
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_left_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: -0.5 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_left_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: -0.1 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_right_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.5 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_right_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.1 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_top_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 -0.5;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_top_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 -0.1;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_bottom_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.5;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_bottom_in" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.relative: 1.0 1.1;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_left_out" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: -0.1 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_left_out" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: -0.5 0.0;
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_right_out" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.1 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_right_out" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.relative: 1.5 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_top_out" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 -0.1;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_top_out" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 -0.5;
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_bottom_out" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_bottom_out" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.relative: 1.0 1.4;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_left_top_corner" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: -0.2 -0.2;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_left_top_corner" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.relative: 1.2 1.2;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_right_top_corner" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 -0.2;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.2 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_right_top_corner" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: -0.2 0.0;
|
|
|
|
rel2.relative: 1.0 1.2;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_right_bottom_corner" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.2 1.2;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_right_bottom_corner" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: -0.2 -0.2;
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_left_bottom_corner" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: -0.2 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.2;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_left_bottom_corner" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 -0.2;
|
|
|
|
rel2.relative: 1.2 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_left_top_corner_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: -0.5 -0.5;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_left_top_corner_in" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: -0.1 -0.1;
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_right_top_corner_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 -0.5;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.5 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_right_top_corner_in" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 -0.1;
|
|
|
|
rel2.relative: 1.1 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_right_bottom_corner_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.5 1.5;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_right_bottom_corner_in" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.relative: 1.1 1.1;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_left_bottom_corner_in" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: -0.5 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.5;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_left_bottom_corner_in" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: -0.1 0.0;
|
|
|
|
rel2.relative: 1.0 1.1;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_left_top_corner_out" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: -0.1 -0.1;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_left_top_corner_out" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: -0.5 -0.5;
|
|
|
|
rel2.relative: 1.0 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_right_top_corner_out" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 -0.1;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.1 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_right_top_corner_out" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 -0.5;
|
|
|
|
rel2.relative: 1.5 1.0;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_right_bottom_corner_out" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.1 1.1;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_right_bottom_corner_out" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: 0.0 0.0;
|
|
|
|
rel2.relative: 1.5 1.5;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "default_left_bottom_corner_out" 0.0;
|
|
|
|
rel1.to: "background";
|
|
|
|
rel1.relative: -0.1 0.0;
|
|
|
|
rel2.to: "background";
|
|
|
|
rel2.relative: 1.0 1.1;
|
|
|
|
}
|
|
|
|
description {
|
|
|
|
state: "end_left_bottom_corner_out" 0.0;
|
|
|
|
inherit: "default" 0.0;
|
|
|
|
rel1.relative: -0.5 0.0;
|
|
|
|
rel2.relative: 1.0 1.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
programs {
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,left,to,right";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "left_to_right", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,right,to,left";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "right_to_left", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,top,to,bottom";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "top_to_bottom", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,bottom,to,top";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "bottom_to_top", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,left,in";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "left_in", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,right,in";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "right_in", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,top,in";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "top_in", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,bottom,in";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "bottom_in", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,left,out";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "left_out", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,right,out";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "right_out", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,top,out";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "top_out", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,bottom,out";
|
|
|
|
source: "ephoto";
|
|
|
|
script {
|
|
|
|
anim(get_float(timeout), "bottom_out", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
program {
|
|
|
|
signal: "ephoto,slideshow,move,left,top,corner";
|
|