summaryrefslogtreecommitdiff
path: root/src/lib/efl
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2020-01-26 10:22:55 +0100
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2020-02-19 16:34:02 +0100
commitc9c540b9df90f5b2867da3b5c4dcb69310f89623 (patch)
tree7b2b32db3b6ee5bc63760a69cf386f87e12675cd /src/lib/efl
parentd2e1d430a8a5c62b5ec3a0449ae496af1dbd8861 (diff)
downloadefl-c9c540b9df90f5b2867da3b5c4dcb69310f89623.tar.gz
efl_ui_draggable: move these events back to legacy
they are not used yet in efl.ui. namespace, and they are needed for different events. Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Differential Revision: https://phab.enlightenment.org/D11196
Diffstat (limited to 'src/lib/efl')
-rw-r--r--src/lib/efl/interfaces/efl_ui_draggable.eo12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/lib/efl/interfaces/efl_ui_draggable.eo b/src/lib/efl/interfaces/efl_ui_draggable.eo
index 91c74202ad..0b4139958d 100644
--- a/src/lib/efl/interfaces/efl_ui_draggable.eo
+++ b/src/lib/efl/interfaces/efl_ui_draggable.eo
@@ -22,16 +22,4 @@ interface @beta Efl.Ui.Draggable
}
}
}
-
- events {
- /* FIXME: Explain what is the object passed through the event_infos */
- drag: Efl.Object; [[Called when drag operation starts]]
- drag,start: void; [[Called when drag started]]
- drag,stop: Efl.Object; [[Called when drag stopped]]
- drag,end: void; [[Called when drag operation ends]]
- drag,start,up: Efl.Object; [[Called when drag starts into up direction]]
- drag,start,down: Efl.Object; [[Called when drag starts into down direction]]
- drag,start,right: Efl.Object; [[Called when drag starts into right direction]]
- drag,start,left: Efl.Object; [[Called when drag starts into left direction]]
- }
}