Daniel Hirt [Thu, 30 Jun 2016 16:53:40 +0000 (16:53 +0000)]
edje: fix return type for part_text_cursor_content_get
Another spot that should've stayed "char *" and not "string". Also added the
missing 'own'.
Found due to a warning after
ee36fdc2183a3de9569cac5ae74c0fb30d3d76db.
Stefan Schmidt [Thu, 30 Jun 2016 11:14:50 +0000 (13:14 +0200)]
ector: add basic description to renderer mixins
Stefan Schmidt [Thu, 30 Jun 2016 10:49:38 +0000 (12:49 +0200)]
ector: further document gl buffer base class
Stefan Schmidt [Thu, 30 Jun 2016 10:29:52 +0000 (12:29 +0200)]
efl: gfx_shape: add some more documentation and improve existing one
Stefan Schmidt [Thu, 30 Jun 2016 10:18:21 +0000 (12:18 +0200)]
efl: gfx_shape: document property itself and not the getters and setters
Vitalii Vorobiov [Thu, 30 Jun 2016 09:08:46 +0000 (12:08 +0300)]
edje_edit: remove useless pointer grab as it conflicts with elementary combobox
Summary:
So currently having an issue related to clip_to function from
EdjeEdit API. I am not sure about how and why combobox use pointer grabbing
(just started to use it) but when setting NULL into clip_to of edje edit it
suddenly block entire screen away from mouse. Only when point is moved out of
window and back, only then it will be able to access widgets again.
Take a look at video and maybe try example to reproduce problem
I am not sure if deleting those functions from edje_edit is actually right
decision. But it will fix the problem of course.
Test Plan: See attached video and examples in attached files
Reviewers: NikaWhite, reutskiy.v.v, Hermet, cedric, raster
Subscribers: jpeg
Differential Revision: https://phab.enlightenment.org/D4081
Daniel Hirt [Thu, 30 Jun 2016 11:32:02 +0000 (11:32 +0000)]
Revert "elm: Fix wrong use of char instead of string and void out parameter"
This reverts commit
61f52a26fb5a512e77d3141e398182107b1cf752.
This fixes the reported break on T4000.
Jean-Philippe Andre [Thu, 30 Jun 2016 07:09:09 +0000 (16:09 +0900)]
slider: fix edje warning for vertical style
Follow-up of D4117
Shuhrat Dehkanov [Thu, 30 Jun 2016 07:05:28 +0000 (16:05 +0900)]
slider: fix edje warning
Summary:
ERR<18878>:edje lib/edje/edje_calc.c:2767 _edje_part_recalc_single() file /usr/local/share/elementary/themes/default.edj, group elm/slider/horizontal/default has a non-fixed part 'elm.swallow.icon'. You should add 'fixed: 1 0'. But in order to optimize the edje calc, we add it automatically.
ERR<18878>:edje lib/edje/edje_calc.c:2767 _edje_part_recalc_single() file /usr/local/share/elementary/themes/default.edj, group elm/slider/horizontal/default has a non-fixed part 'elm.swallow.end'. You should add 'fixed: 1 0'. But in order to optimize the edje calc, we add it automatically.
Test Plan: Launch an app with slider, open the slider and observe the console output
Reviewers: cedric, singh.amitesh, jpeg
Subscribers: seoz, minkyu
Differential Revision: https://phab.enlightenment.org/D4117
Jean-Philippe Andre [Thu, 30 Jun 2016 06:20:28 +0000 (15:20 +0900)]
elm_widget: Fix mouse wheel event propagation
The wrong type was propagated. Luckily it didn't crash.
Thanks @Hermet for the report.
Jean-Philippe Andre [Thu, 30 Jun 2016 05:32:50 +0000 (14:32 +0900)]
edje: Lower ERR to INF for message about non fixed parts
This message really is just informational at best, since it's
not an error, and we even implemented an optimization.
It should be done at compile (edje_cc) time though.
See comments on D3801
Jean-Philippe Andre [Thu, 30 Jun 2016 05:23:42 +0000 (14:23 +0900)]
evas object: Move display_mode to Efl.Gfx.Size.Hint
Jean-Philippe Andre [Thu, 30 Jun 2016 02:47:38 +0000 (11:47 +0900)]
win: Remove font & image cache functions
Those actually belong to elm_config, or rather Efl.Config:
efl_config_int_set("cache_image_cache_size", 42);
efl_config_int_set("cache_font_cache_size", 1337);
Jaeun Choi [Thu, 30 Jun 2016 05:20:44 +0000 (14:20 +0900)]
layout: Add NULL check in _elm_layout_text_set function
When the parameter 'text' is NULL in elm_layout_text_set function,
the sub object data with the same part name is removed
from the layout's sub object list and the function returns immediately.
However, if the text part doesn't exist in the list,
a new sub object data is appended to the list even though the text is NULL.
This patch adds NULL check so the function can return in such cases.
Amitesh Singh [Thu, 30 Jun 2016 05:11:40 +0000 (10:41 +0530)]
photocam: add missing EOLIAN prefix
Chris Michael [Wed, 29 Jun 2016 17:08:26 +0000 (13:08 -0400)]
ecore-wl2: Fix formatting
NB: No functional changes
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Wed, 29 Jun 2016 15:48:53 +0000 (11:48 -0400)]
elementary: Fix erroneous usage of EINA_UNUSED
'data' parameter is actually used in this function, so remove mis-use
of EINA_UNUSED in function
@fix
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Wed, 29 Jun 2016 14:52:34 +0000 (10:52 -0400)]
elementary: Fix over-zealous optimization attempt
This is a fix for some over-zealous optimization attempt. Basically,
we cannot optimize out multiple calls to ecore_wl2_window_input_get as
the window can change in the for loop.
@fix
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Wed, 29 Jun 2016 13:59:32 +0000 (09:59 -0400)]
elementary: Fix bug in wl dnd where all subsequent mimetypes would be
accepted
This fixes an issue where in wl dnd, if one mimetype was accepted by a
drop, then all subsequent types would have been accepted also..
@fix
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Wed, 29 Jun 2016 13:27:17 +0000 (09:27 -0400)]
elementary: Reformat elm_cnp to be readable
NB: No functional changes, just formatting so I can read this hot mess
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Jaeun Choi [Wed, 29 Jun 2016 09:25:17 +0000 (18:25 +0900)]
Revert "layout: Add NULL check in _elm_layout_text_set function"
This reverts commit
e3fd84d1de9885aa05021603a50c0287d21d2765.
NULL checking point is wrong.
Jaeun Choi [Wed, 29 Jun 2016 07:15:46 +0000 (16:15 +0900)]
layout: Add NULL check in _elm_layout_text_set function
When the parameter 'text' is NULL in elm_layout_text_set function,
the sub object data with the same part name is removed
from the layout's sub object list and the function returns immediately.
However, if the text part doesn't exist in the list,
a new sub object data is appended to the list even though the text is NULL.
This patch adds NULL check so the function can return in such cases.
Jean-Philippe Andre [Wed, 29 Jun 2016 05:56:26 +0000 (14:56 +0900)]
ecore: Add basic test case for efl version
Not very useful test but still good to make sure we
preserve the API.
Jean-Philippe Andre [Wed, 29 Jun 2016 05:20:53 +0000 (14:20 +0900)]
elm: Add app's EFL information to EFL_MAIN and ELM_MAIN
Bindings should do the same.
Jean-Philippe Andre [Wed, 29 Jun 2016 02:49:24 +0000 (11:49 +0900)]
efl: Add Efl.Version struct and APIs
The original idea behind knowing the app's version of EFL is not
a great story. It comes from the fact that some bugs exist in
earlier versions of EFL, and some things need to be fixed. But
those fixes may break behaviour for older apps. This patch is
opening the way to the slippery slope of bug compatibility.
Unfortunately this is a requirement if we want to be able to move
forward and not break apps when we fix bugs (behaviour or ABI).
I hope we will not need to implement too many (if any) workaround
such issues. For now, this will only be used as debugging info.
EFL_MAIN() and ELM_MAIN() will both set the app's EFL version
automatically at startup time. Some internal helpers can be added
later to check how the app build-time and run-time version of
EFL differ.
@feature
Jean-Philippe Andre [Wed, 29 Jun 2016 02:15:06 +0000 (11:15 +0900)]
loop: Add main class property to return the main loop
Note: this is both @class and @property. Hope that's ok for
all bindings.
This returns same as ecore_main_loop_get() (which now uses the eo
api instead).
Ping @cedric (so he can check this patch).
Jean-Philippe Andre [Wed, 29 Jun 2016 02:08:51 +0000 (11:08 +0900)]
win: Change type of composite interface for Efl.Config
Use Efl.Config.Global instead, since it's what the window will
expose, and it provides access to the "profile" config options.
Jean-Philippe Andre [Wed, 29 Jun 2016 01:58:57 +0000 (10:58 +0900)]
evas: Add & fix legacy APIs for text filters
Those are marked as EINA_DEPRECATED since they are for legacy only,
and EDC is the preferred method.
Note: these are new in EFL 1.18.
I would rather have not added them as legacy APIs. This patch is
here to align to Tizen which added them by mistake. Also, remove
the "name" argument from filter_program_set as it's not required,
and also not there in Tizen's code base.
Sorry for the mess.
Jean-Philippe Andre [Wed, 29 Jun 2016 01:24:39 +0000 (10:24 +0900)]
evas: Add 2 EO examples for maps
Those are copy & paste & eo-ified versions of the legacy
samples. I did not touch the other legacy APIs, only maps.
Jean-Philippe Andre [Tue, 28 Jun 2016 06:40:41 +0000 (15:40 +0900)]
evas: Implement evas map support in eo as a mixin
It relies a bit on evas legacy APIs and will only work on
evas objects (Efl.Canvas.Object) for now.
The main difference with Evas_Map is that there is no
separate map object, as the functions apply directly to
any canvas object.
For convenience, most functions will automatically populate
the map if there was no previous map info. While this may
be convenient, the object's size changes still need to
be tracked to update the map info.
Jean-Philippe Andre [Tue, 28 Jun 2016 05:21:58 +0000 (14:21 +0900)]
evas: Move evas_map APIs from common to legacy header
+ define Evas_Map struct in Evas_Legacy.h (not eo)
Otherwise, just a simple cut & paste
Jean-Philippe Andre [Tue, 28 Jun 2016 05:12:17 +0000 (14:12 +0900)]
evas: Move map to a separate mixin
Evas map is not translated to proper eo apis yet.
Efl.Canvas.Map will be a mixin implementing the evas map
API in a bindable API.
Derek Foreman [Tue, 28 Jun 2016 20:57:41 +0000 (15:57 -0500)]
ecore_drm: Don't pass uninit garbage to drm ioctls
Hasn't actually caused us any problems so far, but valgrind
whines about it, so fixing anyway.
Cedric BAIL [Tue, 28 Jun 2016 18:15:50 +0000 (11:15 -0700)]
elementary: try to keep const type in config test.
Cedric BAIL [Tue, 28 Jun 2016 18:10:51 +0000 (11:10 -0700)]
ecore: fix typo in test.
Thanks Stefan.
Marcel Hollerbach [Tue, 28 Jun 2016 14:46:51 +0000 (16:46 +0200)]
ecore_wl2: use ECORE_WL2_EVENT_DATA_SOURCE_END
this event is emited each time the dragging is cancled. So the dragwin
should be deleted here.
Daniel Juyung Seo [Tue, 28 Jun 2016 14:30:30 +0000 (23:30 +0900)]
elementary/fileselector: Do not use deprecated APIs.
Chris Michael [Tue, 28 Jun 2016 13:01:38 +0000 (09:01 -0400)]
ecore-wl2: Prevent duplicated mouse up events
If you touch downs and ups about all of fingers,
that is sufficient condition to call ecore_wl_input_ungrab().
And then one mouse up event is generated from that function.
So if you set a callback about ECORE_EVENT_MOUSE_BUTTON_UP,
you can watch two mouse up events are occurred.
This is a port of the patch for Ecore_Wayland library (deprecated) to
the newer Ecore_Wl2 library.
ref D4112
@fix
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
JengHyun Kang [Tue, 28 Jun 2016 13:01:09 +0000 (09:01 -0400)]
ecore-wayland: Prevent duplicated mouse up events.
Summary:
Prevent duplicated mouse up events generated from input_ungrab.
If you touch downs and ups about all of fingers,
that is sufficient condition to call ecore_wl_input_ungrab().
And then one mouse up event is generated from that function.
So if you set a callback about ECORE_EVENT_MOUSE_BUTTON_UP,
you can watch two mouse up events are occurred.
Test Plan: Touch and release. And watch mouse up events.
Reviewers: raster, zmike, devilhorns
Reviewed By: devilhorns
Subscribers: ohduna, input.hacker, cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4112
Jean-Philippe Andre [Tue, 28 Jun 2016 10:29:31 +0000 (19:29 +0900)]
eo: Fix composite objects destruction
This walks the list and removes objects from it. Not
using EINA_LIST_FREE as the actual list_remove is done
inside eo_composite_detach.
Jean-Philippe Andre [Tue, 28 Jun 2016 10:20:37 +0000 (19:20 +0900)]
evas: Use proper type for stringshares
Jean-Philippe Andre [Tue, 28 Jun 2016 10:17:24 +0000 (19:17 +0900)]
evas: Fix double stringshare_del
A stringshare for font "style" was not properly duplicated,
resulting in lots of invalid stringshare pointers.
Ping @id213sin (commit
2ce33e73a7d48d4b54a075c07f12c0162).
Stefan Schmidt [Tue, 28 Jun 2016 09:34:16 +0000 (11:34 +0200)]
tests: elm: make cnt unsigned for correct compare
Not really somethign we would hit here but still better to change this.
tests/elementary/elm_test_config.c: In function ‘elm_config_profiles’:
tests/elementary/elm_test_config.c:206:12: warning: comparison between signed and unsigned integer
expressions [-Wsign-compare]
fail_if(cnt != eina_list_count(list));
Stefan Schmidt [Tue, 28 Jun 2016 09:32:46 +0000 (11:32 +0200)]
tests: elm: remove wrong const for Eina_List
We are assigning somethign new to this list so no chance for const here.
tests/elementary/elm_test_config.c: In function ‘_eina_list_string_has’:
tests/elementary/elm_test_config.c:174:11: warning: assignment discards ‘const’ qualifier from
pointer target type [-Wdiscarded-qualifiers]
EINA_LIST_FOREACH(list, l, s)
Jinyong Park [Tue, 28 Jun 2016 04:33:37 +0000 (13:33 +0900)]
popup: remove max_sc_w because it's duplicate job
Summary:
max_sc_w decide popup's "content" area size when popup scrollable is TRUE.
but in popup's edc, "elm/popup/content/XXXX" has min size when scrollable is TRUE. (and it is content area layout)
max_sc_w has fixed value, so I think deciding by edc is better than fixed code.
Test Plan:
1. elementary_test -to popup
2. check "Enable popup scroll"
3. click any list item.
4. observe popup and compare before this patch.
Reviewers: singh.amitesh, herb, Hermet, raster
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4113
Youngbok Shin [Tue, 28 Jun 2016 01:49:37 +0000 (10:49 +0900)]
evas: add pattern "style" when evas query fonts via fontconfig
Summary:
Some fonts can have weird style and weight value.
If a font has a style name as "medium" and a weight value as "semi-bold",
Evas can't load the font using "font=Somefont:style=Medium".
It only can be load with "font=Somefont:style=SemiBold" or
"font=Somefont:weight=SemiBold".
On the other hand, it could be loaded when I tested the following commands.
fc-match -s ":family=Somefont:style=Medium" or
fc-match -s ":family=Somefont:weight=SemiBold"
Evas also should load font based on font's style name.
@fix
Test Plan: N/A
Reviewers: tasn, herdsman, cedric, woohyun, raster
Reviewed By: raster
Subscribers: Blackmole, z-wony, jpeg
Differential Revision: https://phab.enlightenment.org/D4108
Hermet Park [Tue, 28 Jun 2016 04:15:56 +0000 (13:15 +0900)]
elementary/layout: changed to Evas_Object * from Elm_Layout * in legacy header.
if EFL_EO_API_SUPPORT is not defined in user side, this will break the build.
because Elm_Layout type is defined in eo header file.
Just keep using Evas_Object * in legacy yet.
Jean-Philippe Andre [Tue, 28 Jun 2016 01:52:28 +0000 (10:52 +0900)]
efl: Remove eo struct Efl.Gfx.Color
So far this was protected behind ifdef EO_API_SUPPORT. It also
was not used internally. Dropping this before the release, since
we will soon have a (hopefully) better solution to handle various
color representations.
Jee-Yong Um [Tue, 28 Jun 2016 01:31:55 +0000 (10:31 +0900)]
edje: refactor edje color class API
Summary:
refactor setter and getter of edje color class and
move edje_color_class_set/get() into Edje.Object as class functions
Reviewers: cedric, jpeg
Reviewed By: jpeg
Subscribers: kimcinoo
Differential Revision: https://phab.enlightenment.org/D4109
Note by jpeg:
The EO APIs introduced here will be revisited in upcoming patches,
in particular:
1. avoid non-premultiplied colors
2. move to a common color class interface
Shilpa Singh [Mon, 27 Jun 2016 18:30:01 +0000 (11:30 -0700)]
elm_atspi_bridge: add bounds-changed signal sending code.
Summary:
Add bounds-changed signal, this signal can be sent on geometry change
of any evas object when atspi mode is enabled.
Test Plan:
connect to "object:bounds-changed" signal on screen-reader.
when signal BoundsChanged is emitted from elm using elm_interface_atspi_accessible_bounds_changed_signal_emit, the signal should be received
and we should be able to access geometry.
Signed-off-by: Shilpa Singh <shilpa.singh@samsung.com>
Reviewers: cedric, lukasz.stanislawski, kimcinoo
Subscribers: govi, rajeshps, cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4100
Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
Jee-Yong Um [Mon, 27 Jun 2016 18:18:02 +0000 (11:18 -0700)]
elementary/layout: attach edje object API with eo compositing
Test Plan: make check
Reviewers: Hermet, jpeg, cedric
Subscribers: slotus.lee
Differential Revision: https://phab.enlightenment.org/D3871
Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
Minkyu Kang [Mon, 27 Jun 2016 18:12:16 +0000 (11:12 -0700)]
label: set sliding only if label size is valid
Summary:
When call slide_go before label is resized, setting the sliding is a meaningless.
This patch is for reducing redundant operations.
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Signed-off-by: Deepjyoti Dutta <deepjyoti.d@samsung.com>
Test Plan: elementary_test -to "label slide"
Reviewers: cedric, Hermet
Subscribers: seoz, jpeg
Differential Revision: https://phab.enlightenment.org/D4089
Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
Marcel Hollerbach [Mon, 27 Jun 2016 15:31:59 +0000 (11:31 -0400)]
ecore_wl2: Fix dnd breakage when focus leaves window
Summary:
If dnd in the same window is activated, the focus goes away from the
ecore_wl2 window to the dnd window, after that focus.pointer is NULL.
After focus.pointer is NULL ev->win of all the events will be 0 which
breaks dnd-motions, drop and end.
With prev_pointer beeing the last focused window, we can simply set this
window as event window. After that dnd with jesus works perfectly.
@fix
Reviewers: devilhorns
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4093
Daniel Hirt [Mon, 27 Jun 2016 15:34:21 +0000 (15:34 +0000)]
Ui text: make elm test editable
Daniel Hirt [Mon, 27 Jun 2016 15:16:50 +0000 (15:16 +0000)]
Canvas text: fix format annotations deletion
Daniel Hirt [Wed, 22 Jun 2016 17:02:32 +0000 (17:02 +0000)]
Ui text: defer decorations to one job
Also, remove callbacks on the deletion.
Daniel Hirt [Wed, 22 Jun 2016 12:12:15 +0000 (12:12 +0000)]
Ui text: port item support from Entry
This uses the annotations API to retrieve items and their geometries, instead of
the old format API.
Daniel Hirt [Wed, 22 Jun 2016 12:05:47 +0000 (12:05 +0000)]
Ui text: add cursor_new method
The cursor object is meant to be instantiated in the following manner:
eo_add(EFL_CANVAS_TEXT_CURSOR_CLASS, text_obj,
efl_canvas_text_cursor_text_object_set(eo_self, text_obj));
This can't be done directly on the Ui Text object, so it has to be with an
method call, sadly.
@feature
Jean-Philippe Andre [Mon, 27 Jun 2016 11:36:24 +0000 (20:36 +0900)]
evas: Fix bad clipping with proxy
evas-images2 example was broken due to excessive clipping.
This is one more issue with the cached clip geometry.
By default proxy_src_clip is true. The doc (that I wrote)
mentions that it means both objects (image proxy & source)
share the same clipper. So, this does not mean that the proxy
is clipped to the geometry of the source (this can be useful
in some cases, when replacing an object with a proxy to apply
some kind of effect on it... but this could be rare).
Thanks Amitesh for the report.
@fix
Jean-Philippe Andre [Mon, 27 Jun 2016 08:26:32 +0000 (17:26 +0900)]
ecore: Replace TABs with spaces
Jean-Philippe Andre [Mon, 27 Jun 2016 07:40:59 +0000 (16:40 +0900)]
elm_main: Remove useless shadowing variable
Jean-Philippe Andre [Mon, 27 Jun 2016 07:40:10 +0000 (16:40 +0900)]
elm test: Remove unused variable
Jean-Philippe Andre [Tue, 31 May 2016 06:31:17 +0000 (15:31 +0900)]
Evas events: Implement support for hold event
Shuhrat Dehkanov [Mon, 27 Jun 2016 07:16:00 +0000 (16:16 +0900)]
Fix 'maybe used uninitialized' warning
Summary:
bin/edje/edje_cc_out.c: In function ‘data_write_images’:
bin/edje/edje_cc_out.c:1164:7: warning: ‘f’ may be used uninitialized in this function [-Wmaybe-uninitialized]
if (!f) return EINA_FALSE;
^
bin/edje/edje_cc_out.c:1154:15: note: ‘f’ was declared here
Eina_File *f;
^
Reviewers: cedric, jpeg
Reviewed By: jpeg
Subscribers: seoz, jpeg
Differential Revision: https://phab.enlightenment.org/D4101
Jean-Philippe Andre [Mon, 27 Jun 2016 07:00:50 +0000 (16:00 +0900)]
evas: Make shaders regen an opt-in behaviour
While the shaders automatic regeneration is very useful when
working on shaders, it has been the source of too many
build breaks.
So I'm making this regeneration an opt-in.
You work on shaders?
Set the env var EFL_SHD_REGEN=1
Jean-Philippe Andre [Mon, 27 Jun 2016 06:30:47 +0000 (15:30 +0900)]
Revert "evas: Fix compilation when using different build directory"
This reverts commit
3c13ef14e3511611cabf184ff0b83c264b3e620d.
This introduced new build breaks, especially with in-tree builds.
In particular, DIR was not defined. See T3975.
I'll make the shaders regen an opt-in rather than on by default.
Jiwon Kim [Mon, 27 Jun 2016 06:04:20 +0000 (15:04 +0900)]
elm_entry: restrict focus region to inside of entry object area
Summary:
Focus region must be located in entry object.
Therefore if it get out of entry,
it just returns last cursor position that can be shown.
@fix
Test Plan:
1. elementary_test "Entry on Page Scroll"
2. click 2nd btn and close popup
3. page should not be scrolled
Reviewers: raster, herdsman, id213sin, woohyun, tasn, cedric
Subscribers: jpeg
Differential Revision: https://phab.enlightenment.org/D4072
Jean-Philippe Andre [Fri, 24 Jun 2016 08:17:20 +0000 (17:17 +0900)]
evas object: Hide "del" event
In EO world, we should stick to EO_EVENT_DEL.
Jean Guyomarc'h [Sun, 26 Jun 2016 21:06:22 +0000 (23:06 +0200)]
elementary: add test for external icons
The ExtIcon elementary test shows how edje external icons
can be used.
Jean Guyomarc'h [Sun, 26 Jun 2016 17:42:21 +0000 (19:42 +0200)]
edje_external: fix external icon handling
External icons were handled with a global variable, which reason
to exist seem quite weird. It seems to me it was used to retain
some states of the actual parameters to get them later without having
access to the real parameters.
I don't really get how this would have worked with more than one
icon. When I tried to animate an external icon, with two states,
there were leaks and memory corruption... Now both are gone.
@fix
Jean Guyomarc'h [Fri, 17 Jun 2016 06:18:51 +0000 (08:18 +0200)]
eina: fix typos in eina_rectangle doc
Jean Guyomarc'h [Sat, 25 Jun 2016 10:24:35 +0000 (12:24 +0200)]
elementary: include Ecore_Cocoa.h normally
Guards are not necessary anymore.
Jean Guyomarc'h [Sat, 25 Jun 2016 10:21:44 +0000 (12:21 +0200)]
ecore_cocoa: release Ecore_Cocoa as stable
Jean Guyomarc'h [Sat, 25 Jun 2016 10:13:59 +0000 (12:13 +0200)]
ecore_cocoa: mark clipboard API as BETA
Also, Since the API is beta, don't make is available to Doxygen.
Marcel Hollerbach [Sat, 25 Jun 2016 11:06:41 +0000 (13:06 +0200)]
elm: Always connect to wl when enforced
This is a followup on
ca55a920d9a5f6a4274e40fcf901a89e622c3007.
This fixes cnp/dnd for applications started outside of the weston
session. (There are still more problems with dnd and cnp)
Hermet Park [Sat, 25 Jun 2016 03:37:23 +0000 (12:37 +0900)]
edje/example: add a missing closing bracket in svg.
Felipe Magno de Almeida [Fri, 24 Jun 2016 21:35:04 +0000 (18:35 -0300)]
evas: Fix compilation when using different build directory
Cedric BAIL [Fri, 24 Jun 2016 23:45:22 +0000 (16:45 -0700)]
elementary: return an exit code at exit with the new EFL_MAIN macro.
Cedric BAIL [Fri, 24 Jun 2016 23:44:59 +0000 (16:44 -0700)]
ecore: add the possibility to return an exit code when leaving the main loop.
Cedric BAIL [Fri, 24 Jun 2016 22:32:21 +0000 (15:32 -0700)]
elementary: introduce EFL_MAIN and rely on Eo_Event to call the initialisation function.
FIXME: Find a way to return an exit value. Maybe on efl_loop_quit ?
Hermet Park [Fri, 24 Jun 2016 18:42:18 +0000 (03:42 +0900)]
Revert "elm_entry: fix duplicate text set"
This reverts commit
0959e87d999f424341acbc62a5934ad56134f99b.
This broke the entry behavior that introduced enventor critical issue also.
It looks like a timing issue, but i didn't deep into further.
Please check a simple test case.
https://phab.enlightenment.org/F38614
Before/after applying your patch, the result is totally different.
Marcel Hollerbach [Fri, 24 Jun 2016 12:44:50 +0000 (14:44 +0200)]
evas: do not unref if there is no clipper
check if there is a clipper set before accessing it. This fixes crashes
of the drm engine.
Marcel Hollerbach [Fri, 24 Jun 2016 10:38:05 +0000 (12:38 +0200)]
ecore_wl2_input: Fix key keyname pairs
before key and keyname could have been filled invalid, for example the
character "ö" from the german layout produced "Odiaeresis" instead of ö.
This commit also documents and refactors _ecore_wl2_input_key_translate.
I added the documentation for later use, it was hard to find out why
this was done.
The function also drops the input now if invalid control codes would
have been generated, this is equivalent to the behaviour in x. So
applications cannot get confused by codes which dont exist.
It also doesnt check if there is actual output by checking the highest
bytes anymore, it just tries to create a utf8 character. This fixes
arabic greek and korean keyboard input on wl.
If this breaks the input for some user, feel free to contact me.
This fixes T3073.
Hermet Park [Fri, 24 Jun 2016 09:51:38 +0000 (18:51 +0900)]
evas canvas: fix a proxy+map rendering issue.
This fix is wrt the non-updation of the proxy object.
If a source of a proxy object has mapped objects among its children,
Rendering frame won't be correct while they were keeping changing.
The reason is, evas_object_smart_changed_get() couldn't figure those changes
out correctly because of cached-clip visibility.
Cached-clip of smart member can't be used for map surface updation,
because cached-clip includes the visiblity status out of the smart object.
So, loose the criteria to make it rendering smart members in map.
Jean-Philippe Andre [Thu, 23 Jun 2016 12:55:58 +0000 (21:55 +0900)]
config: Prevent accidental deletion of the config object
Jean-Philippe Andre [Thu, 23 Jun 2016 12:54:11 +0000 (21:54 +0900)]
config: Test profile APIs
Jean-Philippe Andre [Thu, 23 Jun 2016 12:39:33 +0000 (21:39 +0900)]
win: Attach config API with eo compositing
Jean-Philippe Andre [Thu, 23 Jun 2016 12:29:55 +0000 (21:29 +0900)]
config: Add support for profiles and save
Most of these functions actually shouldn't be used by
standard applications. Some are hidden behind @protected.
flush_all() and reload() have not been implemented, on
purpose (save() should flush, and reload is automatic).
Jean-Philippe Andre [Thu, 23 Jun 2016 11:02:41 +0000 (20:02 +0900)]
config: Implement support for audio_mute
Instead of being a key "audio_mute" + another key "channel"
I've simply implemented a number of different keys:
audio_mute (= all)
audio_mute_all
audio_mute_effect
...
Jean-Philippe Andre [Thu, 23 Jun 2016 10:33:34 +0000 (19:33 +0900)]
config: Simplify Efl.Config API, make C helpers only
This removes the mixin functions and uses static inline functions
instead. Much cleaner, looks the same to C devs.
Jean-Philippe Andre [Thu, 23 Jun 2016 09:46:04 +0000 (18:46 +0900)]
config: Add support for some enums
Jean-Philippe Andre [Thu, 23 Jun 2016 07:45:32 +0000 (16:45 +0900)]
elm: EO-ify some elm_config enums
Elm_Focus_Autoscroll_Mode
Elm_Softcursor_Mode
Elm_Slider_Indicator_Visible_Mode (rename only)
Elm_Focus_Move_Policy (rename only)
This is for Efl.Config API.
Jean-Philippe Andre [Tue, 21 Jun 2016 08:54:56 +0000 (17:54 +0900)]
efl: Introduce general Efl.Config API
This is to port elm_config to EO APIs.
The current implementation relies on the legacy API, by
simply forwarding calls.
The new API is simply efl_config_set("config_name", value)
where value is an Eina_Value (aka. generic_value).
The C interface proposes a few helpers like config_int_set,
config_double_set, etc...
Unfortunately at the moment, not all config options are
supported, as some rely on more complex types:
- lists
- color class and multiple arguments
- unset functions
- enums
Profiles are also not handled at this point.
@feature
Jean-Philippe Andre [Fri, 24 Jun 2016 05:36:10 +0000 (14:36 +0900)]
evas: (Try to) fix shaders gen without breaking everything
So... adding the .x files to BUILT_SOURCES means they would
get deleted during clean. This was bad, but turned to be awful
when this made the check for writability fail.
See:
8a273158788d630e56b4dc14cdd44f0eaae6b7b5
2b8912462e0ec81efb8e30a63383b811f52e16f5
This commit reverts:
0b69356f1bbceab3261835bc2d4632f8f4669206
Notes:
Please revert if this breaks the build for anyone.
I'm pretty sure the use of top_srcdir is not recommended the
way I've done it.
I hate autofoo.
Subhransu Mohanty [Fri, 24 Jun 2016 06:16:03 +0000 (15:16 +0900)]
svg/example: upload the correct svg file
Reviewers: cedric, jpeg
Reviewed By: jpeg
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4088
Subhransu Mohanty [Fri, 24 Jun 2016 06:15:54 +0000 (15:15 +0900)]
edje: fix the order of applying transformation when creating vg tree.
Reviewers: cedric, jpeg
Reviewed By: jpeg
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4087
Subhransu Mohanty [Fri, 24 Jun 2016 06:15:43 +0000 (15:15 +0900)]
evas vg: don't apply transformation to the origin point
Summary: Which will apply translate property twice once to shape and once to origin.
Reviewers: cedric, jpeg
Reviewed By: jpeg
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4086
Hermet Park [Fri, 24 Jun 2016 02:33:04 +0000 (11:33 +0900)]
evas/canvas: rewrite a previous patch,
ed444b698b63e0086812062abb9e3065360eb0b2
Reviwed further, I found out the origin shouldn't be accumulated with
previous clippers origin. I forgot this function is recursive
function.
Carsten Haitzler (Rasterman) [Fri, 24 Jun 2016 00:53:37 +0000 (09:53 +0900)]
Revert "evas: Fix distcheck by disabling shaders generation"
this breaks the simplest configure + make ... so obviously it's broken
Stefan Schmidt [Thu, 23 Jun 2016 21:27:43 +0000 (23:27 +0200)]
po: catchup with file rename to efl_ui_video in POTFILES.in
In commit
549e274acb69131b5fb7dccc1659372cef7a6572 this file was renamed but
POTFILES.in not updated.