summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* efl_ui_panel: create a new classdevs/eunue/panelJaeun Choi2017-03-298-0/+338
| | | | | | made it work for a simple use case of a left panel thumbscroll is disabled for now - toggled only by API example: src/examples/elementary/efl_ui_panel_example.c
* Eina_Value: strdup() is used, so include string.hVincent Torri2017-03-271-0/+1
|
* Ecore: siginfo_t type is defined in sys/siginfo.h on SolarisVincent Torri2017-03-271-0/+2
|
* gengrid: fix the crash in _elm_gengrid_item_edge_checkAmitesh Singh2017-03-261-0/+1
| | | | | | | | | | | _elm_gengrid_item_edge_check can have eo_it as NULL if none of widget item is focused. This could happen if item_focus is not enabled on items. test case: elm test -> gengrid 2 (enable only "focus hightligt set") and move focus. @fix Signed-off-by: Amitesh Singh <amitesh.sh@samsung.com>
* Gengrid: Bring the item into view scope before swapping.Umesh Tanwar2017-03-261-0/+1
| | | | | | | | | | | | | | | | | | Summary: The gengrid item should be into view scope while reordering the items. @fix Signed-off-by: Umesh Tanwar <umesh.tanwar@samsung.com> Test Plan: elmementary_test -> gengrid 2 -> horizontal mode + reordering Reviewers: singh.amitesh, cedric Subscribers: cedric, atulfokk, jpeg Differential Revision: https://phab.enlightenment.org/D4740 Signed-off-by: Amitesh Singh <amitesh.sh@samsung.com>
* Ecore_Con: Fix compilation on SolarisVincent Torri2017-03-262-1/+5
| | | | FIONREAD is defined in sys/filio.h
* elm_code: fix CID 1368489Andy Williams2017-03-251-2/+2
| | | | @fix
* efreet: Don't prefer the second perfect over the first in desktop_exec_find()Derek Foreman2017-03-241-1/+6
| | | | | | | | | | We test a second match for a perfect match, then stop all further processing, but we never test the first match. This leads to a situation where a system wide .desktop file is given precedence over a local override. Instead, check the first match too. #test-e
* ecore-evas: better handling for pointer_warp with buffer canvasMike Blumenkrantz2017-03-241-1/+49
| | | | | | | | | | if buffer canvas is not image object, this needs to emit a move event to be consistent with other engines probably this should emit events in all cases, but adding for image buffers this close to release seems potentially risky so I'll leave that for later ref 4a691f79df88d4b26c5af48ffb811e28f031e2f1
* evas_events: look for seats on hash instead of input devicesBruno Dilly2017-03-241-2/+8
| | | | | | | | | | | | | | | | | Summary: Otherwise it won't ever find the modifier masks. Fixes T5146 @fix Reviewers: iscaro, Jaehyun_Cho Subscribers: cedric, jpeg Maniphest Tasks: T5146 Differential Revision: https://phab.enlightenment.org/D4738
* ecore-drm2: Remove unused field in Output structureChris Michael2017-03-241-2/+0
| | | | | | | | | The 'planes' field in Ecore_Drm2_Output structure is unused and can thus be removed here. @fix Signed-off-by: Chris Michael <cp.michael@samsung.com>
* eet cmdline tool - dont give garbage certificate length if there is noneCarsten Haitzler (Rasterman)2017-03-241-4/+11
|
* ecore audio: Fix loss of last streamJiwon Kim2017-03-241-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: pa_stream's write callback requires to size of stream data using 'len' parameter. This size depend on pulse audio's internal status and not consistent. When a efl read audio's last stream, length of read('bread') is less than write callback's 'len' parameter. If the gap between 'len' and 'bread' is small, last stream is played fortunately. Otherwise, the last stream is discarded. (It is doubtful about pa_stream's pre-buffering.) To prevent it, push silent stream which is amount of deficient length. @fix T5281 Reviewers: raster Reviewed By: raster Subscribers: cedric, jpeg, woohyun Maniphest Tasks: T5281 Differential Revision: https://phab.enlightenment.org/D4726
* ecore_evas: delete exit idler when done with itJean Guyomarc'h2017-03-231-0/+2
|
* Eina_Xattr: fix memory corruptionArtem Popov2017-03-231-3/+3
| | | | | | | | | | | | | | | | | Summary: There should be reallocation +1 (for last '\0') and also checking >0, not !=0, because of getxattr can return -1 in case of error @fix Reviewers: cedric, raster, NikaWhite, jpeg Reviewed By: NikaWhite Subscribers: myoungwoon Tags: #efl Differential Revision: https://phab.enlightenment.org/D4734
* ecore_evas extn - fix buffer n check for lock files with untrusted valCarsten Haitzler (Rasterman)2017-03-231-5/+9
| | | | | | | | | the code added by minkyoung has a definite security flaw here trusting e->response to be within a small range when all it is is an int - range is not limited other than that... so fix the code to check for range like further code below does. this commit went in 2 days ago... so not an existing bug fix.
* evas: Fix a rare issue with GL and map and maskJean-Philippe Andre2017-03-222-1/+19
| | | | | | | | | | | | | | | | The things you learn to love... The situation was: - An object is mapped (naviframe in an animation) - One of its children has a mask - The window is rotated by 90 or 270 degrees (landscape) The mask glsl code to invert the x,y coordinate depends on the screen rotation and this somehow was wrong. Tested on Tizen and in elm_test "Masking", made with @jiin.moon. @fix
* elm_code: fix keyboard selection forwardAndy Williams2017-03-211-0/+11
| | | | @fix
* elm_map: Fix work of elm_map_overlay_icon_set if icon is NULL.se.osadchy2017-03-211-1/+0
| | | | | | | | | | | | | | | | Summary: Delete check on NULL for icon object due to incorrect work. Function must delete icon in map overlay (according to documentation) if we set NULL, but with this check - nothing happening and after elm_map_overlay_icon_get we have not NULL returned value. @fix Reviewers: cedric, Hermet, raster, jpeg Reviewed By: cedric Subscribers: artem.popov Differential Revision: https://phab.enlightenment.org/D4720
* ecore: proper macro usage for double comparision. Summary: The comparisions ↵Umesh Tanwar2017-03-214-4/+4
| | | | | | | | | | | | | | are done between doubles. EINA_FLT_EQ -> EINA_DBL_EQ Summary: Signed-off-by: Umesh Tanwar <umesh.tanwar@samsung.com> Reviewers: singh.amitesh, cedric Subscribers: jpeg, atulfokk Differential Revision: https://phab.enlightenment.org/D4719 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* ecore_evas_extn: do not update plug image when lockfile is invalid.Minkyoung Kim2017-03-211-0/+11
| | | | | | | | | | | | | | | | | | | | | | Summary: This prevent invalid shared memory access. Invalid access occur when server is resized sequentially from now to A-size to B-size, and client receive A resize message after resizing B. Then client try to render plug image with A-size, but shared memory is B-size buffer. Size are mismatch. This makes segmentation fault when uploading texture(gl) or rendering image(sw). Test Plan: Indicator rendering on Tizen3.0 platform. Reviewers: jypark, wonsik, dkdk, scholb.kim, jiin.moon, jpeg, cedric Reviewed By: cedric Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D4711 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* genlist: Fix another issue with insert sortedJean-Philippe Andre2017-03-201-2/+3
| | | | | | Fixes T5274 @fix
* evas gl: Fix a compilation warningJean-Philippe Andre2017-03-201-0/+2
| | | | The fallback lib handle is not required unless EGL/GLES is used.
* eina_debug: do not leak a spinlock when the path is not givenMarcel Hollerbach2017-03-181-1/+5
|
* gl_drm: Fix KHR partial update supportDerek Foreman2017-03-173-14/+18
| | | | | I fixed this in other engines but missed this one. The result is some terrible flickering on gl_drm on recent mali drivers.
* ecore_drm2: Move function call after the NULL checkDerek Foreman2017-03-171-1/+2
| | | | | Was dereferencing ob before NULL checking it. What could possibly go wrong?
* gl_drm: Properly disable EGL_EXT_buffer_age when we don't have itDerek Foreman2017-03-171-4/+1
| | | | | | | If we don't have EGL_EXT_buffer_age then we don't have buffer age - it's a completely independent extension to KHR partial update. This partially fixes partial update on recent mali drivers.
* theme: remove event gaps in enlightenment window framesMike Blumenkrantz2017-03-171-7/+3
| | | | @fix
* efreet: CRI and fail after 10 attempts to connect to efreetdMike Blumenkrantz2017-03-171-0/+9
| | | | | | | | | | if efreetd cannot be connected to, stop infinitely trying to spawn it since this generates crazy cpu load probably this path should also send some cache events so that watchers do not simply idle forever ref T5200
* ecore-evas: handle title_set and name_class_set for buffer engineMike Blumenkrantz2017-03-171-2/+29
|
* theme: make bryce vertical clipping work as expectedMike Blumenkrantz2017-03-171-1/+1
| | | | ref a94351a789ae7c11efb72c1b9f35cd7fae4d7fa2
* evas table: CRI when attempting to pack a table child into another tableMike Blumenkrantz2017-03-171-2/+10
| | | | @fix
* elm_code: Update and demo status messages inlineAndy Williams2017-03-173-13/+28
|
* elementary: enhance atspi accessible documentationShinwoo Kim2017-03-171-20/+20
|
* gengrid: avoid call select callback twice in mode ↵Vyacheslav Reutskiy2017-03-171-1/+0
| | | | | | | | | | | ELM_OBJECT_MULTI_SELECT_MODE_WITH_CONTROL If multi select mode is ELM_OBJECT_MULTI_SELECT_MODE_WITH_CONTROL and user code try unselect a item and select another part which not realized select callback calls twice in this case. For avoid this no needs focus newly selected item. @fix
* luncher: improving engage animationsAndy Williams2017-03-161-1/+0
|
* eina_file: fixed T2244Ivan Furs2017-03-151-3/+17
| | | | | | | | | | | | | | | | | | Summary: dirty fix for 'eet' problems with file deletion on WINDOWS to work with the commit: D4698, D4699 Reviewers: cedric, NikaWhite, rimmed, vtorri, raster Reviewed By: cedric Subscribers: artem.popov, cedric, jpeg Maniphest Tasks: T2244 Differential Revision: https://phab.enlightenment.org/D4701 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* evas: drop redundant pointer checkBryce Harrington2017-03-151-2/+1
| | | | | | | | | | | | | | | | Summary: The function already has a precondition test for !font, so this additional test will never trigger. @fix CID1371525 Reviewers: cedric, jpeg Subscribers: jpeg, cedric Differential Revision: https://phab.enlightenment.org/D4682 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* elementary: Fix minor typo in efl_ui_win.eoChris Michael2017-03-141-1/+1
| | | | | | | | | Small patch to fix a minor typo in the "noblank" property of efl_ui_win.eo @fix Signed-off-by: Chris Michael <cp.michael@samsung.com>
* genlist: Fix a leakJean-Philippe Andre2017-03-141-0/+1
| | | | Thanks @herdsman
* ecore: Fix memory leak and logicJean-Philippe Andre2017-03-141-2/+2
| | | | @cedric... how could this even happen??
* release: Update NEWS and bump version for 1.19.0-beta3 releasev1.19.0-beta3Stefan Schmidt2017-03-142-1/+52
|
* ecore_animator: improve comparision check for stopping animator.Umesh Tanwar2017-03-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Summary: Time cmparision does not ensure the corrctness of posotion. It is beacuse of double number calculation. Double number calculation are not convertable.for example: 1/39 = 0.02564102564; but 0.02564102564 * 39 = 0.99999999996 != 1; The addition check for pos ensure the pos to be reached at its correct position. @fix Signed-off-by: Umesh Tanwar <umesh.tanwar@samsung.com> Reviewers: cedric, singh.amitesh, jpeg, raster Reviewed By: raster Subscribers: atulfokk, cedric, jpeg Differential Revision: https://phab.enlightenment.org/D4709 Signed-off-by: Amitesh Singh <amitesh.sh@samsung.com>
* evas gl: Add a hack for GLES 3.1 with NVIDIA + GLVNDJean-Philippe Andre2017-03-141-1/+43
| | | | | | | | I believe there's a limitation in libglvnd where it doesn't propagate the calls to eglGetProcAddress() properly to the vendor library. See also 265c851a8f2ac3cd1f93d523736d4cce0454fe2c
* evas: Fix crash with events on the canvasJean-Philippe Andre2017-03-141-48/+77
| | | | | | | | | | | | | Since ecore now uses efl events to feed input events to the canvas, anyone can now listen to any event on the evas. But when using the legacy API the event info needs to be the legacy struct, and not the eo event info otherwise crashes will happen. While this is a new use of events, I consider it valid and it's better to fix it rather than disallowing it. Fixed by wrapping evas events the same way evas object events were handled. Fixes T5266
* evas gl: Fix usage of OSMesaJean-Philippe Andre2017-03-141-5/+14
| | | | | | | | | | | | | | | It seems OSMesa was recently updated to not expose symbols statically, so dlsym() returns invariably NULL. GetProcAddress must be used. Note though that the extension "EGL_KHR_get_all_proc_addresses" is not present (OSMesa is OpenGL, not GLES), and there is anyway no list of extensions in OSMesa (at the WSI level, glGetString() returns a ton of GL extensions as expected). My OSMesa version is 11.2.0 (mesa 17.0.1). This fixes make check. @fix
* edje: Move prev_description out of ephysics ifdefJean-Philippe Andre2017-03-143-8/+3
| | | | | | | | | prev_description was used when HAVE_EPHYSICS is set, which is the default, but I also added a use in 7072fbc2bfe25881 where the map was not properly reset. This removes an ugly #ifdef and opens the door to other fixes similar to that map one.
* genlist: Fix some more decorate mode issuesJean-Philippe Andre2017-03-141-11/+16
| | | | | | | | | | | | | The item, after having been unswallowed from its decorate item, becomes unclipped and unparented. The parent was well reset, but the clip wasn't. Test case: elementary_test -to "Genlist Decorate Item Mode" I'm sure some bugs are still lurking. Genlist is so lovely. Fixes T1551
* edje: Fix rare issue with mapJean-Philippe Andre2017-03-141-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | In the following sequence, the swallowed object map property is never reset as it should have been: - swallow object - start program, change state to have a map - do something - start program, change state to have no map but before render, unswallow the object At this point, the object will never be un-mapped. This is weird. Somehow edje_calc avoids calling evas_object_map_[enable_]_set excessively, but I believe the issue is that the object does not need recalc. Its container needed recalc, not the child (which is mapped). I'm not 100% sure. Test case: elementary_test -to "Genlist Decorate Item Mode" Click on rotate, select a few items, scroll up and down. Enjoy. Ref T1551 @fix
* genlist: Make sure only one item is decoratedJean-Philippe Andre2017-03-141-0/+1
| | | | | | | | | | | | In "Genlist Decorate Item Mode" after decorating a few items (rotate or slide, doesn't matter), only one item or none should be decorated. Scrolling up and down the genlist should work just fine. This fixes massive render issues and inconsistent states of the items in this test case. "rotate" mode is still going nuts. Ref T1551