theme - ibar - emit show doen signal for ibar menu

This commit is contained in:
Carsten Haitzler 2014-01-18 19:52:24 +09:00
parent bf3f4781c7
commit 852eface62
2 changed files with 9 additions and 4 deletions

View File

@ -73,7 +73,7 @@ group "Elm_Config" struct {
value "year_min" int: 2;
value "year_max" int: 137;
value "softcursor_mode" uchar: 0;
value "auto_norender_withdrawn" uchar: 1;
value "auto_norender_withdrawn" uchar: 0;
value "auto_norender_iconified_same_as_withdrawn" uchar: 0;
value "auto_flush_withdrawn" uchar: 1;
value "auto_dump_withdrawn" uchar: 1;

View File

@ -215,21 +215,26 @@ group { name: "e/modules/ibar/menu";
target: "sizer";
target: "clip";
}
program { signal: "e,action,show"; source: "e";
action: STATE_SET "default" 0.0;
target: "sizer";
target: "clip";
transition: DECELERATE 0.2;
transition: SINUSOIDAL 0.2;
after: "show2";
}
program { name: "show2";
action: SIGNAL_EMIT "e,action,show,done" "";
}
program { signal: "e,action,hide"; source: "e";
action: STATE_SET "hidden" 0.0;
target: "sizer";
target: "clip";
transition: ACCELERATE 0.2;
transition: SINUSOIDAL 0.2;
after: "hide2";
}
program { name: "hide2";
in: 0.2 0.0;
action: SIGNAL_EMIT "e,action,hide,done" "";
}
}