platform/upstream/efl.git
7 years agoedje: pass whole text to IMF in case of selection
Jihoon Kim [Thu, 8 Jun 2017 08:02:35 +0000 (17:02 +0900)]
edje: pass whole text to IMF in case of selection

Summary:
This patch partially reverts D2951.
_edje_entry_imf_retrieve_surrounding_cb() function has to pass
whole text nearby the entry's cursor. If IMF needs to ignore
selected text when the entry has selection, IMF can check
selected text by calling _edje_entry_imf_retrieve_selection_cb().
So, we don't need remove selected text before passing it to IMF.
@fix

Test Plan: N/A

Reviewers: woohyun, jihoon, subodh6129

Reviewed By: subodh6129

Subscribers: cedric, jpeg

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

7 years agoefl.gfx.map: support for map points as multiples of 4
Thiep Ha [Thu, 8 Jun 2017 06:32:09 +0000 (15:32 +0900)]
efl.gfx.map: support for map points as multiples of 4

This patch adds support for map with more than 4 points.
However, we only support points with multiples of 4.
This also adds efl_gfx_map_point_count_set/get APIs to
set number of points.

@feature

7 years agoevas_map: support map with number of points as multiples of 4
Thiep Ha [Thu, 8 Jun 2017 06:11:21 +0000 (15:11 +0900)]
evas_map: support map with number of points as multiples of 4

Currently, in evas map, we only support map with 4 points.
This patch adds support for map with number of points as
multiples of 4.

@feature

7 years agoedje: Fix warnings introduced in recent fix
Jean-Philippe Andre [Thu, 8 Jun 2017 07:04:33 +0000 (16:04 +0900)]
edje: Fix warnings introduced in recent fix

See b9b0177d5e0f2b3a03f77e04c64de534b2c786ac
See d3420cd35c692a808c0a626c8e54a0c85af3a4d4

7 years agoelm_panel: set hidden property when panel is close/open
Sungtaek Hong [Thu, 8 Jun 2017 07:00:20 +0000 (16:00 +0900)]
elm_panel: set hidden property when panel is close/open

Summary:
 - elm_panel has a property named hidden which stores
   open/close status.
 - This is updated when:
    1. bring_in animation is done(anim_stop_cb).
    2. mouse_up on panel.
    3. API is called. (elm_panel_toggle, elm_panel_hidden_set)
 - In case 3, API changes hidden, and starts bring_in animation
   which will call anim_stop_cb() which will update hidden again.
 - If bring_in animation is canceled (eg: sizing_eval),
   anim_stop_cb will be called and calculate hidden status
   which will not guarantee updated hidden state by APIs.

Test Plan:
   1. Call any APIs which will call elm_layout_sizing_eval(panel)
      right after calling elm_panel_toggle()/elm_panel_hidden_set().
   2. Delete content of panel during "toggled" cb.

Reviewers: jpeg, eunue, cedric

Subscribers: conr2d, cedric, jpeg

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

Signed-off-by: Jean-Philippe Andre <jp.andre@samsung.com>
7 years agoevas - font dir fonts.alias - limit alias parse length
Carsten Haitzler (Rasterman) [Thu, 8 Jun 2017 05:48:08 +0000 (14:48 +0900)]
evas - font dir fonts.alias - limit alias parse length

a rouge fonts.alias file in a font dir/path could contain long strings
that buffers dont have space for, so limit length of string.

@fix

7 years agoelm spinner - handle more digits for format string + handle invalid fmt
Carsten Haitzler (Rasterman) [Thu, 8 Jun 2017 05:34:50 +0000 (14:34 +0900)]
elm spinner - handle more digits for format string + handle invalid fmt

handles format strings like %0.234567f even tho before it was just %2f
- single digit after . ... not that it's useful handling more...

@fix

7 years agoevas xpm loader - add more rgb.txt file locations...
Carsten Haitzler (Rasterman) [Thu, 8 Jun 2017 03:11:43 +0000 (12:11 +0900)]
evas xpm loader - add more rgb.txt file locations...

2 more. /etc/X11/rgb.txt /usr/share/vim/vim80/rgb.txt  ...what i do notice
is that this file seems to have vanished from modern systems... so we'll have
lots of un-fun loading old xpm's with colornames if we cant figure out what
color names map to what colors...

7 years agoedje_cc handle line too long for buffers
Carsten Haitzler (Rasterman) [Thu, 8 Jun 2017 03:01:38 +0000 (12:01 +0900)]
edje_cc handle line too long for buffers

