notify.edc: added show animation for center style.

This commit is contained in:
Daniel Juyung Seo 2013-07-12 07:28:44 +09:00
parent d6cfb5122b
commit ecc4d192a3
1 changed files with 27 additions and 0 deletions

View File

@ -112,6 +112,7 @@ group { name: "elm/notify/center/default";
type: RECT;
mouse_events: 0;
repeat_events: 1;
clip_to: "clipper";
description { state: "default" 0.0;
color: 0 0 0 0;
rel1.relative: 0.0 0.0;
@ -120,6 +121,7 @@ group { name: "elm/notify/center/default";
}
part { name: "pop";
mouse_events: 1;
clip_to: "clipper";
description { state: "default" 0.0;
rel1.to: "elm.swallow.content";
rel1.offset: -5 -5;
@ -133,13 +135,38 @@ group { name: "elm/notify/center/default";
}
part { name: "elm.swallow.content";
type: SWALLOW;
clip_to: "clipper";
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
}
}
part { name: "clipper";
type: RECT;
description { state: "default" 0.0;
color: 0 0 0 0 ;
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
color: 255 255 255 255;
}
}
}
programs {
program { name: "show";
signal: "show";
action: STATE_SET "visible" 0.0;
target: "clipper";
transition: LINEAR 0.5;
}
program { name: "hide";
signal: "hide";
action: STATE_SET "default" 0.0;
target: "clipper";
}
}
}
group { name: "elm/notify/bottom/default";
//this group is a design similar to the inwin group
images {