efl/data/elementary/themes/edc/elm/focus.edc

251 lines
7.2 KiB
Plaintext

group { name: "elm/focus_highlight/top/default";
data.item: "animate" "on";
script {
public s_x, s_y, s_w, s_h; /* source */
public difx, dify, difw, difh;
public g_anim_id;
public animator1(val, Float:pos) {
new x, y, w, h, dx, dy, dw, dh, Float:p;
p = 1.0 - ((1.0 - pos) * (1.0 - pos) * (1.0 - pos));
dx = round(float_mul(float(get_int(difx)), p));
x = get_int(s_x) + dx;
dy = round(float_mul(float(get_int(dify)), p));
y = get_int(s_y) + dy;
dw = round(float_mul(float(get_int(difw)), p));
w = get_int(s_w) + dw;
dh = round(float_mul(float(get_int(difh)), p));
h = get_int(s_h) + dh;
update_offset(x, y, w, h);
if (pos >= 1.0) {
set_int(g_anim_id, 0);
}
}
public update_offset(x, y, w, h) {
set_state_val(PART:"base", STATE_REL1_OFFSET, x, y);
set_state_val(PART:"base", STATE_REL2_OFFSET, x + w - 1, y + h - 1);
}
public message(Msg_Type:type, id, ...) {
if ((type == MSG_INT_SET) && (id == 1)) {
new x1, y1, w1, h1, x2, y2, w2, h2;
new anim_id;
anim_id = get_int(g_anim_id);
if (anim_id != 0) {
cancel_anim(anim_id);
}
x1 = getarg(2);
y1 = getarg(3);
w1 = getarg(4);
h1 = getarg(5);
x2 = getarg(6);
y2 = getarg(7);
w2 = getarg(8);
h2 = getarg(9);
set_int(s_x, x1);
set_int(s_y, y1);
set_int(s_w, w1);
set_int(s_h, h1);
set_int(difx, x2 - x1);
set_int(dify, y2 - y1);
set_int(difw, w2 - w1);
set_int(difh, h2 - h1);
custom_state(PART:"base", "default", 0.0);
set_state_val(PART:"base", STATE_REL1, 0.0, 0.0);
set_state_val(PART:"base", STATE_REL2, 0.0, 0.0);
update_offset(x1, y1, w1, h1);
set_state(PART:"base", "custom", 0.0);
anim_id = anim(0.2, "animator1", 1);
set_int(g_anim_id, anim_id);
}
}
}
parts {
part { name: "base"; type: SPACER;
description { state: "default" 0.0;
fixed: 1 1;
}
}
part { name: "clip"; type: RECT;
description { state: "default" 0.0;
rel.to: "base";
rel1.relative: -1.0 -1.0;
rel1.offset: -999 -999;
rel2.relative: 2.0 2.0;
rel2.offset: 999 999;
color: 255 255 255 0; // no cc
visible: 0;
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
color: 255 255 255 255; // no cc
visible: 1;
}
}
part { name: "top"; type: RECT;
clip_to: "clip";
scale: 1;
description { state: "default" 0.0;
rel.to: "base";
color_class: "/bg/selected/focus";
rel2.relative: 1.0 0.0;
min: 4 4;
}
description { state: "hi" 0.0;
inherit: "default" 0.0;
color_class: "/bg/selected/focus/hilight";
}
}
part { name: "topl"; type: RECT;
clip_to: "clip";
scale: 1;
description { state: "default" 0.0;
rel.to: "top";
color_class: "/bg/selected/focus";
rel1.relative: 0.0 1.0;
rel2.relative: 0.0 1.0;
align: 0.0 0.0;
min: 4 4;
}
description { state: "hi" 0.0;
inherit: "default" 0.0;
color_class: "/bg/selected/focus/hilight";
}
}
part { name: "topr"; type: RECT;
clip_to: "clip";
scale: 1;
description { state: "default" 0.0;
rel.to: "top";
color_class: "/bg/selected/focus";
rel1.relative: 1.0 1.0;
rel2.relative: 1.0 1.0;
align: 1.0 0.0;
min: 4 4;
}
description { state: "hi" 0.0;
inherit: "default" 0.0;
color_class: "/bg/selected/focus/hilight";
}
}
part { name: "bot"; type: RECT;
clip_to: "clip";
scale: 1;
description { state: "default" 0.0;
rel.to: "base";
color_class: "/bg/selected/focus";
rel1.relative: 0.0 1.0;
min: 4 4;
}
description { state: "hi" 0.0;
inherit: "default" 0.0;
color_class: "/bg/selected/focus/hilight";
}
}
part { name: "botl"; type: RECT;
clip_to: "clip";
scale: 1;
description { state: "default" 0.0;
rel.to: "bot";
color_class: "/bg/selected/focus";
rel1.relative: 0.0 0.0;
rel2.relative: 0.0 0.0;
align: 0.0 1.0;
min: 4 4;
}
description { state: "hi" 0.0;
inherit: "default" 0.0;
color_class: "/bg/selected/focus/hilight";
}
}
part { name: "botr"; type: RECT;
clip_to: "clip";
scale: 1;
description { state: "default" 0.0;
rel.to: "bot";
color_class: "/bg/selected/focus";
rel1.relative: 1.0 0.0;
rel2.relative: 1.0 0.0;
align: 1.0 1.0;
min: 4 4;
}
description { state: "hi" 0.0;
inherit: "default" 0.0;
color_class: "/bg/selected/focus/hilight";
}
}
}
programs {
program { signal: "elm,action,focus,show"; source: "elm";
action: ACTION_STOP;
target: "pulse";
target: "pulse2";
after: "go2";
}
program { name: "go2";
action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.2;
target: "clip";
after: "pulse";
after: "go3";
}
program { name: "go3";
action: SIGNAL_EMIT "elm,action,focus,show,end" "elm";
}
program { signal: "elm,action,focus,hide"; source: "elm";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.4;
target: "clip";
after: "stop2";
}
program { name: "stop2";
action: SIGNAL_EMIT "elm,action,focus,hide,end" "elm";
after: "stop3";
}
program { name: "stop3";
action: ACTION_STOP;
target: "pulse";
target: "pulse2";
}
program { name: "pulse";
action: STATE_SET "hi" 0.0;
transition: SINUSOIDAL 0.2;
in: 3.0 0.0;
target: "top";
target: "topl";
target: "topr";
target: "bot";
target: "botl";
target: "botr";
after: "pulse2";
}
program { name: "pulse2";
action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 0.4;
target: "top";
target: "topl";
target: "topr";
target: "bot";
target: "botl";
target: "botr";
after: "pulse";
}
program { signal: "elm,state,anim,stop"; source: "elm";
action: STATE_SET "default" 0.0;
target: "base";
}
}
}
group { name: "elm/focus_highlight/top/blank";
parts {
}
}