if a line from the cpp processor is too long (more than 4k) then abort
compilation as something is wrong asnd our buffers can't handle it
anyway.

@fix

7 years agoelm_prefs_cc: handle line too long for buffers
Carsten Haitzler (Rasterman) [Thu, 8 Jun 2017 02:54:15 +0000 (11:54 +0900)]
elm_prefs_cc: handle line too long for buffers

if a line from the cpp processor is too long (more than 4k) then abort
compilation as something is wrong asnd our buffers can't handle it
anyway.

@fix

7 years agoevas-gl-drm: Fix potential memory leak
Chris Michael [Wed, 7 Jun 2017 16:38:12 +0000 (12:38 -0400)]
evas-gl-drm: Fix potential memory leak

If/When we exit _evas_outbuf_egl_setup function, we should be freeing
the allocated cfgs variable else we leak it.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoecore-wl2: Use output height when calculating dpi
Chris Michael [Wed, 7 Jun 2017 15:21:19 +0000 (11:21 -0400)]
ecore-wl2: Use output height when calculating dpi

When calculating output dpi, we should also be considering output
height in the calculation.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoecore-wl2: Add API function to set surface buffer transform
Chris Michael [Wed, 7 Jun 2017 15:08:33 +0000 (11:08 -0400)]
ecore-wl2: Add API function to set surface buffer transform

Small patch to add an API function which can be called to set a buffer
transformation on a given window.

@feature

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoecore-wl2: Add API function to return an output transformation
Chris Michael [Wed, 7 Jun 2017 14:59:02 +0000 (10:59 -0400)]
ecore-wl2: Add API function to return an output transformation

Small patch to add a new API function that can be used to retrieve the
current transform value for a given output.

@feature

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoecore-wl2: Add missing doxygen groups for documentation
Chris Michael [Wed, 7 Jun 2017 14:56:36 +0000 (10:56 -0400)]
ecore-wl2: Add missing doxygen groups for documentation

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoecore-wl2: Add API function to find an output for given window
Chris Michael [Wed, 7 Jun 2017 14:46:44 +0000 (10:46 -0400)]
ecore-wl2: Add API function to find an output for given window

Small patch which adds an API function that can be used to find the
output where a given window resides.

@feature

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoecore-wl2: Add event for output transformation
Chris Michael [Wed, 7 Jun 2017 14:33:54 +0000 (10:33 -0400)]
ecore-wl2: Add event for output transformation

Some servers may need to do special animations or other effects when
an output transformation happens, so raise an event in the output
geometry callback when this happens.

@feature

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoecore-evas-wl: Don't check window visibility on raising
Chris Michael [Wed, 7 Jun 2017 14:07:17 +0000 (10:07 -0400)]
ecore-evas-wl: Don't check window visibility on raising

As we won't get a request from a server to raise a window which is not
visible anyway, this check is useless.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoEfl.Ui.Image: fix efl.player.playable.get API
Amitesh Singh [Wed, 7 Jun 2017 09:50:46 +0000 (18:50 +0900)]
Efl.Ui.Image: fix efl.player.playable.get API

an edje obj is always playable. return TRUE always.

@fix

7 years agoscroller : Call mirrored_set function after edje_obj is initialized
JunsuChoi [Wed, 7 Jun 2017 06:20:17 +0000 (15:20 +0900)]
scroller : Call mirrored_set function after edje_obj is initialized

