TH - elm thumb

This commit is contained in:
Carsten Haitzler 2019-10-13 20:21:30 +01:00
parent 6575fee2a9
commit 4dd8feb612
1 changed files with 23 additions and 43 deletions

View File

@ -4,34 +4,30 @@ group { name: "elm/thumb/base/default";
images.image: "shadow_square_tiny.png" COMP; images.image: "shadow_square_tiny.png" COMP;
parts { parts {
part { name: "shadow"; mouse_events: 0; part { name: "shadow"; mouse_events: 0;
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.offset: -3 -2; rel.to: "bg";
rel1.to: "bg"; WIN_SHADOW_SMALL;
rel2.offset: 3 4;
rel2.to: "bg";
image.normal: "shadow_square_tiny.png";
image.border: 6 6 6 6;
fill.smooth: 0;
} }
} }
part { name: "bg"; type: RECT; part { name: "bg"; type: RECT;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "elm.swallow.content"; rel.to: "elm.swallow.content";
rel2.to: "elm.swallow.content";
color: 64 64 64 255; color: 64 64 64 255;
} }
} }
part { name: "clip"; type: RECT; part { name: "clip"; type: RECT;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "elm.swallow.content";
rel2.to: "elm.swallow.content"; rel2.to: "elm.swallow.content";
} }
} }
part { name: "elm.swallow.content"; type: SWALLOW; part { name: "elm.swallow.content"; type: SWALLOW;
scale: 1;
clip_to: "clip"; clip_to: "clip";
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.offset: 4 4; rel1.offset: 4 4;
rel2.offset: -5 -5; rel2.offset: -5 -5;
offscale;
} }
} }
part { name: "busy_clip"; type: RECT; part { name: "busy_clip"; type: RECT;
@ -44,58 +40,42 @@ group { name: "elm/thumb/base/default";
color: 255 255 255 255; color: 255 255 255 255;
} }
} }
part { name: "knob"; mouse_events: 0; part { name: "busy"; type: RECT; mouse_events: 0;
clip_to: "busy_clip"; clip_to: "busy_clip";
description { state: "default" 0.0; description { state: "default" 0.0;
rel.to: "bg";
color: 51 153 255 255;
fixed: 1 1; fixed: 1 1;
image.normal: "knob_round_busy.png"; min: 10 5;
min: 40 40; max: 10 5;
max: 40 40; align: 0.0 1.0;
rel1.to: "bg";
rel2.to: "bg";
} }
} description { state: "other" 0.0;
part { name: "knob_spinner"; mouse_events: 0;
clip_to: "busy_clip";
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "knob";
rel2.to: "knob";
image.normal: "glow_round_corners.png";
map.on: 1;
map.smooth: 1;
map.rotation.center: "knob";
}
description { state: "spin" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
map.rotation.z: 360; align: 1.0 1.0;
} }
} }
} }
programs { programs {
program { name: "spin"; program { name: "spin";
signal: "elm,state,pulse,start"; signal: "elm,state,pulse,start"; source: "elm";
source: "elm"; action: STATE_SET "other" 0.0;
action: STATE_SET "spin" 0.0; transition: SINUSOIDAL 0.5;
transition: LINEAR 1.0; target: "busy";
target: "knob_spinner";
after: "spin2"; after: "spin2";
} }
program { name: "spin2"; program { name: "spin2";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
target: "knob_spinner"; transition: SINUSOIDAL 0.5;
target: "busy";
after: "spin"; after: "spin";
} }
program { name: "pulse_start"; program { signal: "elm,state,pulse,start"; source: "elm";
signal: "elm,state,pulse,start";
source: "elm";
action: STATE_SET "active" 0.0; action: STATE_SET "active" 0.0;
transition: SINUSOIDAL 0.25; transition: SINUSOIDAL 0.25;
target: "busy_clip"; target: "busy_clip";
} }
program { name: "pulse_stop"; program { signal: "elm,state,pulse,stop"; source: "elm";
signal: "elm,state,pulse,stop";
source: "elm";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 1.0; transition: SINUSOIDAL 1.0;
target: "busy_clip"; target: "busy_clip";
@ -109,7 +89,7 @@ group { name: "elm/thumb/base/default";
} }
program { name: "spin4"; program { name: "spin4";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
target: "knob_spinner"; target: "busy";
} }
} }
} }