General cleanups, able to enter multi-word directories, and start on the erase disc interface.
This commit is contained in:
@ -10,4 +10,5 @@ collections {
|
||||
#include "groups/welcome_page.edc"
|
||||
#include "groups/button.edc"
|
||||
#include "groups/icons.edc"
|
||||
#include "groups/erase_disc.edc"
|
||||
}
|
||||
|
51
ecdb/trunk/data/themes/default/groups/erase_disc.edc
Normal file
51
ecdb/trunk/data/themes/default/groups/erase_disc.edc
Normal file
@ -0,0 +1,51 @@
|
||||
group {
|
||||
name: "ecdb/erase_page";
|
||||
min: 640 170;
|
||||
|
||||
parts {
|
||||
part {
|
||||
name: "bg";
|
||||
|
||||
description {
|
||||
state: "default" 0.0;
|
||||
color: 0 0 0 0;
|
||||
|
||||
rel1 {
|
||||
relative: 0.0 0.0;
|
||||
offset: 0 0;
|
||||
}
|
||||
|
||||
rel2 {
|
||||
relative: 1.0 1.0;
|
||||
offset: -1 -1;
|
||||
}
|
||||
}
|
||||
|
||||
description {
|
||||
state: "visible" 0.0;
|
||||
inherit: "default" 0.0;
|
||||
color: 255 0 0 120;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
programs {
|
||||
program {
|
||||
name: "erase_page,visible";
|
||||
signal: "ecdb,erase_page,visible";
|
||||
source: "ecdb";
|
||||
action: STATE_SET "visible" 0.0;
|
||||
target: "bg";
|
||||
transition: LINEAR 0.5;
|
||||
}
|
||||
|
||||
program {
|
||||
name: "erase_page,hide";
|
||||
signal: "ecdb,erase_page,hide";
|
||||
source: "ecdb";
|
||||
action: STATE_SET "default" 0.0;
|
||||
target: "bg";
|
||||
transition: LINEAR 0.5;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user