Add a frame outline, and hide the filelist on erase action.

This commit is contained in:
Jaime Thomas 2008-10-31 18:06:56 +00:00
parent e1b07a9976
commit f023bd41b5
4 changed files with 31 additions and 0 deletions

View File

@ -118,6 +118,33 @@ group {
}
}
}
part {
name: "progress_outline";
type: IMAGE;
mouse_events: 0;
description {
state: "default" 0.0;
rel1 {
to: "bg";
relative: 0.0 0.0;
offset: 10 13;
}
rel2 {
to: "bg";
relative: 0.5 1.0;
offset: -1 -10;
}
image {
normal: "frame_outline.png";
border: 9 9 9 9;
}
}
}
}
programs {

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -11,4 +11,5 @@ images {
image: "audio.png" COMP;
image: "clear.png" COMP;
image: "iso.png" COMP;
image: "frame_outline.png" COMP;
}

View File

@ -524,6 +524,9 @@ ecdb_erase_page_show(void)
swallow = evas_object_name_find(ecore_evas_get(em->main_win_ee),
"erase_page");
/* Hide the filelist as it isn't needed to erase a disc */
edje_object_signal_emit(gui, "ecdb,filelist,hide", "ecdb");
if (!swallow)
{
Evas_Coord x, y, w, h;