platform/upstream/efl.git
6 years agoeolian: add event redefinition checks
Daniel Kolesa [Thu, 26 Apr 2018 14:07:28 +0000 (16:07 +0200)]
eolian: add event redefinition checks

As EFL fails build with this enabled, hide these behind the
EOLIAN_EVENT_REDEF_WARN environment variable for the time being.

6 years agoeolian: clear chash on each iteration during validation
Daniel Kolesa [Thu, 26 Apr 2018 13:45:12 +0000 (15:45 +0200)]
eolian: clear chash on each iteration during validation

This is necessary because inheritance trees need to be validated
individually for proper name conflict checks. It also prevents
eina_hash_add related errors.

6 years agoefl_mono: Names fixes after the big rename
Lauro Moura [Wed, 25 Apr 2018 01:46:04 +0000 (22:46 -0300)]
efl_mono: Names fixes after the big rename

Summary: Depends on D5997

Reviewers: felipealmeida

Reviewed By: felipealmeida

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5998

6 years agoefl_mono: Fix support for event arguments.
Lauro Moura [Thu, 19 Apr 2018 02:07:22 +0000 (23:07 -0300)]
efl_mono: Fix support for event arguments.

Summary:
Using a type visitor scheme similar to type and marshall_type, to ease
increasing coverage for other types if needed.

Also, changed the filter functions for those selections to check for the
full name of the regular_type_def, allowing a better specificity of the
name selections. This fixes things like "Eina.Error", which was
conflicting with Efl.Image.Load.Error when we compared only the last
name. It didn't appear before as Load.Error only appears in a
Efl.Image.Load event.
Depends on D5996

Reviewers: felipealmeida

Reviewed By: felipealmeida

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5997

6 years agoefl_mono: Actually test events by passing things by value and structs
Lauro Moura [Wed, 11 Apr 2018 23:01:38 +0000 (20:01 -0300)]
efl_mono: Actually test events by passing things by value and structs

Summary:
While the test events were declared as by value, the support code passed
by reference, which was - wrongly - the only implementation supported in
event code.

