elfe: remove unused parts in edc

SVN revision: 57996
This commit is contained in:
Nicolas Aguirre 2011-03-22 17:37:58 +00:00
parent a2daad6047
commit c81a6e5cdc
1 changed files with 0 additions and 164 deletions

View File

@ -468,147 +468,6 @@ collections
}
part {
name: "windowlist.clip";
type: RECT;
mouse_events: 0;
description {
state: "default" 0.0;
visible: 0;
color: 255 255 255 0;
}
description {
state: "show" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "windowlist.bg";
type: RECT;
mouse_events: 0;
clip_to: "windowlist.clip";
description {
state: "default" 0.0;
color: 0 0 0 200;
}
}
part {
name: "windowlist.swallow";
type: SWALLOW;
mouse_events: 1;
clip_to: "windowlist.clip";
description {
state: "default" 0.0;
}
}
part {
name: "inwin.clip";
type: RECT;
mouse_events: 0;
description {
state: "default" 0.0;
visible: 0;
color: 255 255 255 0;
}
description {
state: "show" 0.0;
visible: 1;
color: 255 255 255 255;
}
}
part {
name: "inwin.mask";
type: RECT;
mouse_events: 0;
clip_to: "inwin.clip";
description {
state: "default" 0.0;
color: 0 0 0 200;
}
}
part {
name: "inwin.bg";
type: IMAGE;
clip_to: "inwin.clip";
mouse_events: 1;
description {
state: "default" 0.0;
image.normal: "inwin_bg.png";
image.border: 40 40 42 40;
/* rel1.offset: 16 64; */
/* rel2.offset: -15 -63; */
}
}
part {
name: "inwin.text.title";
type: TEXT;
clip_to: "inwin.clip";
scale: 1;
mouse_events: 0;
description {
state: "default" 0.0;
rel1.to: "inwin.bg";
rel1.offset: 50 40;
rel1.relative: 0 0;
rel2.to: "inwin.bg";
rel2.offset: -49 40;
rel2.relative: 1 0;
fixed: 1 1;
align: 0 0;
color: 255 255 255 200;
text {
align: 0 0;
size: 14;
min: 0 1;
font: "Sans,Bold";
}
}
}
part {
name: "separator";
type: IMAGE;
clip_to: "inwin.clip";
mouse_events: 0;
description {
min: 2 2;
max: 9999 2;
state: "default" 0.0;
fixed: 1 1;
image.normal: "separator.png";
rel1.relative: 0 1;
rel1.offset: 40 8;
rel1.to_y: "inwin.text.title";
rel1.to_x: "inwin.bg";
rel2.relative: 1 1;
rel2.offset: -39 8;
rel2.to_x: "inwin.bg";
rel2.to_y: "inwin.text.title";
}
}
part {
name: "inwin.swallow.content";
type: SWALLOW;
clip_to: "inwin.clip";
mouse_events: 1;
description {
state: "default" 0.0;
rel1.to_y: "separator";
rel1.offset: 34 8;
rel2.to: "inwin.bg";
rel2.offset: -34 -34;
}
}
}
programs {
@ -699,29 +558,6 @@ collections
script { apps_list_toggle(); }
after: "apps-released";
}
program { name: "windowlist,show";
signal: "windowlist,show";
source: "elfe";
action: STATE_SET "show" 0.0;
target: "windowlist.clip";
transition: ACCELERATE 0.2;
}
program { name: "inwin,show";
signal: "inwin,show";
source: "elfe";
action: STATE_SET "show" 0.0;
target: "inwin.clip";
transition: ACCELERATE 0.2;
}
program { name: "inwin,hide";
signal: "inwin,hide";
source: "elfe";
action: STATE_SET "default" 0.0;
target: "inwin.clip";
transition: DECELERATE 0.5;
}
}
}