Summary:
Problem that scroller is not mirrored in RTL mode has been fixed in D4908.
However, I found a problem in init process.
I will revert D4908 commit(https://phab.enlightenment.org/D4908).

After edje_obj is initialized, mirrored_set is called.
When wanted_region_set is called, x-coordinate flip normally and acts as RTL.

Test Plan: scroller test on elementary_test.

Reviewers: raster, woohyun, SanghyeonLee, akanad, eagleeye, cedric, singh.amitesh, eunue

Subscribers: jpeg, cedric

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

7 years agoevas: Set locks and modifiers for all input events
Jean-Philippe Andre [Wed, 7 Jun 2017 05:53:08 +0000 (14:53 +0900)]
evas: Set locks and modifiers for all input events

See also eb27724eb9c32a954c2f75b45307a207d0 which didn't fix
the reported issue. Not quite sure yet how to implement those
lock & modifiers for fake events (i.e. artificially created
by the app itself).

Fixes T5510

7 years agoedje: Remove external param_type from EO
Jean-Philippe Andre [Thu, 1 Jun 2017 09:22:23 +0000 (18:22 +0900)]
edje: Remove external param_type from EO

This is not exactly Legacy API but at the same time doesn't
belong to EO (see previous commits).

7 years agoRevert "scroller : fix mirrored contents_pos_set call"
JunsuChoi [Wed, 7 Jun 2017 06:17:45 +0000 (15:17 +0900)]
Revert "scroller : fix mirrored contents_pos_set call"

Summary:
This reverts commit de313d6296ac8a2d9a3c0f9762179ffd42a833ff.

Because x-coordination mirroring is called properly from wanted_regison_set.
There was a problem in scroller init process.
Before edje_obj was initialize in elm_interface_scrollable_objects_set, mirrored_set was being called.
So Move mirrored_set after elm_interface_scrollable_objects_set
it can fix this issue(https://phab.enlightenment.org/D4944)

Reviewers: raster, woohyun, SanghyeonLee, akanad, eagleeye, cedric, singh.amitesh, eunue

Subscribers: jpeg, cedric

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

7 years agodocs: Fix typos and some wrong expressions in Ecore, Ecore_Audio, Ecore_Cocoa, Ecore_...
Myoungwoon Roy, Kim [Wed, 7 Jun 2017 04:01:13 +0000 (13:01 +0900)]
docs: Fix typos and some wrong expressions in Ecore, Ecore_Audio, Ecore_Cocoa, Ecore_Con, and Ector API reference doxygen.

Summary: I had fixed some typos and wrong expressions, such as capital letters, $simbols in .eo and singulars in Ecore, Ecore_Audio, Ecore_Cocoa, Ecore_Con, and Ector API reference doxygen.

Test Plan: Doxygen Revision

Reviewers: Jaehyun_Cho, stefan, jpeg, cedric, raster

Reviewed By: Jaehyun_Cho

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

7 years agoephysics: set proper geometry when setting an object to a face
Bruno Dilly [Tue, 6 Jun 2017 21:00:27 +0000 (14:00 -0700)]
ephysics: set proper geometry when setting an object to a face

Summary:
It was missing a break statement in a switch.

Fixes T5547

@fix

Reviewers: cedric

Subscribers: jpeg

Maniphest Tasks: T5547

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoeina: enable fallthrough warning suppression only on GCC 7 and above.
Cedric BAIL [Tue, 6 Jun 2017 16:57:14 +0000 (09:57 -0700)]
eina: enable fallthrough warning suppression only on GCC 7 and above.

7 years agoecore-drm2: Don't use Atomic functions to set DPMS levels
Chris Michael [Tue, 6 Jun 2017 15:06:34 +0000 (11:06 -0400)]
ecore-drm2: Don't use Atomic functions to set DPMS levels

This was initially an experiment in trying to use Atomic properties to
set dpms on/off, however it does not turn off backlight support when
triggered so it is useless.

Fixes T5462

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoecore-drm2: Fix output backlight value type definitions
Chris Michael [Tue, 6 Jun 2017 14:44:55 +0000 (10:44 -0400)]
ecore-drm2: Fix output backlight value type definitions

When we go to set output backlight level we use doubles, so lets just
store these values as doubles in the structure.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoecore-drm2: Add internal functions to get backlight values
Chris Michael [Tue, 6 Jun 2017 14:37:01 +0000 (10:37 -0400)]
ecore-drm2: Add internal functions to get backlight values

Small patch to add an internal function which can be used to retrieve
backlight values on output creation.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
7 years agoeina: fix clang compilation with EINA_FALLTHROUGH
Jérémy Zurcher [Tue, 6 Jun 2017 07:58:06 +0000 (09:58 +0200)]
eina: fix clang compilation with EINA_FALLTHROUGH

btw, using clang 4.0.0, I can't produce fallthrough warnings using
-Weverything, -Wall or -Wimplicit-fallthrough

7 years agoecore_drm2: Fix error handling in _output_dpms_atomic_set
Derek Foreman [Mon, 5 Jun 2017 21:22:08 +0000 (16:22 -0500)]
ecore_drm2: Fix error handling in _output_dpms_atomic_set

This was skipping the error path on failure and setting some state as if
it was successful.  Then the next attempt at a page flip was actually
setting this state.

So _output_dpms_atomic_set (which has always been broken) wasn't actually
the function that successfully disabled dpms.

This is confounding attempts to debug why dpms isn't coming back on
properly.

Now it won't turn *off* either, because it really never should have.

Ref T5462

7 years agoscroller : fix mirrored contents_pos_set call
JunsuChoi [Mon, 5 Jun 2017 21:09:42 +0000 (14:09 -0700)]
scroller : fix mirrored contents_pos_set call

Summary:
Fixes that a scroller can not be moved normally even if it is changed to mirrored.
In elm_scroller, _mirrored_set is called when sizing_eval is called. because
When content size is changed, it should be scrolled based on mirrored coordinates.
Also In elm_interface_scrollable,
elm_interface_scrollable_content_pos_set of _elm_scrollable_mirrored_set
to be called regardless of mirrored state.

Test Plan: scroller test on elementary_test.

Reviewers: raster, woohyun, SanghyeonLee, akanad, eagleeye, cedric, singh.amitesh, eunue

Subscribers: cedric, jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoelc_multibuttonentry: role of MBE item, MBE updated, and state_set_get API added.
Shilpa Singh [Mon, 5 Jun 2017 20:56:42 +0000 (13:56 -0700)]
elc_multibuttonentry: role of MBE item, MBE updated, and state_set_get API added.

Summary:
Reason for role change:
MBE items do not  act like push buttons, they need to maintain their status and at a time only one item can be selected, they act like radio buttons.
Role change of MBE from entry to panel, because MBE is just a container and entry is one of the children, when entry gets access frame, it will work as how entry works, but making MBE role as entry does not work as expected and also MBE should not receive highlight as a whole but only its children should receive highlight one more reason why MBE role cannot be entry.
state_set_get API added to get items state.

Test Plan:
When atspi mode is enabled the access frame has to
navigate directly on item and not on MBE as a whole and state has to
be read out

Reviewers: kimcinoo, cedric

Reviewed By: cedric

Subscribers: cedric, govi, rajeshps, jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoecore_evas: use strbuf instead of PATH_MAX.
Cedric BAIL [Mon, 5 Jun 2017 20:53:28 +0000 (13:53 -0700)]
ecore_evas: use strbuf instead of PATH_MAX.

7 years agoelm_config: password mode change should reflect on already running applications.
Shilpa Singh [Mon, 5 Jun 2017 20:44:48 +0000 (13:44 -0700)]
elm_config: password mode change should reflect on already running applications.

Summary:
When password mode is changed, the change has to reflect on already running
apps as well. config_sub_apply will not be called for an already running app.

Test Plan:
1. 2 running process
2. Change the config value of password last show in one process
3. Check whether the change has reflected in previous process.

Signed-off By: Shilpa Singh<shilpa.singh@samsung.com>

Reviewers: jpeg, cedric, thiepha

Subscribers: govi, rajeshps

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoeldbus: add test suite for eldbus (eldbus_signal_handler*)
Mykola Solyanko [Mon, 5 Jun 2017 20:44:14 +0000 (13:44 -0700)]
eldbus: add test suite for eldbus (eldbus_signal_handler*)

Summary:
add tests for next API:
eldbus_signal_handler_add()
eldbus_signal_handler_del()
eldbus_signal_handler_connection_get()
eldbus_signal_handler_interface_get()
eldbus_signal_handler_member_get()
eldbus_signal_handler_path_get()
eldbus_signal_handler_sender_get()
eldbus_signal_handler_ref()
eldbus_signal_handler_unref()
eldbus_signal_handler_free_cb_add()
eldbus_signal_handler_free_cb_del()

Reviewers: cedric, NikaWhite, myoungwoon, raster, artem.popov

Subscribers: jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoelementary: refactor day handling in calendar to just use unsigned char.
Cedric BAIL [Mon, 5 Jun 2017 20:42:08 +0000 (13:42 -0700)]
elementary: refactor day handling in calendar to just use unsigned char.

7 years agoedje: clear up left over warning on fallthrough switch case statement.
Cedric BAIL [Mon, 5 Jun 2017 20:41:01 +0000 (13:41 -0700)]
edje: clear up left over warning on fallthrough switch case statement.

7 years agoedje: use strbuf instead of hard coded PATH_MAX.
Cedric BAIL [Mon, 5 Jun 2017 20:40:40 +0000 (13:40 -0700)]
edje: use strbuf instead of hard coded PATH_MAX.

7 years agoecore_evas: reuse code by relying on switch case statement fallthrough for key offset...
Cedric BAIL [Mon, 5 Jun 2017 19:03:29 +0000 (12:03 -0700)]
ecore_evas: reuse code by relying on switch case statement fallthrough for key offset case.

7 years agoevas: reuse code for colorspace logic by using switch case statement fallthrough.
Cedric BAIL [Mon, 5 Jun 2017 19:02:59 +0000 (12:02 -0700)]
evas: reuse code for colorspace logic by using switch case statement fallthrough.

7 years agoelementary: reuse code by relying on switch case statement fallthrough.
Cedric BAIL [Mon, 5 Jun 2017 19:02:30 +0000 (12:02 -0700)]
elementary: reuse code by relying on switch case statement fallthrough.

7 years agoevas: use switch case statement fallthrough to handle colorspace logic reuse.
Cedric BAIL [Mon, 5 Jun 2017 19:01:59 +0000 (12:01 -0700)]
evas: use switch case statement fallthrough to handle colorspace logic reuse.

7 years agoevas: TGA does use switch case statement fallthrough to factorize code.
Cedric BAIL [Mon, 5 Jun 2017 19:01:17 +0000 (12:01 -0700)]
evas: TGA does use switch case statement fallthrough to factorize code.

7 years agoevas: silence warning for SSE3 optimization.
Cedric BAIL [Mon, 5 Jun 2017 19:00:41 +0000 (12:00 -0700)]
evas: silence warning for SSE3 optimization.

7 years agodraw: silence warning in a tricky loop/switch statement.
Cedric BAIL [Mon, 5 Jun 2017 19:00:13 +0000 (12:00 -0700)]
draw: silence warning in a tricky loop/switch statement.

7 years agoedje: object have small difference and we use switch case fallthrough to reuse code.
Cedric BAIL [Mon, 5 Jun 2017 18:58:40 +0000 (11:58 -0700)]
edje: object have small difference and we use switch case fallthrough to reuse code.

7 years agoeet: silence properly reused code through switch case statement fallthrough.
Cedric BAIL [Mon, 5 Jun 2017 18:57:18 +0000 (11:57 -0700)]
eet: silence properly reused code through switch case statement fallthrough.

7 years agoedje_cc: when first parameter is a string and the second one a range, just reuse...
Cedric BAIL [Mon, 5 Jun 2017 18:56:46 +0000 (11:56 -0700)]
edje_cc: when first parameter is a string and the second one a range, just reuse code.

7 years agoemile: SSL state should fallthrough to avoid duplication of logic.
Cedric BAIL [Mon, 5 Jun 2017 18:55:42 +0000 (11:55 -0700)]
emile: SSL state should fallthrough to avoid duplication of logic.

7 years agoemile: fallthrough is legal here as we handle fallback case when caller doesn't know...
Cedric BAIL [Mon, 5 Jun 2017 18:54:54 +0000 (11:54 -0700)]
emile: fallthrough is legal here as we handle fallback case when caller doesn't know about GRY8.

7 years agoeina: add EINA_FALLTHROUGH to disable warning on useful case serie with no break.
Cedric BAIL [Mon, 5 Jun 2017 18:51:59 +0000 (11:51 -0700)]
eina: add EINA_FALLTHROUGH to disable warning on useful case serie with no break.

GCC has started introducing a detection for series of case in a switch statement
without break for each case. We do use that trick a lot to reduce our code base.
Even if in most case we have documented this so that people using coverity don't
try to fix it. Now with GCC we need to silence it properly to avoid future
problem.

7 years agoecore_wl2: silence gcc warning.
Cedric BAIL [Mon, 5 Jun 2017 18:51:21 +0000 (11:51 -0700)]
ecore_wl2: silence gcc warning.

Code is correct, but gcc can not follow the branch if and believe it
is worth triggering a warning.

7 years agoeina: silence gcc warning.
Cedric BAIL [Mon, 5 Jun 2017 18:15:23 +0000 (11:15 -0700)]
eina: silence gcc warning.

Code is correct and won't lead to a case where size is > 0 and buffer
isn't set, but gcc can't see the relation between both variable.

7 years agoevas/examples: add intro for evas-event-filter.c example
Bryce Harrington [Mon, 5 Jun 2017 18:13:02 +0000 (11:13 -0700)]
evas/examples: add intro for evas-event-filter.c example

Reviewers: cedric

Reviewed By: cedric

Subscribers: jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoevas/examples: fix minor typo 'whe'
Bryce Harrington [Mon, 5 Jun 2017 18:12:32 +0000 (11:12 -0700)]
evas/examples: fix minor typo 'whe'

Reviewers: cedric

Subscribers: jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoexamples/evas: add tutorial commentary for evas-init-shutdown
Bryce Harrington [Mon, 5 Jun 2017 18:11:35 +0000 (11:11 -0700)]
examples/evas: add tutorial commentary for evas-init-shutdown

Summary:
This is the most basic of the Evas examples and serves as the starting
point for new Evas users.  Since this targets neophytes, we can afford
to be much more detailed in commentary.

Reviewers: cedric

Subscribers: jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoexamples/evas: add a README
Bryce Harrington [Mon, 5 Jun 2017 18:11:01 +0000 (11:11 -0700)]
examples/evas: add a README

Summary:
Categorize the examples by topic, and identify certain examples as
introductory; these can be commented more verbosely than the other
examples.

Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
Reviewers: cedric

Reviewed By: cedric

Subscribers: jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoeldbus: add test suite for eldbus (eldbus_message*)
Mykola Solyanko [Mon, 5 Jun 2017 18:10:22 +0000 (11:10 -0700)]
eldbus: add test suite for eldbus (eldbus_message*)

Summary:
add tests for next API
eldbus_message_arguments_vget()
eldbus_message_arguments_append()
eldbus_message_error_get()
eldbus_message_from_eina_value()
eldbus_message_iter_struct_like_to_eina_value()
eldbus_message_iter_arguments_vappend()
eldbus_message_iter_arguments_vget()
eldbus_message_signature_get()
eldbus_message_method_return_new()
eldbus_message_error_get()
eldbus_message_iter_container_new()
eldbus_message_iter_fixed_array_append()
eldbus_message_method_return_new()
eldbus_message_error_new()
eldbus_message_iter_del()
eldbus_message_iter_fixed_array_get()
eldbus_hello()

Reviewers: cedric, raster, NikaWhite, myoungwoon, artem.popov

Subscribers: jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoevas: revise grammar for memory allocator error status
Bryce Harrington [Mon, 5 Jun 2017 18:09:26 +0000 (11:09 -0700)]
evas: revise grammar for memory allocator error status

Summary:
Wordsmith phrasings to be a bit more concise.  In example code,
distinguish better between the OOM and Low Mem conditions that it
is demonstrating.

Reviewers: cedric

Subscribers: jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agopopup: fix unintentional object deletion when change scrollable
JinYong Park [Mon, 5 Jun 2017 18:08:45 +0000 (11:08 -0700)]
popup: fix unintentional object deletion when change scrollable

Summary:
If popup scrollable change from FALSE to TRUE after content or text is added,
content_area is deleted, so it cause null pointer problem.
main_layout has content_area in its CONTENT_PART, but in scrollable_set API,
tbl set into main_layout's CONTENT_PART, so content_area is deleted.

On the contrary, if scrollable change to FALSE,
content object in content_area is deleted, because tbl set into content_area's CONTENT_PART.

So if some object set into other object,
unset previous object and set it into properly part after that.

A case using item_append should be fixed by other patch.

@fix

Test Plan: Change scrollable repeatedly after adding content or text to popup.

Reviewers: jpeg, singh.amitesh, conr2d, cedric, raster

Reviewed By: cedric

Subscribers: herb

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoevas: document the wayland ecore_evas constructors
Bryce Harrington [Mon, 5 Jun 2017 18:06:36 +0000 (11:06 -0700)]
evas: document the wayland ecore_evas constructors

Reviewers: cedric

Subscribers: jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoecore_evas: correct error message reporting incorrect engine name
Bryce Harrington [Mon, 5 Jun 2017 18:05:53 +0000 (11:05 -0700)]
ecore_evas: correct error message reporting incorrect engine name

Summary:
_ecore_evas_wl_common_new_internal() creates both wayland_egl and
wayland_shm backed windows, so reporting that the failure was in looking
up "Wayland_Shm" could be misleading.

Also, this routine can be called with any arbitrary string as
engine_name, so including what was received in the error message might
be helpful for diagnosing bugs.

Reviewers: cedric

Reviewed By: cedric

Subscribers: jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agocalendar: fix elm_calendar_interval_set() API not working.
Woochan Lee [Mon, 5 Jun 2017 18:02:17 +0000 (11:02 -0700)]
calendar: fix elm_calendar_interval_set() API not working.

Summary:
The API was not working because of an internal logical error.

@fix

Test Plan: Calling elm_calendar_interval_set API in elementary_test.

Reviewers: jpeg, cedric, Hermet, woohyun

Subscribers: cedric, jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoexamples: fix efl_net_control_example.c on BSD.
Al Poole [Mon, 5 Jun 2017 17:58:50 +0000 (10:58 -0700)]
examples: fix efl_net_control_example.c on BSD.

Reviewers: cedric, stefan_schmidt

Subscribers: stefan_schmidt, jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoelput: fix sp. usefull
Bryce Harrington [Mon, 5 Jun 2017 17:58:01 +0000 (10:58 -0700)]
elput: fix sp. usefull

Reviewers: cedric

Reviewed By: cedric

Subscribers: cedric, jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoecore_imf: add ecore_imf_context_mime_type_accept_set API
InHong Han [Mon, 5 Jun 2017 17:50:15 +0000 (10:50 -0700)]
ecore_imf: add ecore_imf_context_mime_type_accept_set API

Summary: Added a new api to send the mime type of entry to IME.

Test Plan: Tested in Tizen device

Reviewers: woohyun, id213sin, jihoon, cedric

Reviewed By: cedric

Subscribers: cedric, jihoon, jpeg

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
7 years agoefl_debugd: don't compile this on macOS
Jean Guyomarc'h [Mon, 5 Jun 2017 17:02:33 +0000 (19:02 +0200)]
efl_debugd: don't compile this on macOS

Well, the build is broken again on macOS :(
efl_debugd is full of platform-specific code: network and epoll.
To make it compile (not work as expected, just compile), we would need
to comment out most of efl_debugd's code. So instead of having a
crippled, useless binary, just don't compile it on macOS.

This unbreaks the build for macOS.

7 years agoeina: attempt to make the code more portable
Jean Guyomarc'h [Mon, 5 Jun 2017 17:00:22 +0000 (19:00 +0200)]
eina: attempt to make the code more portable

This fixes the build on macOS.

7 years agoefl_debugd: enforce void parameter when no arguments are required
Jean Guyomarc'h [Mon, 5 Jun 2017 16:59:23 +0000 (18:59 +0200)]
efl_debugd: enforce void parameter when no arguments are required

7 years agoEina_Debug: Fix missing include of signal.h
Jeeyong Um [Mon, 5 Jun 2017 11:14:29 +0000 (20:14 +0900)]
Eina_Debug: Fix missing include of signal.h

7 years agoElm layout: fix a few objects after move to efl_part
Daniel Hirt [Sun, 4 Jun 2017 14:25:36 +0000 (17:25 +0300)]
Elm layout: fix a few objects after move to efl_part

Fixes elm_layout_text_set/get bugs that were introduced in
3eb649b180eb98f7be829de5aed7e8c7f1ceb35a.

7 years agoLayout/legacy: rename object type
Daniel Zaoui [Mon, 5 Jun 2017 08:48:03 +0000 (11:48 +0300)]
Layout/legacy: rename object type

Enlightenment and terminology compilations fail because Elm_Layout is
not known.

7 years agoEina_Debug: Fix config.h usage
Daniel Zaoui [Mon, 5 Jun 2017 07:51:51 +0000 (10:51 +0300)]
Eina_Debug: Fix config.h usage

It was used inside eina_debug.h that is a public header.
Terminology compilation was failing when including its own config.h.

7 years agotests:efl.ui.image.zoomable: add a test case for icon APIs
Amitesh Singh [Mon, 5 Jun 2017 08:26:54 +0000 (17:26 +0900)]
tests:efl.ui.image.zoomable: add a test case for icon APIs

7 years agoefl.ui.image: fix icon_get API
Amitesh Singh [Mon, 5 Jun 2017 08:01:25 +0000 (17:01 +0900)]
efl.ui.image: fix icon_get API

If icon set is failed, icon_get should return NULL,
not the old icon name.

@fix

7 years agotests:efl.ui.image: Add test case for icon api
Amitesh Singh [Mon, 5 Jun 2017 07:33:27 +0000 (16:33 +0900)]
tests:efl.ui.image: Add test case for icon api

This test case shows a bug in icon get API. If icon set is failed,
icon_get should return NULL, not the old icon name.

7 years agoMerge Eina Debug feature
Daniel Zaoui [Mon, 5 Jun 2017 06:10:03 +0000 (09:10 +0300)]
Merge Eina Debug feature

Eina Debug is a layer aimed to bring a way to debug EFL applications by
providing a transport channel between a debug tool and the applications
of a device.

In order to be interrupted by EFL core as less as possible, the communication
is done in a separated thread.
The Ecore loop is not used there, as well as the Ecore helpers (socket...).

Debugging operations can be registered easily by any layer of the application.

To use it:
- Launch efl_debugd
- Launch the application to debug
- Launch Clouseau (the new version will be pushed soon) or another debug tool
supporting Eina Debug

7 years agoFix Windows compilation
Daniel Zaoui [Sun, 4 Jun 2017 13:11:16 +0000 (16:11 +0300)]
Fix Windows compilation

Thanks to vtorri for his help on this delicate issue named Windows

7 years agoSet Eina Debug APIs as Beta
Daniel Zaoui [Sun, 4 Jun 2017 06:08:15 +0000 (09:08 +0300)]
Set Eina Debug APIs as Beta

7 years agoSupport endianness
Daniel Zaoui [Sat, 3 Jun 2017 16:33:58 +0000 (19:33 +0300)]
Support endianness

7 years agoSupport opcodes registration for Windows
Daniel Zaoui [Fri, 2 Jun 2017 09:13:31 +0000 (12:13 +0300)]
Support opcodes registration for Windows

A standard static array with symbols whose addresses are only known at
runtime is not supported in Windows.

7 years agoRename opcodes for a better readability
Daniel Zaoui [Fri, 2 Jun 2017 09:12:00 +0000 (12:12 +0300)]
Rename opcodes for a better readability

7 years agoEo: add APIs to walk over classes and objects
Daniel Zaoui [Fri, 27 Jan 2017 10:14:42 +0000 (12:14 +0200)]
Eo: add APIs to walk over classes and objects

These APIs are needed by Clouseau to get a list of classes and objects.

7 years agoRemove alloca of potential big size
Daniel Zaoui [Thu, 1 Jun 2017 16:59:40 +0000 (19:59 +0300)]
Remove alloca of potential big size

7 years agoBt: Remove special handling for mainloop
Daniel Zaoui [Wed, 31 May 2017 22:14:37 +0000 (01:14 +0300)]
Bt: Remove special handling for mainloop

7 years agoFix Coverity issues
Daniel Zaoui [Tue, 30 May 2017 13:04:24 +0000 (16:04 +0300)]
Fix Coverity issues

7 years agoRemove thread management
Daniel Zaoui [Tue, 30 May 2017 11:14:59 +0000 (14:14 +0300)]
Remove thread management

The handling to forward requests is let to the callbacks.

7 years agoUse better names for daemon operations
Daniel Zaoui [Sat, 27 May 2017 20:08:36 +0000 (23:08 +0300)]
Use better names for daemon operations

7 years agoRemove old evlog code from efl_debugd
Daniel Zaoui [Sat, 27 May 2017 19:03:11 +0000 (22:03 +0300)]
Remove old evlog code from efl_debugd

7 years agoFix connection closing
Daniel Zaoui [Sat, 27 May 2017 18:58:13 +0000 (21:58 +0300)]
Fix connection closing

The client structure was not deleted when the connected application was
suddenly terminated (ctrl-c).
It was not happening before, so I suspect TCP and UNIX sockets behave
differently on this matter.

7 years agoAdd Clouseau loading at the init of the application
Daniel Zaoui [Sat, 27 May 2017 17:46:29 +0000 (20:46 +0300)]
Add Clouseau loading at the init of the application

7 years agoRemoves modules feature
Daniel Zaoui [Sat, 27 May 2017 17:45:12 +0000 (20:45 +0300)]
Removes modules feature

7 years agoFix daemon issues
Daniel Zaoui [Sat, 27 May 2017 17:44:50 +0000 (20:44 +0300)]
Fix daemon issues

7 years agoAdd prints to efl_debugd
Daniel Zaoui [Sat, 27 May 2017 17:44:19 +0000 (20:44 +0300)]
Add prints to efl_debugd

7 years agoInit the communication with the daemon from the debug thread
Daniel Zaoui [Fri, 26 May 2017 05:52:52 +0000 (08:52 +0300)]
Init the communication with the daemon from the debug thread

7 years agoReplace shell remote connection with localhost TCP connection
Daniel Zaoui [Thu, 25 May 2017 10:26:41 +0000 (13:26 +0300)]
Replace shell remote connection with localhost TCP connection

7 years agoRemove _session variable as it is not needed anymore
Daniel Zaoui [Thu, 25 May 2017 08:10:53 +0000 (11:10 +0300)]
Remove _session variable as it is not needed anymore

7 years agoAdd data to opcode registration callback
Daniel Zaoui [Fri, 19 May 2017 05:59:56 +0000 (08:59 +0300)]
Add data to opcode registration callback

7 years agoAdd API to get/set data to session
Daniel Zaoui [Fri, 19 May 2017 05:59:51 +0000 (08:59 +0300)]
Add API to get/set data to session