theme: remove not yet used groups

these groups are not used yet. So remove the groups for now.

ref T8501

Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Differential Revision: https://phab.enlightenment.org/D11077
This commit is contained in:
Marcel Hollerbach 2020-01-13 15:04:07 +01:00
parent 3af2b57fd2
commit 3ee174a5bf
1 changed files with 0 additions and 179 deletions

View File

@ -1226,182 +1226,3 @@ group { "efl/progressbar/horizontal:wheel";
}
}
}
group { "efl/progressbar/horizontal:double";
inherit: "efl/progressbar/horizontal";
data.item: "version" "123";
images {
image: "inset_bar_horiz_glow_base_double.png" COMP;
image: "inset_bar_horiz_glow_inv_base_double.png" COMP;
}
parts {
part { name: "efl.cur.progressbar1"; mouse_events: 0; type: SPACER;
insert_after: "inside";
scale: 1;
dragable.confine: "inside";
dragable.x: 1 1 1;
dragable.y: 0 0 0;
description { state: "default" 0.0;
fixed: 1 1;
min: 8 4;
max: 8 4;
rel1.to: "inside";
rel2.to: "inside";
}
}
part { name: "barend1"; type: SPACER;
scale: 1;
description { state: "default" 0.0;
fixed: 1 0;
min: 14 16;
rel1.to_x: "efl.cur.progressbar1";
rel1.relative: 1.0 0.0;
rel2.to_x: "efl.cur.progressbar1";
rel2.relative: 1.0 1.0;
align: 0.0 0.5;
}
description { state: "inv" 0.0;
inherit: "default" 0.0;
rel1.relative: 0.0 0.0;
rel2.relative: 0.0 1.0;
align: 1.0 0.5;
}
}
part { name: "bar1";
insert_after: "barend";
clip_to: "fract_clip";
scale: 1;
description { state: "default" 0.0;
rel1.to_x: "ins0";
rel1.to_y: "bg";
rel1.relative: (12/16) -0.25;
rel2.to_x: "barend1";
rel2.to_y: "bg";
rel2.relative: 1.0 1.25;
image.normal: "inset_bar_horiz_glow_base_double.png";
image.border: 0 72 0 0;
image.border_scale_by: 0.25; image.border_scale: 1;
color: 51 153 255 128;
}
description { state: "inv" 0.0;
inherit: "default" 0.0;
rel1.to_x: "barend";
rel1.relative: 0.0 -0.25;
rel2.to_x: "ins1";
rel2.relative: (4/16) 1.25;
image.normal: "inset_bar_horiz_glow_inv_base_double.png";
image.border: 72 0 0 0;
}
}
}
programs {
program { name: "inverted-on";
signal: "efl,state,inverted,on"; source: "efl";
action: STATE_SET "inv" 0.0;
target: "bar";
target: "bar1";
target: "barend";
target: "barend1";
target: "light";
}
program
{ name: "inverted-off";
signal: "efl,state,inverted,off"; source: "efl";
action: STATE_SET "default" 0.0;
target: "bar";
target: "bar1";
target: "barend";
target: "barend1";
target: "light";
}
}
}
group { "efl/progressbar/vertical:double";
inherit: "efl/progressbar/vertical";
data.item: "version" "123";
images {
image: "inset_bar_vert_glow_base_double.png" COMP;
image: "inset_bar_vert_glow_inv_base_double.png" COMP;
}
parts {
part { name: "efl.cur.progressbar1"; mouse_events: 0; type: SPACER;
insert_after: "inside";
scale: 1;
dragable.confine: "inside";
dragable.x: 0 0 0;
dragable.y: 1 1 1;
description { state: "default" 0.0;
fixed: 1 1;
min: 4 8;
max: 4 8;
rel1.to: "inside";
rel2.to: "inside";
}
}
part { name: "barend1"; type: SPACER;
scale: 1;
description { state: "default" 0.0;
fixed: 0 1;
min: 16 14;
rel1.to_y: "efl.cur.progressbar1";
rel1.relative: 0.0 1.0;
rel2.to_y: "efl.cur.progressbar1";
rel2.relative: 1.0 1.0;
align: 0.5 0.0;
}
description { state: "inv" 0.0;
inherit: "default" 0.0;
rel1.relative: 0.0 0.0;
rel2.relative: 1.0 0.0;
align: 0.5 1.0;
}
}
part { name: "bar1";
insert_after: "barend";
clip_to: "fract_clip";
scale: 1;
description { state: "default" 0.0;
rel1.to_y: "ins0";
rel1.to_x: "bg";
rel1.relative: -0.25 (12/16);
rel2.to_y: "barend1";
rel2.to_x: "bg";
rel2.relative: 1.25 1.0;
image.normal: "inset_bar_vert_glow_base_double.png";
image.border: 0 0 0 72;
image.border_scale_by: 0.25; image.border_scale: 1;
color: 51 153 255 128;
}
description { state: "inv" 0.0;
inherit: "default" 0.0;
rel1.to_y: "barend1";
rel1.relative: -0.25 0.0;
rel2.to_y: "ins1";
rel2.relative: 1.25 (4/16);
image.normal: "inset_bar_vert_glow_inv_base_double.png";
image.border: 0 0 72 0;
}
}
}
programs {
program { name: "inverted-on";
signal: "efl,state,inverted,on"; source: "efl";
action: STATE_SET "inv" 0.0;
target: "bar";
target: "barend";
target: "light";
target: "bar1";
target: "barend1";
}
program { name: "inverted-off";
signal: "efl,state,inverted,off"; source: "efl";
action: STATE_SET "default" 0.0;
target: "bar";
target: "barend";
target: "light";
target: "bar1";
target: "barend1";
}
}
}