summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaehyub Kim <taehyub.kim@samsung.com>2017-10-26 16:32:58 +0900
committerJaehyun Cho <jae_hyun.cho@samsung.com>2017-11-16 17:24:30 +0900
commit50731e554edc849cc2954d03b02863bb2590e0ec (patch)
tree5addbfdb6265fb54521969ae81d8a1499082b205
parente3b87ea10acdba91731eb0b467cb869b4ba43ed1 (diff)
downloadefl-50731e554edc849cc2954d03b02863bb2590e0ec.tar.gz
efl_ui_popup: add timeout signal
Summary: add the timeout signal for user notification Reviewers: Jaehyun_Cho, jpeg, cedric, Blackmole, thiepha, woohyun Reviewed By: Jaehyun_Cho Differential Revision: https://phab.enlightenment.org/D5372
-rw-r--r--src/lib/elementary/efl_ui_popup.c1
-rw-r--r--src/lib/elementary/efl_ui_popup.eo1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/elementary/efl_ui_popup.c b/src/lib/elementary/efl_ui_popup.c
index 7d59be8a7c..c8f4b56092 100644
--- a/src/lib/elementary/efl_ui_popup.c
+++ b/src/lib/elementary/efl_ui_popup.c
@@ -131,6 +131,7 @@ static Eina_Bool
_timer_cb(void *data)
{
Eo *popup = data;
+ efl_event_callback_call(popup, EFL_UI_POPUP_EVENT_TIMEOUT, NULL);
efl_del(popup);
return ECORE_CALLBACK_CANCEL;
diff --git a/src/lib/elementary/efl_ui_popup.eo b/src/lib/elementary/efl_ui_popup.eo
index 8f2a23778d..39be8faec2 100644
--- a/src/lib/elementary/efl_ui_popup.eo
+++ b/src/lib/elementary/efl_ui_popup.eo
@@ -67,5 +67,6 @@ class Efl.Ui.Popup(Efl.Ui.Layout)
}
events {
bg,clicked; [[This is called whenever the user click background of popup.]]
+ timeout; [[This is called when popup times out.]]
}
}