naviframe: fix T1008 so promoting an overlap item would perform as documented

This commit is contained in:
Andy Williams 2014-02-21 08:05:31 +00:00
parent 768509c99a
commit 6cbf4e3903
1 changed files with 25 additions and 0 deletions

View File

@ -653,5 +653,30 @@ group { name: "elm/naviframe/item/overlap/default";
}
}
}
programs {
/* current page is being pushed: [previous]<----[current] */
program {
signal: "elm,state,cur,pushed"; source: "elm";
action: SIGNAL_EMIT "elm,action,pushed,finished" "elm";
}
/* current page is being popped: [current]---->[next] */
program {
signal: "elm,state,cur,popped"; source: "elm";
action: SIGNAL_EMIT "elm,action,popped,finished" "elm";
}
/* new page is being pushed: [current]<----[next] */
program {
signal: "elm,state,new,pushed"; source: "elm";
action: SIGNAL_EMIT "elm,action,show,finished" "elm";
}
/* previous page is being pushed: [previous]---->[current] */
program {
signal: "elm,state,prev,popped"; source: "elm";
action: SIGNAL_EMIT "elm,action,show,finished" "elm";
}
}
}
#undef BOTTOMMAX