diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2018-05-11 17:20:40 +0200 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@samsung.com> | 2018-05-19 01:42:26 +0200 |
commit | 35bbedc96f158885bf36c741ec402a97a02f52f0 (patch) | |
tree | f2891f942765a3264973f7141215b9029350d665 /src/lib/efl/interfaces/efl_ui_zoom.eo | |
parent | 6fdc3794eb933ed28d29a0c8d1b206ddab61b836 (diff) |
efl: Add missing event types
Summary:
All events must have a type now, otherwise bindings don't know how to handle
the event_info field.
Most of the missing event types were actually "void" (no event_info present).
Some struct definitions had to be moved to eo instead of h files, so they
are available to bindings. Some have not, and are marked with FIXME.
Some namespaces have been fixed (like Efl_Event_Cb -> Efl.Event_Cb).
In general, there are hundreds of changed files, but mostly to add a type which
was not present before, so there's no harm done.
Also, A lot of FIXMEs have been added which should be, like, fixed.
For example, some events can send different types of event_info, which is
very inconvenient (and error prone).
Test Plan: make with c# bindings works, make check and make examples work too.
Reviewers: cedric, q66, lauromoura
Subscribers: zmike
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D6169
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/interfaces/efl_ui_zoom.eo | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/efl/interfaces/efl_ui_zoom.eo b/src/lib/efl/interfaces/efl_ui_zoom.eo index 8c602a455f..4618070676 100644 --- a/src/lib/efl/interfaces/efl_ui_zoom.eo +++ b/src/lib/efl/interfaces/efl_ui_zoom.eo | |||
@@ -93,8 +93,8 @@ interface Efl.Ui.Zoom () | |||
93 | } | 93 | } |
94 | } | 94 | } |
95 | events { | 95 | events { |
96 | zoom,start; [[Called when zooming started]] | 96 | zoom,start: void; [[Called when zooming started]] |
97 | zoom,stop; [[Called when zooming stopped]] | 97 | zoom,stop: void; [[Called when zooming stopped]] |
98 | zoom,change; [[Called when zooming changed]] | 98 | zoom,change: void; [[Called when zooming changed]] |
99 | } | 99 | } |
100 | } | 100 | } |