Add style "fade_invisible" to elm_panel. This style create an invisible panel (no image, we only see the content) and the transition is a fading

SVN revision: 49657
This commit is contained in:
Jonathan Atton 2010-06-12 16:05:48 +00:00
parent 66605560ad
commit 0b41132d70
2 changed files with 141 additions and 59 deletions

View File

@ -18830,6 +18830,87 @@ collections {
}
}
}
group { name: "elm/pager/base/fade_invisible";
data.item: "onshow" "raise";
// other options
// data.item: "onhide" "lower";
// data.item: "onshow" "lower";
parts {
part { name: "clip";
type: RECT;
mouse_events: 0;
description { state: "default" 0.0;
rel1 {
offset: -9999 -9999;
}
rel2 {
offset: 9999 9999;
}
color: 255 255 255 255;
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
}
description { state: "hidden" 0.0;
inherit: "default" 0.0;
color: 255 255 255 0;
visible: 0;
}
}
part { name: "elm.swallow.content";
type: SWALLOW;
clip_to: "clip";
description { state: "default" 0.0;
rel1 {
offset: 8 8;
}
rel2 {
offset: -9 -9;
}
}
}
}
programs {
program { name: "show_start";
signal: "elm,action,show";
source: "elm";
action: STATE_SET "hidden" 0.0;
target: "clip";
after: "show_start2";
}
program { name: "show_start2";
action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.5;
target: "clip";
after: "show_end";
}
program { name: "show_end";
action: SIGNAL_EMIT "elm,action,show,finished" "";
}
program { name: "hide_start";
signal: "elm,action,hide";
source: "elm";
action: STATE_SET "visible" 0.0;
target: "clip";
after: "hide_start2";
}
program { name: "hide_start2";
action: STATE_SET "hidden" 0.0;
transition: DECELERATE 0.5;
target: "clip";
after: "hide_end";
}
program { name: "hide_end";
action: SIGNAL_EMIT "elm,action,hide,finished" "";
}
program { name: "reset";
signal: "elm,action,reset";
source: "elm";
action: STATE_SET "default" 0.0;
target: "clip";
}
}
}

View File

@ -1171,6 +1171,7 @@ extern "C" {
* default
* fade
* fade_translucide
* fade_invisible
*/
typedef struct _Elm_Slideshow_Item_Class Elm_Slideshow_Item_Class;