summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_hover_eo.c
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2019-05-14 15:50:15 -0400
committerMike Blumenkrantz <zmike@samsung.com>2019-05-14 15:50:15 -0400
commit64923b8db15fdaa25583824123e56f3c1083ac45 (patch)
treed60ba2be3c05277bab5749ce2540895178090cee /src/lib/elementary/elm_hover_eo.c
parent7f907ecd9d6152753619967b3b7e2033f69abb28 (diff)
downloadefl-64923b8db15fdaa25583824123e56f3c1083ac45.tar.gz
efl_ui: move clickable from efl to efl_ui
Summary: efl_ui_clickable is now a mixin. The mixin now brings two APIs the press and unpress API can be used to tell the implementation the state of the presses. Within the implementation the calls to press / unpress are then converted to longpress / clicked events. Reviewers: zmike, segfaultxavi, cedric Reviewed By: zmike Subscribers: #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D8820
Diffstat (limited to 'src/lib/elementary/elm_hover_eo.c')
-rw-r--r--src/lib/elementary/elm_hover_eo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_hover_eo.c b/src/lib/elementary/elm_hover_eo.c
index 5ca798a132..b5a1b20208 100644
--- a/src/lib/elementary/elm_hover_eo.c
+++ b/src/lib/elementary/elm_hover_eo.c
@@ -92,6 +92,6 @@ static const Efl_Class_Description _elm_hover_class_desc = {
NULL
};
-EFL_DEFINE_CLASS(elm_hover_class_get, &_elm_hover_class_desc, EFL_UI_LAYOUT_BASE_CLASS, EFL_UI_FOCUS_LAYER_MIXIN, EFL_UI_CLICKABLE_INTERFACE, EFL_ACCESS_WIDGET_ACTION_MIXIN, EFL_UI_LEGACY_INTERFACE, NULL);
+EFL_DEFINE_CLASS(elm_hover_class_get, &_elm_hover_class_desc, EFL_UI_LAYOUT_BASE_CLASS, EFL_UI_FOCUS_LAYER_MIXIN, EFL_UI_CLICKABLE_MIXIN, EFL_ACCESS_WIDGET_ACTION_MIXIN, EFL_UI_LEGACY_INTERFACE, NULL);
#include "elm_hover_eo.legacy.c"