Also added test with Eina_Bool and structs (passed by pointer to events,
while not having the ptr modifier explicitly.
Depends on D5995

Reviewers: felipealmeida

Reviewed By: felipealmeida

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5996

6 years agoefl_mono: Move event generators to its own header.
Lauro Moura [Tue, 17 Apr 2018 00:44:27 +0000 (21:44 -0300)]
efl_mono: Move event generators to its own header.

Summary:
Making it easier to share code between self and inherited events.

During this move, the namespace and keyword headers were merged into the
name_helpers header.

Also added the first seed of a generic namespace reducer function,
to be used by other functions in later commits.
Depends on D5994

Reviewers: felipealmeida

Reviewed By: felipealmeida

Subscribers: segfaultxavi, cedric

Differential Revision: https://phab.enlightenment.org/D5995

6 years agoefl_mono: Instantiate parts in constructor in test
Lauro Moura [Mon, 16 Apr 2018 22:21:18 +0000 (19:21 -0300)]
efl_mono: Instantiate parts in constructor in test

Summary:
Don't try to lazily create the parts when getting them, as it would
modify the owner inside its @const Efl.Part.part.
Depends on D5993

Reviewers: felipealmeida

Reviewed By: felipealmeida

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5994

6 years agoefl_mono: Reorganize utility functions.
Lauro Moura [Mon, 16 Apr 2018 19:26:13 +0000 (16:26 -0300)]
efl_mono: Reorganize utility functions.

Summary:
Blacklist functions are all in the header/namespace blacklist.

Helper functions returning strings (names) are in the name_helpers
header. They act somewhat like "mini-generators".

Helpers.hh was left with other kind of helper functions (checks, etc)
that do not return strings.
Depends on D5992

Reviewers: felipealmeida

Reviewed By: felipealmeida

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5993

6 years agoefl_mono: Use PascalCase in events
Lauro Moura [Mon, 16 Apr 2018 15:36:51 +0000 (12:36 -0300)]
efl_mono: Use PascalCase in events

Summary:
To deal with events with the same name as some methods (Del, Invalidate,
etc), the suffix Evt was added.

Thus, now we use

obj.ButtonClickedEvt += callback;

Instead of

obj.BUTTON_CLICKED += cal

The argument classes use the same scheme, being called <Evt name>_Args.
Depends on D5991

Reviewers: felipealmeida

Reviewed By: felipealmeida

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5992

6 years agoeolian_mono: Register is not a kw in C#
Lauro Moura [Fri, 13 Apr 2018 03:24:57 +0000 (00:24 -0300)]
eolian_mono: Register is not a kw in C#

Summary: It was a reminiscing bit from the c++ generator.

Reviewers: felipealmeida

Reviewed By: felipealmeida

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5991

6 years agoefl theme: Replace legacy signal names with efl ui signal names
Jaehyun Cho [Thu, 26 Apr 2018 11:24:09 +0000 (20:24 +0900)]
efl theme: Replace legacy signal names with efl ui signal names

Replace legacy signal/source names with efl ui signal/source names.
e.g. From "elm,state,content,set" "elm" to "efl,state,content,set" "efl"

6 years agoefl_ui_win: fix the wrong bracket
Taehyub Kim [Thu, 26 Apr 2018 12:00:35 +0000 (21:00 +0900)]
efl_ui_win: fix the wrong bracket

Summary: efl_ui_win: fix the wrong bracket

Reviewers: Jaehyun_Cho

Reviewed By: Jaehyun_Cho

Subscribers: cedric, stefan

Differential Revision: https://phab.enlightenment.org/D6007

6 years agoefl_ui_timepicker: Fix to inherit efl ui theme
Jaehyun Cho [Thu, 26 Apr 2018 11:21:36 +0000 (20:21 +0900)]
efl_ui_timepicker: Fix to inherit efl ui theme

6 years agoefl_ui_datepicker: Fix to inherit efl ui theme
Jaehyun Cho [Thu, 26 Apr 2018 11:21:04 +0000 (20:21 +0900)]
efl_ui_datepicker: Fix to inherit efl ui theme

6 years agoefl theme: remove the elm legacy name of efl ui theme
Taehyub Kim [Thu, 26 Apr 2018 10:27:43 +0000 (19:27 +0900)]
efl theme: remove the elm legacy name of efl ui theme

Summary: remove the elm legacy name of efl ui theme

Test Plan: run elementary_test and test efl ui widget cases

Reviewers: Jaehyun_Cho, woohyun, cedric, raster, jpeg

Reviewed By: Jaehyun_Cho

Differential Revision: https://phab.enlightenment.org/D5934

6 years agoefl_ui_win: remove references to removed functions
Mike Blumenkrantz [Wed, 25 Apr 2018 16:22:40 +0000 (12:22 -0400)]
efl_ui_win: remove references to removed functions

Reviewers: ManMower

Reviewed By: ManMower

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D6004

6 years agoefl_ui_win: simplify checking theme version when adding frame
Mike Blumenkrantz [Wed, 25 Apr 2018 16:09:25 +0000 (12:09 -0400)]
efl_ui_win: simplify checking theme version when adding frame

Summary:
the win has no theme set, so this would always return null
Depends on D5956

Reviewers: cedric

Reviewed By: cedric

Differential Revision: https://phab.enlightenment.org/D5957

6 years agoelm_theme: use themes and extensions lists for _elm_theme_data_find
Mike Blumenkrantz [Tue, 17 Apr 2018 15:46:37 +0000 (11:46 -0400)]
elm_theme: use themes and extensions lists for _elm_theme_data_find

Differential Revision: https://phab.enlightenment.org/D5956

6 years agoelm_win: remove useless function
Mike Blumenkrantz [Wed, 25 Apr 2018 16:06:10 +0000 (12:06 -0400)]
elm_win: remove useless function

Summary: Depends on D5961

Reviewers: ManMower, cedric

Reviewed By: ManMower, cedric

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5945

6 years agoefl_ui_win: resolve race conditions with csd sizing on first show
Mike Blumenkrantz [Tue, 17 Apr 2018 18:55:35 +0000 (14:55 -0400)]
efl_ui_win: resolve race conditions with csd sizing on first show

there were some cases where frame geometry was being calculated/applied
strangely as a result of moving all of the layout calcs to pre-render.
enforcing a frame calc+resize resolves these issues

Differential Revision: https://phab.enlightenment.org/D5961

6 years agoefl_ui_win: remove show intercept function
Mike Blumenkrantz [Tue, 17 Apr 2018 18:52:19 +0000 (14:52 -0400)]
efl_ui_win: remove show intercept function

this should just be handled in the pre-render callback where the rest
of the calc for the window is done

also removes an unnecessary smart calc

Differential Revision: https://phab.enlightenment.org/D5960

6 years agoelm_win: freeze frame object edje until first pre-render
Mike Blumenkrantz [Mon, 16 Apr 2018 17:17:42 +0000 (13:17 -0400)]
elm_win: freeze frame object edje until first pre-render

this avoids a substantial number of unnecessary recalcs and halves the calltime
for elm_win_add

ref T6884

Differential Revision: https://phab.enlightenment.org/D5944

6 years agoeet: add counter for number of frees needed in each directory
Mike Blumenkrantz [Wed, 25 Apr 2018 15:59:12 +0000 (11:59 -0400)]
eet: add counter for number of frees needed in each directory

Summary:
further optimize the eet_shutdown case of closing files and avoid
endlessly looping over empty nodes
Depends on D5950

Reviewers: cedric

Reviewed By: cedric

Differential Revision: https://phab.enlightenment.org/D5951

6 years agoeet: simplify shutdown file closing
Mike Blumenkrantz [Mon, 16 Apr 2018 22:48:05 +0000 (18:48 -0400)]
eet: simplify shutdown file closing

no need to free mempool memory when the mempool is about to be freed,
and eet_clearcache duplicates existing shutdown functionality

Differential Revision: https://phab.enlightenment.org/D5950

6 years agoelm_win: set manual render and freeze frame object during deferred free
Mike Blumenkrantz [Mon, 16 Apr 2018 20:29:46 +0000 (16:29 -0400)]
elm_win: set manual render and freeze frame object during deferred free

ensure no recalcs of any kind occur on a deleted window

Differential Revision: https://phab.enlightenment.org/D5949

6 years agoels_cursor: avoid forcing a recursive canvas layout recalc when adding cursor
Mike Blumenkrantz [Mon, 16 Apr 2018 20:07:14 +0000 (16:07 -0400)]
els_cursor: avoid forcing a recursive canvas layout recalc when adding cursor

use deferred size hints to avoid unnecessary recalcs

Differential Revision: https://phab.enlightenment.org/D5948

6 years agoedje: remove recalc from content_get and text_get
Mike Blumenkrantz [Mon, 16 Apr 2018 20:05:40 +0000 (16:05 -0400)]
edje: remove recalc from content_get and text_get

neither of these functions should force a recalc under any circumstance
as they are simply returning pointers

@fix

Differential Revision: https://phab.enlightenment.org/D5947

6 years agoedje: make most edje_util.c functions obey freeze
Mike Blumenkrantz [Mon, 16 Apr 2018 18:55:12 +0000 (14:55 -0400)]
edje: make most edje_util.c functions obey freeze

a number of these functions have implicit recalcs, which is bad because
it's a pretty significant perf bottleneck, but it can't be improved
without breaking existing behavior expectations so this is probably the
best that can be done

ref T6884

Differential Revision: https://phab.enlightenment.org/D5946

6 years agoci: travis: allow for some failures in the matrix build
Stefan Schmidt [Wed, 25 Apr 2018 09:51:33 +0000 (11:51 +0200)]
ci: travis: allow for some failures in the matrix build

We want to make sure to have a stable and reliable subset of builds that
define if the build passed or not.
We also want to have builds which are more experimental. They give us a
good insight, but we are not yet ready to have them supported officially
as need-to-pass build. Namely the macOS build.

Another side effect of this change is that we reduce the critical build
matrix to 5 builds. The exact number of parallel ones we are allowed. With
fast_finish Travis will not wait for the other ones to finish before
setting the build status. This will allow us to have all builds in
parallel and not waiting for build #6 to be finished.

6 years agotests: eio: fix filename naming in two tests
Stefan Schmidt [Mon, 23 Apr 2018 13:50:51 +0000 (15:50 +0200)]
tests: eio: fix filename naming in two tests

The file names are derived from the test case names. These two seem to
have been overlooked when copying one test case to another.
I hoped this would fix my problems I have with the eio test suite
recently, but sadly it does not. Time to go on a git bisect tour.

6 years agoIntrudoce Efl Ui Date, Time interface and picker.
Woochan Lee [Wed, 25 Apr 2018 07:43:53 +0000 (16:43 +0900)]
Intrudoce Efl Ui Date, Time interface and picker.

Summary: Create datepicker, timepicker with one manager class(efl_datetime).

Test Plan: datepicker, timepicker sample.

Reviewers: herb, Jaehyun_Cho, woohyun, SanghyeonLee

Reviewed By: Jaehyun_Cho

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5871

6 years agoRevert "ecore_wl2: Add dma_buf lock/unlock ioctls"
Wonki Kim [Wed, 30 May 2018 07:23:37 +0000 (16:23 +0900)]
Revert "ecore_wl2: Add dma_buf lock/unlock ioctls"

This reverts commit e94479afc903a2edb92873c3e92d3ddb66e80f0d.

6 years agoefl_ui_focus_composition: permit anything but adapters and widgets
Marcel Hollerbach [Tue, 24 Apr 2018 22:02:55 +0000 (00:02 +0200)]
efl_ui_focus_composition: permit anything but adapters and widgets

a wildcard gfx object could bring focus to a evas object that has no
smart parent, and thus keyboard events are left at a place where they
cannot come away from.

clock was using this to give focus to the edit buttons. The edit buttons
are now wrapped into theire own adapter objects which makes them
focusable like before. However, the no keybindings or anything are taken
to react on the value.

6 years agogen****: just set focus to genlist / gengrid if no item is available
Marcel Hollerbach [Tue, 24 Apr 2018 20:41:39 +0000 (22:41 +0200)]
gen****: just set focus to genlist / gengrid if no item is available

Additional move requests are still redirected to the gen**** widget.

ref T6805

6 years agoelm_genlist: do not not right left top down in action_move
Marcel Hollerbach [Tue, 24 Apr 2018 20:18:35 +0000 (22:18 +0200)]
elm_genlist: do not not right left top down in action_move

the internal movement logic was resulting in wrong movements skipping
children items.

6 years agoefl_ui_focus_composition: add fields for manager and parent
Marcel Hollerbach [Mon, 23 Apr 2018 13:23:17 +0000 (15:23 +0200)]
efl_ui_focus_composition: add fields for manager and parent

the manager objects are build on the assertion that registered elements
are returning the manager they are registered on if
efl_ui_focus_object_manager_get is called.

6 years agoecore_wl2: reduce wayland display flushes
Derek Foreman [Fri, 6 Apr 2018 17:13:45 +0000 (12:13 -0500)]
ecore_wl2: reduce wayland display flushes

Clean up various places where we do flushes that we don't need to
because some immediately following action is going to cause a flush.
Also fix places where we flush without actually doing anything.

6 years agoecore_wl2: Share same region between input and opaque when possible
Derek Foreman [Thu, 5 Apr 2018 19:59:26 +0000 (14:59 -0500)]
ecore_wl2: Share same region between input and opaque when possible

If input and opaque region are the same (they usually are) we can use
the same region for both.

6 years agoecore_wl2: Refactor region create
Derek Foreman [Thu, 5 Apr 2018 18:01:22 +0000 (13:01 -0500)]
ecore_wl2: Refactor region create

Trivial refactor

6 years agoecore_wl2: Make ecore_wl2_window_false_commit more robust
Derek Foreman [Wed, 28 Mar 2018 15:07:46 +0000 (10:07 -0500)]
ecore_wl2: Make ecore_wl2_window_false_commit more robust

False commit when a commit is already pending is an error, but for safety
it should be a nop.

Currently it would overwrite the existing frame callback which could
cause problems on window destruction.

6 years agoee_wayland: Add some NULL checks
Derek Foreman [Mon, 26 Mar 2018 17:29:41 +0000 (12:29 -0500)]
ee_wayland: Add some NULL checks

These just protect against caller stupidity.  Double register or double
unregister shouldn't happen anyway.

6 years agoecore_wl2: Don't unmap buffers at unlock
Derek Foreman [Fri, 9 Mar 2018 22:12:44 +0000 (16:12 -0600)]
ecore_wl2: Don't unmap buffers at unlock

We should be using dmabuf sync ioctls instead of mmap/munmap every draw,
this makes that happen.  The surface code continues to do what its always
done, and map/unlock.

6 years agoecore_wl2: Add ERR for buffer lock errors
Derek Foreman [Fri, 9 Mar 2018 22:11:33 +0000 (16:11 -0600)]
ecore_wl2: Add ERR for buffer lock errors

Should never double lock or double unlock, this isn't refcounted, and
probably doesn't need to be.

6 years agoecore_wl2: Add dma_buf lock/unlock ioctls
Derek Foreman [Fri, 9 Mar 2018 20:33:13 +0000 (14:33 -0600)]
ecore_wl2: Add dma_buf lock/unlock ioctls

These should help with coherency later when we don't unmap for every
surface post.

6 years agoecore_wl2: Add lock/unlock function pointers to buffers
Derek Foreman [Fri, 9 Mar 2018 20:32:20 +0000 (14:32 -0600)]
ecore_wl2: Add lock/unlock function pointers to buffers

For backend specific lock/unlock behaviour

6 years agoecore_wl2: Add ecore_wl2_buffer_lock
Derek Foreman [Fri, 9 Mar 2018 20:31:25 +0000 (14:31 -0600)]
ecore_wl2: Add ecore_wl2_buffer_lock

Currently we're making mapping implicitly take a lock.

6 years agoefl_ui_win: Remove _elm_win_opaque_update
Derek Foreman [Mon, 12 Feb 2018 21:09:14 +0000 (15:09 -0600)]
efl_ui_win: Remove _elm_win_opaque_update

This stuff is all in the wayland ecore_evas now, so elm no longer needs
to handle it.

6 years agoefl_ui_win: Remove special wayland opaque_dirty stuff
Derek Foreman [Mon, 12 Feb 2018 21:05:21 +0000 (15:05 -0600)]
efl_ui_win: Remove special wayland opaque_dirty stuff

This isn't necessary anymore as ecore_evas handles it internally now.

6 years agoefl_ui_win: Explicitly set alpha for wayland cursors
Derek Foreman [Mon, 12 Feb 2018 20:47:40 +0000 (14:47 -0600)]
efl_ui_win: Explicitly set alpha for wayland cursors

Instead of depending on the backend figuring it out.

6 years agoecore_wl2: Reconfigure window on alpha set
Derek Foreman [Mon, 12 Feb 2018 20:43:55 +0000 (14:43 -0600)]
ecore_wl2: Reconfigure window on alpha set

This allows software renderers to reconfigure their buffers to actually
change whether alpha is present.

6 years agoecore_evas_wayland: Replace transparent_set with alpha_set
Derek Foreman [Mon, 12 Feb 2018 20:39:36 +0000 (14:39 -0600)]
ecore_evas_wayland: Replace transparent_set with alpha_set

transparent_set is a legacy path that should do exactly what alpha_set
does these days, so squash them into the same function.

6 years agoecore_evas_wayland: Remove content rectangle from engine data
Derek Foreman [Thu, 8 Feb 2018 20:37:57 +0000 (14:37 -0600)]
ecore_evas_wayland: Remove content rectangle from engine data

It's no longer used.

6 years agoefl_ui_win: stop updating wdata->content
Derek Foreman [Thu, 8 Feb 2018 20:37:35 +0000 (14:37 -0600)]
efl_ui_win: stop updating wdata->content

We don't need this because we calculate it in ecore_evas from the shadow
value and framespace.

6 years agoecore_evas_wayland: Calculate content size from shadow and framespace
Derek Foreman [Thu, 8 Feb 2018 20:36:16 +0000 (14:36 -0600)]
ecore_evas_wayland: Calculate content size from shadow and framespace

Instead of using wdata->content, calculate these values.

6 years agoecore_wl2_dmabuf: Properly reconfigure on surface alpha change
Derek Foreman [Tue, 20 Feb 2018 20:17:32 +0000 (14:17 -0600)]
ecore_wl2_dmabuf: Properly reconfigure on surface alpha change

When alpha changes we need to blow away all our buffers in reconfigure,
even if they're still the right dimensions.  Otherwise we can end up
rendering to an XRGB buffer when we wanted to use ARGB and we won't have
proper transparency.

6 years agoecore_wl2: Add ecore_wl2_surface_alpha_get query
Derek Foreman [Tue, 20 Feb 2018 20:16:01 +0000 (14:16 -0600)]
ecore_wl2: Add ecore_wl2_surface_alpha_get query

We'll need this for some surface modules to properly handle alpha changes

6 years agoecore_wl2: Add alpha to reconfigure
Derek Foreman [Thu, 8 Feb 2018 17:56:30 +0000 (11:56 -0600)]
ecore_wl2: Add alpha to reconfigure

Currently we only ever make wayland windows with alpha, this is a step
towards changing that.

6 years agoEfl.Page.*_* (From Efl.Page.*.*)
Xavi Artigas [Tue, 24 Apr 2018 13:55:25 +0000 (15:55 +0200)]
Efl.Page.*_* (From Efl.Page.*.*)

Including Efl.Page.Indicator.* and Efl.Page.Transition.*

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Navigation_Bar_Part* (From Efl.Ui.Navigation_Bar.Part*)
Xavi Artigas [Fri, 20 Apr 2018 13:56:29 +0000 (15:56 +0200)]
Efl.Ui.Navigation_Bar_Part* (From Efl.Ui.Navigation_Bar.Part*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoElm.Toolbar_* (from Elm.Toolbar.*)
Xavi Artigas [Fri, 13 Apr 2018 10:53:01 +0000 (12:53 +0200)]
Elm.Toolbar_* (from Elm.Toolbar.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Focus.Manager_Window_Root (from Efl.Ui.Focus.Manager.Window_Root)
Xavi Artigas [Fri, 13 Apr 2018 10:02:50 +0000 (12:02 +0200)]
Efl.Ui.Focus.Manager_Window_Root (from Efl.Ui.Focus.Manager.Window_Root)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Dnd_Container (from Efl.Ui.Dnd.Container)
Xavi Artigas [Fri, 13 Apr 2018 09:56:48 +0000 (11:56 +0200)]
Efl.Ui.Dnd_Container (from Efl.Ui.Dnd.Container)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Win_* (from Efl.Ui.Win.*)
Xavi Artigas [Fri, 13 Apr 2018 09:45:56 +0000 (11:45 +0200)]
Efl.Ui.Win_* (from Efl.Ui.Win.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Widget_* (from Efl.Ui.Widget.*)
Xavi Artigas [Fri, 13 Apr 2018 09:35:39 +0000 (11:35 +0200)]
Efl.Ui.Widget_* (from Efl.Ui.Widget.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.View_List_* (from Efl.Ui.View.List.*)
Xavi Artigas [Fri, 13 Apr 2018 09:31:28 +0000 (11:31 +0200)]
Efl.Ui.View_List_* (from Efl.Ui.View.List.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Focus.Parent_Provider_* (from Efl.Ui.Focus.Parent_Provider.*)
Xavi Artigas [Fri, 13 Apr 2018 09:21:35 +0000 (11:21 +0200)]
Efl.Ui.Focus.Parent_Provider_* (from Efl.Ui.Focus.Parent_Provider.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Focus.Manager_* (from Efl.Ui.Focus.Manager.*)
Xavi Artigas [Fri, 13 Apr 2018 09:20:40 +0000 (11:20 +0200)]
Efl.Ui.Focus.Manager_* (from Efl.Ui.Focus.Manager.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Net.Socket_* (from Efl.Net.Socket.*)
Xavi Artigas [Fri, 13 Apr 2018 08:58:29 +0000 (10:58 +0200)]
Efl.Net.Socket_* (from Efl.Net.Socket.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Net.Server_* (from Efl.Net.Server.*)
Xavi Artigas [Fri, 13 Apr 2018 08:54:41 +0000 (10:54 +0200)]
Efl.Net.Server_* (from Efl.Net.Server.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Net.Dialer_* (from Efl.Net.Dialer.*)
Xavi Artigas [Fri, 13 Apr 2018 08:45:09 +0000 (10:45 +0200)]
Efl.Net.Dialer_* (from Efl.Net.Dialer.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Model_* (from Efl.Model.*)
Xavi Artigas [Fri, 13 Apr 2018 08:21:46 +0000 (10:21 +0200)]
Efl.Model_* (from Efl.Model.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Loop_* (from Efl.Loop.*)
Xavi Artigas [Thu, 12 Apr 2018 11:56:02 +0000 (13:56 +0200)]
Efl.Loop_* (from Efl.Loop.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Interpolator_* (from Efl.Interpolator.*)
Xavi Artigas [Thu, 12 Apr 2018 11:24:16 +0000 (13:24 +0200)]
Efl.Interpolator_* (from Efl.Interpolator.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Canvas.Gesture_* (from Efl.Canvas.Gesture.*)
Xavi Artigas [Thu, 12 Apr 2018 11:18:20 +0000 (13:18 +0200)]
Efl.Canvas.Gesture_* (from Efl.Canvas.Gesture.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Access.Text_* (from Efl.Access.Text.*)
Xavi Artigas [Thu, 12 Apr 2018 09:26:37 +0000 (11:26 +0200)]
Efl.Access.Text_* (from Efl.Access.Text.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Textpath_* (from Efl.Ui.Textpath.*)
Xavi Artigas [Mon, 9 Apr 2018 15:23:34 +0000 (17:23 +0200)]
Efl.Ui.Textpath_* (from Efl.Ui.Textpath.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Slider_Part_Indicator (from Efl.Ui.Slider.Part_Indicator)
Xavi Artigas [Mon, 9 Apr 2018 13:49:57 +0000 (15:49 +0200)]
Efl.Ui.Slider_Part_Indicator (from Efl.Ui.Slider.Part_Indicator)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Scrollable_Interactive (from Efl.Ui.Scrollable.Interactive)
Xavi Artigas [Mon, 9 Apr 2018 13:38:19 +0000 (15:38 +0200)]
Efl.Ui.Scrollable_Interactive (from Efl.Ui.Scrollable.Interactive)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Progressbar_Part (from Efl.Ui.Progressbar.Part)
Xavi Artigas [Mon, 9 Apr 2018 13:36:59 +0000 (15:36 +0200)]
Efl.Ui.Progressbar_Part (from Efl.Ui.Progressbar.Part)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Popup_* (from Efl.Ui.Popup.*)
Xavi Artigas [Mon, 9 Apr 2018 13:31:05 +0000 (15:31 +0200)]
Efl.Ui.Popup_* (from Efl.Ui.Popup.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Panes_Part (from Efl.Ui.Panes.Part)
Xavi Artigas [Mon, 9 Apr 2018 11:50:52 +0000 (13:50 +0200)]
Efl.Ui.Panes_Part (from Efl.Ui.Panes.Part)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Multibuttonentry_Part (from Efl.Ui.Multibuttonentry.Part)
Xavi Artigas [Mon, 9 Apr 2018 11:41:55 +0000 (13:41 +0200)]
Efl.Ui.Multibuttonentry_Part (from Efl.Ui.Multibuttonentry.Part)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Layout.Part_* (from Efl.Ui.Layout.Part.*)
Xavi Artigas [Mon, 9 Apr 2018 11:40:14 +0000 (13:40 +0200)]
Efl.Ui.Layout.Part_* (from Efl.Ui.Layout.Part.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Layout.Object (from Efl.Ui.Layout)
Xavi Artigas [Fri, 6 Apr 2018 16:15:31 +0000 (18:15 +0200)]
Efl.Ui.Layout.Object (from Efl.Ui.Layout)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Image_* (from Efl.Ui.Image.*)
Xavi Artigas [Fri, 6 Apr 2018 14:52:29 +0000 (16:52 +0200)]
Efl.Ui.Image_* (from Efl.Ui.Image.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Flip_* (from Efl.Ui.Flip.*)
Xavi Artigas [Fri, 6 Apr 2018 14:36:12 +0000 (16:36 +0200)]
Efl.Ui.Flip_* (from Efl.Ui.Flip.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Clock_Type (from Efl.Ui.Clock.Type)
Xavi Artigas [Fri, 6 Apr 2018 14:34:37 +0000 (16:34 +0200)]
Efl.Ui.Clock_Type (from Efl.Ui.Clock.Type)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Ui.Calendar_* (from Efl.Ui.Calendar.*)
Xavi Artigas [Fri, 6 Apr 2018 14:33:44 +0000 (16:33 +0200)]
Efl.Ui.Calendar_* (from Efl.Ui.Calendar.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Text_* (from Efl.Text.*)
Xavi Artigas [Fri, 6 Apr 2018 11:30:40 +0000 (13:30 +0200)]
Efl.Text_* (from Efl.Text.*)

Including:
Efl.Text.Cursor_* (from Efl.Text.Cursor.Cursor_*)
Efl.Text.Font_* (from Efl.Text.Font.*)
Efl.Text.Format_* (from Efl.Text.Format.*)
Efl.Text.Style_* (from Efl.Text.Style.*)
Efl.Ui.Text_* (from Efl.Ui.Text.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Selection_Manager (from Efl.Selection.Manager)
Xavi Artigas [Fri, 6 Apr 2018 10:29:14 +0000 (12:29 +0200)]
Efl.Selection_Manager (from Efl.Selection.Manager)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Pack_* (from Efl.Pack.*)
Xavi Artigas [Fri, 6 Apr 2018 10:28:01 +0000 (12:28 +0200)]
Efl.Pack_* (from Efl.Pack.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Object_Override (from Efl.Object.Override)
Xavi Artigas [Fri, 6 Apr 2018 10:08:45 +0000 (12:08 +0200)]
Efl.Object_Override (from Efl.Object.Override)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Net.Socket.Ssl_Error.* (from Efl.Net.Socket.Ssl.Error.*)
Xavi Artigas [Fri, 6 Apr 2018 10:01:10 +0000 (12:01 +0200)]
Efl.Net.Socket.Ssl_Error.* (from Efl.Net.Socket.Ssl.Error.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Net.Server.Udp_Client (from Efl.Net.Server.Udp.Client)
Xavi Artigas [Fri, 6 Apr 2018 09:59:10 +0000 (11:59 +0200)]
Efl.Net.Server.Udp_Client (from Efl.Net.Server.Udp.Client)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Net.Dialer_*_ (from Efl.Net.Dialer_*.)
Xavi Artigas [Fri, 6 Apr 2018 09:57:35 +0000 (11:57 +0200)]
Efl.Net.Dialer_*_ (from Efl.Net.Dialer_*.)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Net.Control.Technology_Type (from Efl.Net.Control.Technology.Type)
Xavi Artigas [Fri, 6 Apr 2018 09:30:59 +0000 (11:30 +0200)]
Efl.Net.Control.Technology_Type (from Efl.Net.Control.Technology.Type)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Net.Control.Agent_Request_Input_* (from Efl.Net.Control.Agent_Request_Input.*)
Xavi Artigas [Fri, 6 Apr 2018 09:23:41 +0000 (11:23 +0200)]
Efl.Net.Control.Agent_Request_Input_* (from Efl.Net.Control.Agent_Request_Input.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Net.Control.Access_Point_* (from Efl.Net.Control.Access_Point.*)
Xavi Artigas [Fri, 6 Apr 2018 09:16:27 +0000 (11:16 +0200)]
Efl.Net.Control.Access_Point_* (from Efl.Net.Control.Access_Point.*)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Net.Control.Manager (from Efl.Net.Control)
Xavi Artigas [Fri, 6 Apr 2018 09:06:56 +0000 (11:06 +0200)]
Efl.Net.Control.Manager (from Efl.Net.Control)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>
6 years agoEfl.Io.*_Fd (from Efl.Io.*.Fd)
Xavi Artigas [Thu, 5 Apr 2018 17:18:07 +0000 (19:18 +0200)]
Efl.Io.*_Fd (from Efl.Io.*.Fd)

Ref https://phab.enlightenment.org/T6847

Reviewed-by: Cedric Bail <cedric@osg.samsung.com>