elfe: Add a separator in genlist item

SVN revision: 57481
This commit is contained in:
Nicolas Aguirre 2011-03-03 07:20:33 +00:00
parent 1c1feb347e
commit 53af4fd46f
1 changed files with 20 additions and 2 deletions

View File

@ -383,6 +383,22 @@ group { name: "elm/genlist/item/default/default";
color: 255 255 255 255;
}
}
part {
name: "separator";
type: RECT;
description {
state: "default" 0.0;
color: 255 255 255 255;
min: 0 1;
max: 9999 1;
align: 0 1;
}
description {
state: "selected" 0.0;
inherit: "default" 0.0;
visible: 0;
}
}
part { name: "elm.swallow.pad";
type: SWALLOW;
description { state: "default" 0.0;
@ -454,8 +470,8 @@ group { name: "elm/genlist/item/default/default";
}
color: 255 255 255 200;
text {
font: "Comfortaa";
size: 18;
font: "Sans";
size: 10;
min: 0 1;
align: 0.0 0.5;
}
@ -484,6 +500,7 @@ group { name: "elm/genlist/item/default/default";
action: STATE_SET "selected" 0.0;
target: "bg";
target: "elm.text";
target: "separator";
}
program {
name: "go_passive";
@ -492,6 +509,7 @@ group { name: "elm/genlist/item/default/default";
action: STATE_SET "default" 0.0;
target: "bg";
target: "elm.text";
target: "separator";
transition: LINEAR 0.1;
}
}