Carsten Haitzler (Rasterman) [Mon, 24 Jul 2017 05:10:17 +0000 (14:10 +0900)]
ecore_exe - handle realloc failures by complaining and rolling back
@fix
Carsten Haitzler (Rasterman) [Mon, 24 Jul 2017 04:46:30 +0000 (13:46 +0900)]
embryo_cc - be sensible about realloc returns so analysers are happy
assingto tmp var then assign to real one after a check to analysers
dont complain.
Carsten Haitzler (Rasterman) [Mon, 24 Jul 2017 04:37:57 +0000 (13:37 +0900)]
efreetd cache create - fix reallocs to bail on out of memory cleanly
Carsten Haitzler (Rasterman) [Mon, 24 Jul 2017 04:26:28 +0000 (13:26 +0900)]
edje_cc - make svg loader (still beta) handle out of memory nicely
print ERR and abort.
Carsten Haitzler (Rasterman) [Mon, 24 Jul 2017 04:09:26 +0000 (13:09 +0900)]
edje convert - make realloc fatal and complain about it
cleaner error handling
Amitesh Singh [Mon, 24 Jul 2017 00:50:05 +0000 (09:50 +0900)]
edje_cc out: fix div by 0 correctly
Andy Williams [Sun, 23 Jul 2017 20:30:35 +0000 (21:30 +0100)]
elm_code: Fix crash with long lines
Also fixes issue where widget would sometimes blank when scrolling
@fix
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 10:48:16 +0000 (19:48 +0900)]
edje_cc out - fix theoretical div by 0
fixes CID 1371125
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 10:46:17 +0000 (19:46 +0900)]
edje_cc out ... fix theoretical div by zero...
if files size was 0... which would basically make a lot fail before...
it could be a divide by zero. fix and just assume minimum size of 1.
fix CID 1371127
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 10:42:06 +0000 (19:42 +0900)]
efl ui grid - handle invalid 0x0 fully if the grid size fails to do it
if efl_pack_grid_size_set is overridden and somehow allows 0x0 to
still happen then handle this caase and skip the layout.
fix CID 1374317
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 10:36:41 +0000 (19:36 +0900)]
edje_cc out ... check more iui list element ptrs to help coverity
fix CID 1374482 ... and others i hope.
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 10:33:58 +0000 (19:33 +0900)]
edje_cc out - double check list element ptr to make coverity happy
fix CID 1374483
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 10:30:31 +0000 (19:30 +0900)]
evas seat focus add - handle other case where layer may be null
fix CID 1377522
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 10:26:56 +0000 (19:26 +0900)]
eina debug timer - handle fail wakeup write with error complaint
fix CID 1377528
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 10:18:55 +0000 (19:18 +0900)]
add comment about poll high/medium/low implementation of events
not brilliant as it stands. :(
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 10:12:32 +0000 (19:12 +0900)]
ecore main - fix division to remain a double/float as expected
1/60 != 1.0/60.0 ... the first is an integer which is 0... the second
is 0.
016666666 .... a float/double. fix CID 1377532
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 10:09:11 +0000 (19:09 +0900)]
eina debug - don't try and collect stats on more than a million threads
sanity check... just in case.
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 09:56:43 +0000 (18:56 +0900)]
elm cnp - check if selbuf is null or not and skip copying if null
this should fix CID 1377536
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 09:53:46 +0000 (18:53 +0900)]
evas callbacks - check if obj->events is valid because it's cow alloced
it COULD be null and we do have other checks for it being not-null and
we dont check if the alloc fails... so check. this SHOULD fix
CID 1377547
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 09:43:58 +0000 (18:43 +0900)]
eina debug - add comments to cpu debug using locks to pause sysmon
this is intended so leave comments saying so. coverity doesn't like it
with CID 1377549
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 09:40:04 +0000 (18:40 +0900)]
eina debug - check return value of syscall for errors
this should fix CID 1377550
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 09:36:44 +0000 (18:36 +0900)]
efl canvas image - dbug ingo get - dont get if no root dbg info supplied
if root dbg info is null we'll leak and not have anything useful
stored somewhere for fetching anyway.
this should fix CID 1365656
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 09:29:57 +0000 (18:29 +0900)]
evas module load add comments pointing out this is intentional ptr loss
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 09:11:26 +0000 (18:11 +0900)]
efreetd cache - fix leak of strbuf when error conditions abort save
fix CID 1374951
Carsten Haitzler (Rasterman) [Sun, 23 Jul 2017 09:09:39 +0000 (18:09 +0900)]
efreetd cache - handle queue case leaking strbuf
fix CID 1374954
Carsten Haitzler (Rasterman) [Sat, 22 Jul 2017 08:59:11 +0000 (17:59 +0900)]
ecore_audio headers conflict with app have ifdefs
Ecore_Audio.h had #ifdef HAVE_PULSE ... and that is just so wrong as
this is something an ap[p may or may not set in its config.h ... but
this certainly hase no place in our public headers. the api's there
should always be there... symbols always... just imtplementation may
be empty ... though ecore_audio doesnt build at all without pulse...
so it's moot.
so fix this build issue i found when fixing e build issues with meson
changes etc.
@fix
Carsten Haitzler (Rasterman) [Fri, 21 Jul 2017 08:37:33 +0000 (17:37 +0900)]
efl_wl - also add xkbcommon as it's actually used
Derek Foreman [Fri, 21 Jul 2017 21:40:17 +0000 (16:40 -0500)]
ecore_drm2: Ensure device we find can mode set
Some systems have dri devices that can't mode set, and if they're first in
the directory they'll get picked by our code and things fall apart later.
So, open the potential device and ensure it has basic functionality before
selecting it.
This is a little inefficient as it gets the device via elput twice before
it can be used - this will be addressed later as the changes are a little
more invasive to optimize.
Derek Foreman [Fri, 21 Jul 2017 21:36:06 +0000 (16:36 -0500)]
ecore_drm2: Open elput manager before drm device
We're going to need to access the device as part of the find process,
so we need a manager.
Jean-Philippe Andre [Fri, 21 Jul 2017 03:14:44 +0000 (12:14 +0900)]
hover: Return valid slot for main_menu_submenu
Fixes T5760
Mike Blumenkrantz [Fri, 21 Jul 2017 20:17:55 +0000 (16:17 -0400)]
ecore-evas-wayland: destroy frame callback on hide
ensure cursor surfaces can render again after being hidden
#TheDisappointer
@fix
Mike Blumenkrantz [Fri, 21 Jul 2017 20:17:55 +0000 (16:17 -0400)]
eldbus: print full filename when codegen write fails
Mike Blumenkrantz [Fri, 21 Jul 2017 20:17:55 +0000 (16:17 -0400)]
wayland: stop creating 1x1 surfaces on init
fix T5226
#IGot99TicketsBut1x1AintOne
Mike Blumenkrantz [Fri, 21 Jul 2017 20:17:55 +0000 (16:17 -0400)]
elm_win: instantiate csd frame after creating pointer surface
csd attempts to create sw cursors if the pointer surface doesn't exist,
so create the pointer surface before the csd to avoid duplicate cursors
#TheDisappointer
Mike Blumenkrantz [Fri, 21 Jul 2017 20:17:55 +0000 (16:17 -0400)]
elm_win: do not set invalid geometries on the window object
clamping to 1x1 is not valid, neither is trying to always position at 0,0
#IGot99TicketsBut1x1AintOne
Mike Blumenkrantz [Fri, 21 Jul 2017 20:17:55 +0000 (16:17 -0400)]
elm_win: hide pointer surface on mouse out
this should be unmapped so edje stops trying to render to it, though
at some point it could be optimized to not hide and just reuse the buffer
when showing again
#IGot99TicketsBut1x1AintOne
Mike Blumenkrantz [Fri, 21 Jul 2017 20:17:55 +0000 (16:17 -0400)]
elm_win: show pointer canvas after setting cursor
setting cursor calls resize, which is what sets the surface size
#IGot99TicketsBut1x1AintOne
Mike Blumenkrantz [Fri, 21 Jul 2017 20:17:55 +0000 (16:17 -0400)]
evas sw x11: formatting
Derek Foreman [Fri, 21 Jul 2017 19:00:51 +0000 (14:00 -0500)]
gl_drm: half fix eglGetPlatformDisplayEXT usage
Just because the #define is present doesn't mean the extension is, so we're
BAILing on egl completely on some systems for no good reason at all. (saw
this on an SGX stack)
This is still wrong. I don't want to try too hard until after the upcoming
release, though.
We should actually be testing for the presence of client extensions before
attempting to do any of this. It's entirely possible that a gl stack will
return bogus functions for these from eglGetProcAddress
Carsten Haitzler (Rasterman) [Fri, 21 Jul 2017 08:02:43 +0000 (17:02 +0900)]
efreet - dont complain if INTERNAL x extension hash of desktop is NULL
asking for an x- field from a desktop shouldnt result in null safety
checks IF the x hash is null - it's fine if it's null - that field
just doesn't eixst. if other fields were in the x hash but the desired
one wasn't it'd not complain, so why complain if there is just no x
hash?
Carsten Haitzler (Rasterman) [Fri, 21 Jul 2017 07:35:21 +0000 (16:35 +0900)]
evas xpm loader - don't error print for files that cant be mmaped
no point complaining because we can't mmap... it'd be an unloadable
file.
Carsten Haitzler (Rasterman) [Fri, 21 Jul 2017 03:28:43 +0000 (12:28 +0900)]
efl_wl - add wayland-server pkgconfig dep for headers from wayland
Carsten Haitzler (Rasterman) [Thu, 20 Jul 2017 09:13:53 +0000 (18:13 +0900)]
efreet - remove noisy debug printfs
Daniel Hirt [Thu, 20 Jul 2017 16:18:20 +0000 (19:18 +0300)]
Evas textblock: add definition to 'cursor_equal'
This is a follow-up to
c4ea25cbdbfb027d5119880ddcf0bf5ba6a5720b to fix
legacy API.
The definition was missing, so adding it.
Stefan Schmidt [Thu, 20 Jul 2017 14:15:32 +0000 (16:15 +0200)]
eldbus: codegen: free allocated strbuf in error path
fname would have been leaked if we failed to get a file_handler.
Also make sure we always create a new fname strbuf even without
a output_dir present to fix a potential unbalance between creating
and freeing.
CID: 1378112
Stefan Schmidt [Thu, 20 Jul 2017 11:46:36 +0000 (13:46 +0200)]
release: Update NEWS and bump version for 1.20.0-beta3 release
Marcel Hollerbach [Thu, 20 Jul 2017 10:00:13 +0000 (12:00 +0200)]
elm_widget: do not check for the visibility
it seems like the visibility is evalulated from different parent
relations, Just because the box (that is a container of a element) is
not visible, does not mean that the element in it is also not visible,
this somehow comes back to the box beeing deleted, the children beeing
reparented in evas, but not in elm. This is for now just a quickfix,
since those calls are just for optimization.
This fixes a load of errors once the elm_test window is closed
@fix
Jean-Philippe Andre [Thu, 20 Jul 2017 08:42:14 +0000 (17:42 +0900)]
eina_list: Ensure single init
This fixes a crash in make check when --profile=dev is explicitely
enabled. eina_list_init() is called by the standard eina_init() loop
and by eina_debug_init() as well.
Honestly I'm not sure why it doesn't crash for other people as
well...
The crash was in eolian_suite during the second eina_init (called
from eolian_init).
Jean-Philippe Andre [Thu, 20 Jul 2017 07:43:52 +0000 (16:43 +0900)]
evas: Fix a crash in emotion with GL
Ooops! When mapping for writing we can't use the same code
path as when tofree is true. This restores the path for image
writing. This basically fixes rage with GL engine.
See also
45c8e5e983
Hosang Kim [Thu, 20 Jul 2017 06:21:34 +0000 (15:21 +0900)]
slider: fix jumping handler bug.
Summary:
Actual slider value is not changed.
So when user release mouse or touch, slider value is returned
to the value by user set.
This is a partial revert of
f41e2761608fff7b070d630a738
Fixes T5745
Test Plan: elementary_test -> slider
Reviewers: jpeg
Subscribers: cedric
Maniphest Tasks: T5745
Differential Revision: https://phab.enlightenment.org/D5031
Jean-Philippe Andre [Thu, 20 Jul 2017 05:35:48 +0000 (14:35 +0900)]
evas: Restore flag pre_render_done in render_mapped
Some objects don't go through render_pre (unchanged, child
of mapped parents), even though they will go through
evas_render_mapped. Those were marked as pre_render_done
inside evas_render_mapped since it seemed to fix some issues
a long time ago.
Unfortunately, if those objects are changed their flag may
not be reset to false, which means they never go through
render_pre, leading to render issues.
I believe simply restoring the value of the pre_render_done
flag should be good enough. I don't know why it is set to
true inside evas_render_mapped but I also don't want to find
out :)
See
9ac13e4aec83ea6dadfa62e4253b1db4ffe167e8 (old)
See
87e5e70a9d888ce93ed807bb0d39d1738241ad9b (older)
Patch made with @jiin.moon
Jean-Philippe Andre [Thu, 20 Jul 2017 05:04:10 +0000 (14:04 +0900)]
evas: Avoid infinite loop on evas shutdown
If an object fails to call efl_destructor() on all the parent
classes, then it may never be removed from the layer object
inlist and never would its data be deleted either (eo keeps
it safely alive).
Here's how to test: add a "return;" statement inside an object's
destructor (eg. the window class).
Fixes T5680
Jean-Philippe Andre [Thu, 20 Jul 2017 05:22:07 +0000 (14:22 +0900)]
evas focus: Fix crash when shutting down with errors
Example test: add many evas_object_ref() to a window and click
on its X to close it.
Jean-Philippe Andre [Wed, 19 Jul 2017 08:12:35 +0000 (17:12 +0900)]
elm: Fix a safety error message
Happens when shutting down E
Jean-Philippe Andre [Thu, 20 Jul 2017 04:25:16 +0000 (13:25 +0900)]
evas gl: Rename secsym_ to eglsym_
eglDestroyImage has nothing to do with SEC...
This is a cosmetic change.
Jean-Philippe Andre [Thu, 20 Jul 2017 04:16:50 +0000 (13:16 +0900)]
evas gl: Check EGL version before using dlsym
A recent commit broke texture_from_pixmap for NVIDIA EGL
(again), because eglCreateImage is a symbol in libEGL.so
but isn't in fact implemented by the driver.
That's because eglCreateImage() is exposed by libglvnd but
the underlying EGL implementation is NVIDIA and its version
is only 1.4, not 1.5 (where the API was introduced as core).
Instead of reverting the patch, it's better to cover our
bases properly and use dlsym() only if the version is right.
Note that GetProcAddress() may return garbage function
pointers for ALL functions as dynamic virtual functions may
be created on the fly by libglvnd. So it is absolutely
necessary to check the extension string as well.
See
0255f14dc2189c71776408b00307b8488bfa4dc5
Derek Foreman [Wed, 19 Jul 2017 18:05:53 +0000 (13:05 -0500)]
gl_common: extsn is no longer unused
Also, we should throw an error when it's NULL, since it's important
for finding symbols for extended egl/gl.
Derek Foreman [Wed, 19 Jul 2017 17:24:19 +0000 (12:24 -0500)]
gl_common: Prefer unextended eglCreateImage
eglCreateImage is objectively better than eglCreateImageKHR - it allows
attributes large enough to hold pointer values. We should use it when
available and only use the older extension version as fallback.
Also, eglCreateImage is core EGL functionality so don't depend on extensions
to be present to use it. Theoretically we should be testing for
EGL version >= 1.5 but it's probably safe not to.
Derek Foreman [Wed, 19 Jul 2017 17:04:29 +0000 (12:04 -0500)]
gl_common: Remove fallback hack for wayland
This was only necessary due to bugs in the wayland_egl and gl_drm engine
that have been corrected.
Wayland has no bizarre requirements making this necessary.
Derek Foreman [Wed, 19 Jul 2017 17:02:03 +0000 (12:02 -0500)]
gl_drm: Defer gl symbol lookups until they're possible
See previous commit for details.
Derek Foreman [Wed, 19 Jul 2017 17:00:07 +0000 (12:00 -0500)]
wayland_egl: Defer gl symbol lookups until they're possible
Commit
2e6587a14b adds a gl extension string to glsym_evas_gl_symbols()
to prevent using functions that are provided by extensions that aren't
available in the current gl context.
However, we can't query the extension strings until after we create an egl
context.
Split the regular symbol lookup stuff from the gl symbol lookup stuff so
we can query at the appropriate time.
Derek Foreman [Wed, 19 Jul 2017 16:42:42 +0000 (11:42 -0500)]
wayland_egl: de-wtf the eglGetProcAddress prototype
Derek Foreman [Wed, 19 Jul 2017 16:41:32 +0000 (11:41 -0500)]
gl_drm: de-wtf the eglGetProcAddress prototype
This doesn't seem to serve any purpose other than rigorous proof that
typecasts can make literally anything compile.
Derek Foreman [Tue, 18 Jul 2017 21:10:31 +0000 (16:10 -0500)]
gl_common: Stop looking for eglCreate/DestroyImageOES
These aren't a thing. the GL_OES_EGL_image_base extension doesn't exist
and the GL_OES_EGL_image extension doesn't extend egl, because it's a gl
extension.
So let's stop being the only google match for these nonsense strings.
Jean-Philippe Andre [Wed, 19 Jul 2017 06:25:46 +0000 (15:25 +0900)]
eo: Fix deadlock due to the shared mutex
Explicit lock / unlock of the shared mutex mixed with implicit
lock / unlock when accessing the internal Eo_Object data lead
to uncaught issues such as these.
This was found by trying to run E with gfx filters under eo_debug.
Jean-Philippe Andre [Wed, 19 Jul 2017 05:01:07 +0000 (14:01 +0900)]
evas: Fix cmopilation warning
Oops I forgot to add that to the previous commit!
Jean-Philippe Andre [Wed, 19 Jul 2017 02:43:35 +0000 (11:43 +0900)]
evas: Fix support for image_data_get on snapshot
evas_object_image_data_get() is a legacy API that I made work
with snapshot objects (evas_object_image_snapshot_set()). Some
changes in the engine broke the behaviour and this patch fixes
it.
When getting the pixels from an FBO, in read-only mode, we need
to create a temporary image (pixels surface) that contains the
copy of the pixels we get from glReadPixels. This image needs
to be deleted afterwards. It is thus stored by the image object
and freed upon _image_data_set() (good) or object deletion (bad).
FBO + read-write is not supported by this API (it is supported
through buffer_map as the filters had to use that).
Fixes T5754
Jean-Philippe Andre [Wed, 19 Jul 2017 04:19:24 +0000 (13:19 +0900)]
evas engine gl: Add missing image unlock
This is a rare error path. Unlikely and not very important as
the lock/unlock doesn't actually perform any meaningful operation.
Woochan Lee [Wed, 19 Jul 2017 01:35:49 +0000 (10:35 +0900)]
multibuttonentry: Fix item resource clean up logic.
Summary:
There are four cases where items are deleted.
1. Select item and push back button.
2. Delete "X" part of item.
3. Calling elm_object_item_del().
4. MBE deleted.
Previous logic is can't support for all cases.
below problems were there.
eina_list_remove() called twice.
list data free twice.
@fix
Test Plan: elementary_test -> multibuttonentry test.
Reviewers: jpeg, cedric
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5030
Carsten Haitzler (Rasterman) [Wed, 19 Jul 2017 01:44:23 +0000 (10:44 +0900)]
emtoion gst1 - workaround gst break between 1.10 and 1.12
so emotion was using a much older (pre 1.0) buffer map mechanism for
getting video data. a new frame map api was added to gst in 1.0 but we
didnt use it. gst broke the old buffer direct mapping for some codecs
paths between 1.10 and 1.12. since we were using a very old method/api
this broke us. this also happens to fix some vaapi issues (except
where the buffer is simply never mappable ever). so this is kind of a
fix (updating us to as more modern api) and a workaround.
@fix
Marcel Hollerbach [Tue, 18 Jul 2017 15:46:02 +0000 (17:46 +0200)]
eo: clarify what extensions are.
Marcel Hollerbach [Tue, 18 Jul 2017 14:16:18 +0000 (16:16 +0200)]
elm_widget: do not register disabled logical nodes
this reduces the load of useless logical trees that
ref T5753
Marcel Hollerbach [Tue, 18 Jul 2017 14:15:11 +0000 (16:15 +0200)]
elm_widget: eval all children if the disable property has changed
since all children could have a new register state in the manager
fix T5753
Marcel Hollerbach [Tue, 18 Jul 2017 14:13:57 +0000 (16:13 +0200)]
elm_widget: disable is a property across the tree
if a widget is disabled its children are also meant to be disabled.
ref T5753
Mike Blumenkrantz [Mon, 17 Jul 2017 16:57:19 +0000 (12:57 -0400)]
eldbus: support output dir in codegen
@feature
Jean-Philippe Andre [Tue, 18 Jul 2017 09:06:17 +0000 (18:06 +0900)]
elm_test: Set label as word wrap
This exposes an elm_win sizing bug. To test (under X):
ELM_DISABLE_EXTERNAL_MENU=1 elementary_test -to "Main Menu"
The layout is not completely wrong 100% of the time, but it is
exactly correct 0% of the time. Window sizing is our flying
spaghetti monster.
Jean-Philippe Andre [Tue, 18 Jul 2017 05:35:40 +0000 (14:35 +0900)]
win: Fix main menu when not in framespace
On OSX the framespace and CSD (Client-Side Decorations) are not
supported at all... I am not able to test this case. This patch
restores the main menu functionality based on pre 1.19 themes,
where it was located inside win.edc (app content) and not in
border.edc (framespace).
Note that the initial size of a window may be wrong, eg as in
elementary_test -to "Main Menu"
Fixes T5734 (hopefully!)
Cedric BAIL [Mon, 17 Jul 2017 18:51:15 +0000 (11:51 -0700)]
ecore_evas: make sure fn_post_render callback is called last.
Should fix T5595.
Daniel Hirt [Mon, 17 Jul 2017 14:38:28 +0000 (17:38 +0300)]
Text: move Annotation type to Efl.Text.Annotate namespace
Daniel Hirt [Mon, 17 Jul 2017 09:45:36 +0000 (12:45 +0300)]
Efl text: replace all usages of cursor handle to same type
Changes cursor handle name from 'Efl.Text.Cursor.Cursor_Data' to
'Efl.Text.Cursor.Cursor'.
Also, replace all usages of Efl_Canvas_Text_Cursor
with Efl_Text_Cursor_Cursor as the handle for the cursor.
Daniel Hirt [Mon, 17 Jul 2017 06:25:32 +0000 (09:25 +0300)]
Evas textblock: fix legacy header
Fix ABI changes with const qualifiers, as well as some missing docs.
Daniel Hirt [Wed, 12 Jul 2017 06:52:59 +0000 (09:52 +0300)]
Ui internal text interactive: handle signed cursor position
CID 1377551.
Daniel Hirt [Mon, 3 Jul 2017 17:37:39 +0000 (20:37 +0300)]
Ui text: don't send focus action to cursor on init
It made the cursor animation start on init, even if widget wasn't
focused.
Daniel Hirt [Thu, 22 Jun 2017 15:03:45 +0000 (18:03 +0300)]
Ui text: add more examples to test
Daniel Hirt [Thu, 22 Jun 2017 15:03:41 +0000 (18:03 +0300)]
Ui text: set default color (white)
Daniel Hirt [Thu, 22 Jun 2017 14:59:14 +0000 (17:59 +0300)]
Canvas text: re-add support for tabs
Somehow this was left out. Fixes tabs, so you can now use "\t" and
press the "tab" key.
Daniel Hirt [Thu, 22 Jun 2017 14:17:17 +0000 (17:17 +0300)]
Ui text: use new api instead of 'style' property in the test
Andy Williams [Mon, 17 Jul 2017 12:04:30 +0000 (13:04 +0100)]
OSX: fix version detection in build
Daniel Kolesa [Mon, 17 Jul 2017 09:04:29 +0000 (11:04 +0200)]
eolian: always generate a class initializer
Because there might be hidden C implements defined, we need to
always generate the appropriate class initializer. This does not
hurt anything as the contents would have been called automatically
by Eo anyway.
@fix T5736
Jean-Philippe Andre [Mon, 17 Jul 2017 07:36:19 +0000 (16:36 +0900)]
win: Amend previous commit about modifiers
The code was invalid, so making it valid now. Explicitely marking
the modifiers as unused, as mentionned in the documentation as
well.
See
9baa8752a9170e68e9430474f26cc1e672677d8e
Carsten Haitzler (Rasterman) [Mon, 17 Jul 2017 07:02:25 +0000 (16:02 +0900)]
eina debug bt sig handle - fix build on osx for clockid_t
fix #ifdefs so it should in theory build on osx 10.11.x
@fix
Sungtaek Hong [Mon, 17 Jul 2017 06:05:19 +0000 (15:05 +0900)]
edje_signal: reduce member count when deleted edje_signal_callback is found
Summary:
- when deleted callback is found _edje_signal_callback_move_last() is called
in order to pack match array.
- during _edje_signal_callback_move_last() index skips when another deleted
callback is found, but does not reduce members_count.
- this duplicates a remaining callback and calls the callback twice.
Test Plan:
1. add multiple edje_signal_callback by edje_object_signal_callback_add()
which have the same source, signal, func but different data.
2. delete first and last callback by
edje_object_signal_callback_del/edje_object_signal_callback_del_full.
3. emit edje_signal.
4. observe one callback is called twice.
Reviewers: SanghyeonLee, conr2d, jpeg
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4985
Jean-Philippe Andre [Mon, 17 Jul 2017 05:24:30 +0000 (14:24 +0900)]
win: Fix ABI compatibility for grab modifiers
This fixes an ABI change when moving from unsigned long long
modifier mask to a simple enum. This is a fix for the release
of EFL 1.20.
Jean-Philippe Andre [Mon, 17 Jul 2017 02:00:23 +0000 (11:00 +0900)]
ecore joystick: Use const char * in API, not slstr
The API eina_slstr_ is meant to look just like const
strings, wihch means here there could instead be an internal
struct holding the name, and the API would behave the same.
Note: This API is new in 1.20
WooHyun Jung [Mon, 17 Jul 2017 04:45:08 +0000 (13:45 +0900)]
Revert "elm_widget: separate elm_widget_item codes from elm_widget.c"
This reverts commit
4f8d20c8265385f5eb7412dc96327b273cadd0b6.
I'll apply this after finishing of release.
Thanks JP to give notification.
WooHyun Jung [Mon, 17 Jul 2017 02:22:46 +0000 (11:22 +0900)]
elm_widget: separate elm_widget_item codes from elm_widget.c
This will help to focus on creating efl_ui_widget class work.
And, we need to change all the Elm_Widget_Item related logics to
factory or something else.
Jean Guyomarc'h [Sun, 16 Jul 2017 15:26:41 +0000 (17:26 +0200)]
evas-gl_cocoa: fix compilation
Booo for commit
2e6587a14b5e301e66f0ec5ef080eccb897b0fc5.
Carsten Haitzler (Rasterman) [Fri, 14 Jul 2017 09:55:25 +0000 (18:55 +0900)]
evas gl - fix compositing/native surface with egl/gles after glvnd
this fixes an issue that has cropped up in the past few months - only
nvidia drivers with egl/gles in x11... and compositing won't work
(native surface) and the introduction of libglvnd
it's a combination of libglvnd lying that it has symbols it can't
later find, new features to get core functions via procaddress that we
hadn't migrated to use AND use preferring core functions that libglvnd
will expose, so switching to KHR extensions by preference. we also
need to symmetrically use destroy image khr too...
oddly enough using procaddress purely for create/destroy image makes
wayland fail ... sofor now i'm taking advantage of the fact that
wayland has no extensions string passed in at the moment and still
doing dlsym... this is odd though.
@fix
Carsten Haitzler (Rasterman) [Thu, 13 Jul 2017 09:48:31 +0000 (18:48 +0900)]
efreet icon cache create bin - check realloc results and handle
@fix
Carsten Haitzler (Rasterman) [Thu, 13 Jul 2017 09:48:00 +0000 (18:48 +0900)]
efreet cache create binary - check realloc results and handle failure
@fix