summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHosang Kim <hosang12.kim@samsung.com>2017-04-04 15:05:05 +0900
committerkim hosang <hosang12.kim@samsung.com>2017-04-03 23:07:24 -0700
commitd8d472ea24b29cd67d08e1365395542ffb4c66bf (patch)
tree89533bfb425a1eb00469313ef6082d763114f60d
parent3f58e1094c8a695b4f020be807db208687df758a (diff)
downloadefl-theme-tizen-mobile-d8d472ea24b29cd67d08e1365395542ffb4c66bf.tar.gz
efl-theme-tizen-mobile-d8d472ea24b29cd67d08e1365395542ffb4c66bf.tar.bz2
efl-theme-tizen-mobile-d8d472ea24b29cd67d08e1365395542ffb4c66bf.zip
conform: add new signal for attach panel.
Add two signal for switching mode of attach panel without animation. "elm,state,attach_panel,show,full,directly" "elm,state,attach_panel,show,half,directly" Change-Id: I07a9cc4a1bd890f5387b235257ced0c2d67e2516
-rw-r--r--mobile/widgets/conform.edc12
1 files changed, 12 insertions, 0 deletions
diff --git a/mobile/widgets/conform.edc b/mobile/widgets/conform.edc
index a7bbde30..dd4e2d0f 100644
--- a/mobile/widgets/conform.edc
+++ b/mobile/widgets/conform.edc
@@ -304,6 +304,12 @@ group { name: "elm/conformant/base/default";
target: "elm.swallow.attach_panel";
transition: DECELERATE ATTACH_PANEL_TRANS_TIME;
}
+ program { name: "show_full_attach_panel_directly";
+ signal: "elm,state,attach_panel,show,full,directly";
+ source: "";
+ action: STATE_SET "full" 0.0;
+ target: "elm.swallow.attach_panel";
+ }
program { name: "show_half_attach_panel";
signal: "elm,state,attach_panel,show,half";
source: "";
@@ -317,6 +323,12 @@ group { name: "elm/conformant/base/default";
target: "elm.swallow.attach_panel";
transition: DECELERATE ATTACH_PANEL_TRANS_TIME;
}
+ program { name: "show_half_attach_panel_directly";
+ signal: "elm,state,attach_panel,show,half,directly";
+ source: "";
+ action: STATE_SET "half" 0.0;
+ target: "elm.swallow.attach_panel";
+ }
program { name: "show_attach_panel_started";
signal: "elm,state,attach_panel,show,started";
source: "";