enlightenment/data/themes/default_ibar.edc

1077 lines
21 KiB
Plaintext

images {
image: "e17_ibar_arrow_d.png" COMP;
image: "e17_ibar_arrow_l.png" COMP;
image: "e17_ibar_arrow_r.png" COMP;
image: "e17_ibar_arrow_u.png" COMP;
image: "e17_pager_desk.png" COMP;
}
group {
name: "e/modules/ibar/icon";
data {
item: "raise_on_hilight" "0"; // 1 or 0 if u want an icon holder to raise when the mouse (or keyboard) hilights it
// item: "item_list" "item item2 item3";
}
parts {
part {
name: "item_clip";
type: RECT;
mouse_events: 0;
description {
state: "default" 0.0;
color: 255 255 255 255;
}
description {
state: "faded" 0.0;
color: 255 255 255 64;
}
}
part {
name: "item";
type: SWALLOW;
mouse_events: 0;
clip_to: "item_clip";
description {
state: "default" 0.0;
rel1 {
relative: 0.0 0.0;
offset: 2 2;
}
rel2 {
relative: 1.0 1.0;
offset: -3 -3;
}
color: 0 0 0 0;
}
description {
state: "bigger" 0.0;
inherit: "default" 0.0;
rel1 {
relative: 0.0 0.0;
offset: 0 0;
}
rel2 {
relative: 1.0 1.0;
offset: -1 -1;
}
}
}
part {
name: "over";
type: RECT;
repeat_events: 0;
description {
state: "default" 0.0;
color: 0 0 0 0;
}
}
}
programs {
program {
name: "hover_in";
signal: "mouse,in";
source: "over";
action: STATE_SET "bigger" 0.0;
transition: LINEAR 0.1;
target: "item";
}
program {
name: "hover_out";
signal: "mouse,out";
source: "over";
action: STATE_SET "default" 0.0;
transition: LINEAR 0.2;
target: "item";
}
program {
name: "exec_start";
signal: "e,action,start";
source: "e";
action: STATE_SET "faded" 0.0;
transition: LINEAR 0.5;
target: "item_clip";
}
program {
name: "exec_exec";
signal: "e,action,exec";
source: "e";
action: STATE_SET "faded" 0.0;
transition: LINEAR 0.5;
target: "item_clip";
after: "exec_stop";
}
program {
name: "exec_stop";
signal: "e,action,stop";
source: "e";
action: STATE_SET "default" 0.0;
target: "item_clip";
}
}
}
group {
name: "e/modules/ibar/icon_overlay";
data {
// item: "item_list", "item item2 item3";
}
parts {
part {
name: "base";
type: RECT;
mouse_events: 0;
description {
state: "default" 0.0;
color: 255 255 255 0;
}
}
part {
name: "background";
type: RECT;
mouse_events: 0;
description {
state: "default" 0.0;
visible: 0;
rel1 {
to: "base";
}
rel2 {
to: "base";
}
color: 255 255 255 0;
}
description {
state: "visible" 0.0;
visible: 1;
rel1 {
to: "base";
}
rel2 {
to: "base";
}
color: 255 255 255 255;
}
description {
state: "hidden" 0.0;
visible: 1;
rel1 {
relative: -0.5 -0.5;
to: "base";
}
rel2 {
relative: 1.5 1.5;
to: "base";
}
color: 255 255 255 0;
}
description {
state: "huge" 0.0;
visible: 1;
rel1 {
relative: -2.0 -2.0;
to: "base";
}
rel2 {
relative: 3.0 3.0;
to: "base";
}
color: 255 255 255 0;
}
}
part {
name: "item";
type: SWALLOW;
mouse_events: 0;
clip_to: "background";
description {
state: "default" 0.0;
rel1 {
to: "background";
}
rel2 {
to: "background";
}
color: 0 0 0 0;
}
}
part {
name: "e.text.label";
type: TEXT;
effect: SOFT_SHADOW;
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.5 0.5;
rel1 {
relative: 0.0 1.0;
offset: 0 -1;
}
rel2 {
relative: 1.0 1.0;
offset: -1 -1;
}
color: 255 255 255 0;
color3: 0 0 0 0;
text {
text: "";
font: "Edje-Vera-Bold";
size: 10;
min: 1 1;
align: 0.5 0.5;
text_class: "module_normal";
}
}
description {
state: "visible" 0.0;
inherit: "default" 0.0;
rel1 {
relative: 0.0 0.0;
offset: 0 0;
}
rel2 {
relative: 1.0 1.0;
offset: -1 -1;
}
color: 255 255 255 255;
color3: 0 0 0 42;
}
}
}
programs {
program {
name: "go_active";
signal: "e,state,focused";
source: "e";
action: STATE_SET "visible" 0.0;
target: "background";
after: "go_active2";
}
program {
name: "go_activeB";
signal: "e,action,show,label";
source: "e";
action: STATE_SET "visible" 0.0;
transition: SINUSOIDAL 0.5;
target: "e.text.label";
}
program {
name: "go_active2";
signal: "";
source: "";
action: STATE_SET "hidden" 0.0;
transition: LINEAR 0.5;
target: "background";
after: "go_active";
}
program {
name: "go_passive";
signal: "e,state,unfocused";
source: "e";
action: ACTION_STOP;
target: "go_active";
target: "go_active2";
after: "go_passive2";
}
program {
name: "go_passiveB";
signal: "e,action,hide,label";
source: "e";
action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 1.0;
target: "e.text.label";
}
program {
name: "go_passive2";
signal: "";
source: "";
action: STATE_SET "default" 0.0;
target: "background";
}
program {
name: "go_big";
action: STATE_SET "visible" 0.0;
target: "background";
after: "go_big2";
}
program {
name: "go_big2";
action: STATE_SET "huge" 0.0;
transition: LINEAR 0.5;
target: "background";
}
program {
name: "exec_start";
signal: "e,action,start";
source: "e";
action: ACTION_STOP;
target: "go_active";
target: "go_active2";
target: "go_passive";
target: "go_passive2";
target: "go_big";
target: "go_big2";
after: "go_big";
}
program {
name: "exec_exec";
signal: "e,action,exec";
source: "e";
after: "exec_start";
}
program {
name: "exec_stop";
signal: "e,action,stop";
source: "e";
// action: SIGNAL_EMIT "active" 0.0;
}
}
}
group {
name: "e/modules/ibar/drop";
parts {
part {
name: "bg";
mouse_events: 0;
description {
state: "default" 0.0;
image {
normal: "e17_pager_desk.png";
border: 2 2 2 2;
middle: 0;
}
}
}
}
}
group {
name: "e/modules/ibar/drop_overlay";
parts {
part {
name: "l1";
mouse_events: 0;
description {
state: "default" 0.0;
align: 1.0 0.5;
min: 21 20;
max: 21 20;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 0.0;
offset: -1 0;
}
rel2 {
relative: 0.0 1.0;
offset: -1 -1;
}
image {
normal: "e17_ibar_arrow_r.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "l2";
mouse_events: 0;
description {
state: "default" 0.0;
align: 1.0 0.5;
min: 21 20;
max: 21 20;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 0.0;
offset: -1 0;
to: "l1";
}
rel2 {
relative: 0.0 1.0;
offset: -1 -1;
to: "l1";
}
image {
normal: "e17_ibar_arrow_r.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "l3";
mouse_events: 0;
description {
state: "default" 0.0;
align: 1.0 0.5;
min: 21 20;
max: 21 20;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 0.0;
offset: -1 0;
to: "l2";
}
rel2 {
relative: 0.0 1.0;
offset: -1 -1;
to: "l2";
}
image {
normal: "e17_ibar_arrow_r.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "l4";
mouse_events: 0;
description {
state: "default" 0.0;
align: 1.0 0.5;
min: 21 20;
max: 21 20;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 0.0;
offset: -1 0;
to: "l3";
}
rel2 {
relative: 0.0 1.0;
offset: -1 -1;
to: "l3";
}
image {
normal: "e17_ibar_arrow_r.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "r1";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.0 0.5;
min: 21 20;
max: 21 20;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 1.0 0.0;
offset: 0 0;
}
rel2 {
relative: 1.0 1.0;
offset: 0 -1;
}
image {
normal: "e17_ibar_arrow_l.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "r2";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.0 0.5;
min: 21 20;
max: 21 20;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 1.0 0.0;
offset: 0 0;
to: "r1";
}
rel2 {
relative: 1.0 1.0;
offset: 0 -1;
to: "r1";
}
image {
normal: "e17_ibar_arrow_l.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "r3";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.0 0.5;
min: 21 20;
max: 21 20;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 1.0 0.0;
offset: 0 0;
to: "r2";
}
rel2 {
relative: 1.0 1.0;
offset: 0 -1;
to: "r2";
}
image {
normal: "e17_ibar_arrow_l.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "r4";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.0 0.5;
min: 21 20;
max: 21 20;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 1.0 0.0;
offset: 0 0;
to: "r3";
}
rel2 {
relative: 1.0 1.0;
offset: 0 -1;
to: "r3";
}
image {
normal: "e17_ibar_arrow_l.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "t1";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.5 1.0;
min: 29 21;
max: 29 21;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 0.0;
offset: 0 -1;
}
rel2 {
relative: 1.0 0.0;
offset: -1 -1;
}
image {
normal: "e17_ibar_arrow_d.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "t2";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.5 1.0;
min: 29 21;
max: 29 21;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 0.0;
offset: 0 -1;
to: "t1";
}
rel2 {
relative: 1.0 0.0;
offset: -1 -1;
to: "t1";
}
image {
normal: "e17_ibar_arrow_d.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "t3";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.5 1.0;
min: 29 21;
max: 29 21;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 0.0;
offset: 0 -1;
to: "t2";
}
rel2 {
relative: 1.0 0.0;
offset: -1 -1;
to: "t2";
}
image {
normal: "e17_ibar_arrow_d.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "t4";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.5 1.0;
min: 29 21;
max: 29 21;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 0.0;
offset: 0 -1;
to: "t3";
}
rel2 {
relative: 1.0 0.0;
offset: -1 -1;
to: "t3";
}
image {
normal: "e17_ibar_arrow_d.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "b1";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.5 0.0;
min: 29 21;
max: 29 21;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 1.0;
offset: 0 0;
}
rel2 {
relative: 1.0 1.0;
offset: -1 0;
}
image {
normal: "e17_ibar_arrow_u.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "b2";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.5 0.0;
min: 29 21;
max: 29 21;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 1.0;
offset: 0 0;
to: "b1";
}
rel2 {
relative: 1.0 1.0;
offset: -1 0;
to: "b1";
}
image {
normal: "e17_ibar_arrow_u.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "b3";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.5 0.0;
min: 29 21;
max: 29 21;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 1.0;
offset: 0 0;
to: "b2";
}
rel2 {
relative: 1.0 1.0;
offset: -1 0;
to: "b2";
}
image {
normal: "e17_ibar_arrow_u.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "b4";
mouse_events: 0;
description {
state: "default" 0.0;
align: 0.5 0.0;
min: 29 21;
max: 29 21;
visible: 0;
color: 255 255 255 0;
rel1 {
relative: 0.0 1.0;
offset: 0 0;
to: "b3";
}
rel2 {
relative: 1.0 1.0;
offset: -1 0;
to: "b3";
}
image {
normal: "e17_ibar_arrow_u.png";
}
}
description {
state: "default2" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
}
programs {
program {
name: "go";
signal: "show";
source: "";
after: "l1a";
after: "r1a";
after: "t1a";
after: "b1a";
}
program {
name: "l1a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "l4";
after: "l1b";
after: "l2a";
}
program {
name: "l1b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "l4";
}
program {
name: "l2a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "l3";
after: "l2b";
after: "l3a";
}
program {
name: "l2b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "l3";
}
program {
name: "l3a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "l2";
after: "l3b";
after: "l4a";
}
program {
name: "l3b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "l2";
}
program {
name: "l4a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "l1";
after: "l4b";
after: "l1a";
}
program {
name: "l4b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "l1";
}
program {
name: "r1a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "r4";
after: "r1b";
after: "r2a";
}
program {
name: "r1b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "r4";
}
program {
name: "r2a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "r3";
after: "r2b";
after: "r3a";
}
program {
name: "r2b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "r3";
}
program {
name: "r3a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "r2";
after: "r3b";
after: "r4a";
}
program {
name: "r3b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "r2";
}
program {
name: "r4a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "r1";
after: "r4b";
after: "r1a";
}
program {
name: "r4b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "r1";
}
program {
name: "t1a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "t4";
after: "t1b";
after: "t2a";
}
program {
name: "t1b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "t4";
}
program {
name: "t2a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "t3";
after: "t2b";
after: "t3a";
}
program {
name: "t2b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "t3";
}
program {
name: "t3a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "t2";
after: "t3b";
after: "t4a";
}
program {
name: "t3b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "t2";
}
program {
name: "t4a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "t1";
after: "t4b";
after: "t1a";
}
program {
name: "t4b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "t1";
}
program {
name: "b1a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "b4";
after: "b1b";
after: "b2a";
}
program {
name: "b1b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "b4";
}
program {
name: "b2a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "b3";
after: "b2b";
after: "b3a";
}
program {
name: "b2b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "b3";
}
program {
name: "b3a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "b2";
after: "b3b";
after: "b4a";
}
program {
name: "b3b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "b2";
}
program {
name: "b4a";
action: STATE_SET "default2" 0.0;
transition: SINUSOIDAL 0.25;
target: "b1";
after: "b4b";
after: "b1a";
}
program {
name: "b4b";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.75;
target: "b1";
}
}
}