Derek Foreman [Fri, 26 Jan 2018 16:13:25 +0000 (10:13 -0600)]
ecore_wl2: Move smarts from surface_map to buffer_map
This simplifies the surface code so that it no longer needs access to
buffer structure members.
Derek Foreman [Thu, 25 Jan 2018 23:01:23 +0000 (17:01 -0600)]
ecore_wl2: Add buffer_fit API and use it from surface code
This tries to resize the buffer's useable area to fit the specified size -
this is possible if the stride of the buffer is larger than the current
width.
Derek Foreman [Thu, 25 Jan 2018 22:11:01 +0000 (16:11 -0600)]
ecore_wl2: Add buffer age inc and use it in surface code
Technically not necessary, since we could do this with get and set, but
it's a little more convenient to the user this way.
Derek Foreman [Thu, 25 Jan 2018 22:09:19 +0000 (16:09 -0600)]
ecore_wl2: Add buffer_age_set and use it in surface code
Derek Foreman [Thu, 25 Jan 2018 22:08:20 +0000 (16:08 -0600)]
ecore_wl2: Add buffer_age_get API and use it in surface code
Derek Foreman [Thu, 25 Jan 2018 21:59:34 +0000 (15:59 -0600)]
ecore_wl2: Add API for setting buffer busy status and use it
Since surfaces will be managed by plug-ins, we need to make sure they
don't rely on internal structures.
Derek Foreman [Thu, 25 Jan 2018 21:58:35 +0000 (15:58 -0600)]
ecore_wl2: Add API for querying buffer lock status and use it
Since surfaces will be managed by plug-ins, we need to make sure they
don't rely on internal structures.
Derek Foreman [Thu, 25 Jan 2018 21:13:21 +0000 (15:13 -0600)]
ecore_wl2: Make the surface interface a pointer
Derek Foreman [Thu, 25 Jan 2018 20:57:03 +0000 (14:57 -0600)]
ecore_wl2: Move surface manager interface into public API
So people can write plug-ins for this stuff.
Derek Foreman [Thu, 25 Jan 2018 20:37:16 +0000 (14:37 -0600)]
ecore_wl2: Call check function through a pointer
We'll need this in the function array when we make surface managers
modular.
Derek Foreman [Thu, 25 Jan 2018 20:28:23 +0000 (14:28 -0600)]
ecore_wl2: Move dmabuf surface specific tests into their own function
Refactoring to allow non-dmabuf surface managers.
Derek Foreman [Fri, 26 Jan 2018 21:51:44 +0000 (15:51 -0600)]
ecore_wl2: Make session recovery more robust
Clear out the window callback when doing session recovery, and
make sure we have a valid on if we get a double commit.
This should stop a session recovery crash, and fix a small leak per
recovery.
Mike Blumenkrantz [Fri, 26 Jan 2018 19:21:02 +0000 (14:21 -0500)]
edje_cc: simplify thread tracking for exiting on signal
Mike Blumenkrantz [Fri, 26 Jan 2018 19:08:29 +0000 (14:08 -0500)]
edje_cc: make -thread option
this option was broken due to immediately triggering EMFILE errors
during thread initialization and then attempting to exit while threads
were still ongoing
some work is still needed to make this an improvement over the current
default of not using threads
@fix
Mike Blumenkrantz [Thu, 25 Jan 2018 21:46:26 +0000 (16:46 -0500)]
quicklaunch: return child pid from elm_quicklaunch_fork() on success
Marcel Hollerbach [Fri, 26 Jan 2018 12:28:39 +0000 (13:28 +0100)]
efl_ui_focus_manager_calc: prepare everything before border elem eval
otherwise we might miss the elements that are registered on prepare.
Marcel Hollerbach [Fri, 26 Jan 2018 12:20:55 +0000 (13:20 +0100)]
efl_ui_focus_manager_calc: check earlier for LOGICAL
this safes us performance
Marcel Hollerbach [Wed, 24 Jan 2018 22:41:20 +0000 (23:41 +0100)]
elm_gen****: do not call realize on items
better rely on the adapter and wait for realization so the adapter is
wether created or not even created but used with content. This fixes
item content focus, crashes at startup and a freeze in genlist test!
Dave Andreoli [Thu, 25 Jan 2018 21:51:28 +0000 (22:51 +0100)]
pyolian: improve a bit the 2 example templates
Mike Blumenkrantz [Thu, 25 Jan 2018 20:32:14 +0000 (15:32 -0500)]
ecore: prune existing thread_join callbacks during ecore_fork_reset
permitting these to persist and trigger at a later point will cause
the process to deadlock while attempting to join non-existent threads
@fix
Vitor Sousa [Thu, 25 Jan 2018 16:45:04 +0000 (14:45 -0200)]
efl_mono: fix DLL instalation path on efl-mono.pc.in
Destination of libefl_mono.dll is OS dependent, this was not translated
to efl-mono.pc.in. This commit fix this issue.
Lauro Moura [Tue, 23 Jan 2018 23:55:50 +0000 (20:55 -0300)]
eolian_cxx: Fix "unused parameter" warnings
The Klass(Klass &&other) one was causing "synthesized method ... first
required here' warnings on Windows gcc-4.8.
Lauro Moura [Tue, 23 Jan 2018 23:55:19 +0000 (20:55 -0300)]
examples: Remove duplicated build code for mono examples.
Lauro Moura [Mon, 22 Jan 2018 22:58:29 +0000 (19:58 -0300)]
tests: Check return value in tests.
GCC was complaining about ignored return values from realpath, chdir,
etc.
Lauro Moura [Mon, 22 Jan 2018 22:57:38 +0000 (19:57 -0300)]
eldbus: Uncomment tests
These were commented out during the promises changes but seems to be
working now.
Lauro Moura [Mon, 22 Jan 2018 21:13:32 +0000 (18:13 -0300)]
efl_mono: Remove unneeded code from tests
Lauro Moura [Mon, 22 Jan 2018 21:12:33 +0000 (18:12 -0300)]
eolian_mono: Add underlying pointer to ToString
It'll make easier to track where an object is coming from.
Lauro Moura [Mon, 22 Jan 2018 17:56:38 +0000 (14:56 -0300)]
eolian_mono: Fix event argument for strings
Lauro Moura [Fri, 19 Jan 2018 13:30:00 +0000 (10:30 -0300)]
eolian_mono: Fix visibility of generated events
Protected members do not make sense in sealed classes like the Concrete
ones.
Also document the placeholder field in extern structures.
Lauro Moura [Fri, 19 Jan 2018 04:28:40 +0000 (01:28 -0300)]
mono: Fix AM_TESTS_ENVIRONMENT
The export commands were messing up with the elm_suite, causing the
layout do fail to be loaded.
Cedric BAIL [Thu, 25 Jan 2018 17:54:36 +0000 (09:54 -0800)]
ecore_con: missed compiler warning.
Cedric BAIL [Thu, 25 Jan 2018 17:40:20 +0000 (09:40 -0800)]
ecore_con: restore ability for negative port on local connection.
Thanks make check.
Carsten Haitzler (Rasterman) [Thu, 25 Jan 2018 16:53:58 +0000 (01:53 +0900)]
ecore-con pass port into err print
Carsten Haitzler (Rasterman) [Thu, 25 Jan 2018 16:03:44 +0000 (01:03 +0900)]
ecore_con - give error output if port num is invalid
Shinwoo Kim [Thu, 25 Jan 2018 13:10:32 +0000 (22:10 +0900)]
elm: make elm_object_text_get return markup info as well.
This commit solves following issue
https://phab.enlightenment.org/T6642
If I set object text as below
elm_object_text_set(btn, "Some<br>text");
then elm_object_text_get(btn) returns "Some text" not "Some<br>text".
Jean-Philippe Andre [Thu, 25 Jan 2018 02:43:31 +0000 (11:43 +0900)]
win: Fix legacy win type name
Window constructor is hijacked by the finalize method, which messes up
the normal order of operations. As a result, the legacy type name for a
window object was "elm_widget" rather than "elm_win".
This fixes a crash in E (as it checks the legacy type name to verify an
object's type).
See D5748
Cedric BAIL [Wed, 24 Jan 2018 23:36:39 +0000 (15:36 -0800)]
eo: only call costly function _eo_op_desc_name_get when in debug mode.
Mike Blumenkrantz [Wed, 24 Jan 2018 21:28:49 +0000 (16:28 -0500)]
efl-wl: don't leak xkb mmaps when running under x11
ref
a32735e9a7bc537430d155a4af853d498dda2009
Dave Andreoli [Wed, 24 Jan 2018 21:26:29 +0000 (22:26 +0100)]
pyolian: improve the doc generation
Mike Blumenkrantz [Wed, 24 Jan 2018 21:16:17 +0000 (16:16 -0500)]
efl-wl: create and maintain xserver-based keymap and keyboard states under x11
when run in a non-wayland environment, it's necessary to do some extra work
in order to guarantee that the keymap remains the same in the compositor as
in the xserver and to also guarantee that modifier states are accurately
applied even when the compositor is not actively focused
fix T6631
Mike Blumenkrantz [Wed, 24 Jan 2018 21:15:24 +0000 (16:15 -0500)]
efl-wl: use image border to optimize surface rendering with 1 opaque rect
Mike Blumenkrantz [Wed, 24 Jan 2018 21:14:23 +0000 (16:14 -0500)]
efl-wl: unset kbd mods changed flag after sending modifiers
@fix
Mike Blumenkrantz [Wed, 24 Jan 2018 21:13:42 +0000 (16:13 -0500)]
efl-wl: fix no-op of setting keyboard enter on already-entered surface
@fix
Mike Blumenkrantz [Wed, 24 Jan 2018 21:07:36 +0000 (16:07 -0500)]
ecore-x: add some useful xkb function wrappers
@feature
Mike Blumenkrantz [Wed, 24 Jan 2018 21:06:29 +0000 (16:06 -0500)]
ecore-x: re-add implementation of ecore_x_connection_get()
this symbol has been missing since the removal of xcb
@fix
Mike Blumenkrantz [Wed, 24 Jan 2018 21:01:17 +0000 (16:01 -0500)]
ecore-x: filter XkbNewKeyboardNotifyEvent before emitting ecore-x event
this is only relevant to watchers of the ecore-x event if there is a keycode
change
@fix
Mike Blumenkrantz [Wed, 24 Jan 2018 20:58:28 +0000 (15:58 -0500)]
ecore-x: add more info to Ecore_X_Event_Xkb event
this event corresponds to xkb state changes which are useful when working
with xkb instances
@feature
Mike Blumenkrantz [Tue, 23 Jan 2018 21:49:52 +0000 (16:49 -0500)]
efl-wl: add functionality for directly passing through xkb objects
when used in enlightenment, it's necessary to be able to directly use
the compositor's keyboard state to ensure consistency when keypress events
are not propagated
@feature
Mike Blumenkrantz [Tue, 23 Jan 2018 21:49:37 +0000 (16:49 -0500)]
efl-wl: add docs for smart callbacks
Carsten Haitzler (Rasterman) [Wed, 24 Jan 2018 14:39:03 +0000 (23:39 +0900)]
elm - fix makefile to install missing header for elm_code
Sungtaek Hong [Wed, 24 Jan 2018 09:51:25 +0000 (18:51 +0900)]
eolian_gen: remove reference to elm_entry because it is not installed
Summary:
elm_entry.eo is not installed to system directory like
"/usr/local/share/eolian/include/elementary-1", and
eolian_gen tries to refer elm_entry.eo which results in failure.
Test Plan:
Create any eo class file which inherits Efl.Ui.Layout.
eolian_gen eo_file.eo
observe eolian_gen finishes
Reviewers: jpeg, herdsman, woohyun, Jaehyun_Cho, cedric
Subscribers: conr2d, id213sin, JongminLee
Differential Revision: https://phab.enlightenment.org/D5760
YeongJong Lee [Wed, 24 Jan 2018 09:49:04 +0000 (18:49 +0900)]
efl_ui_focus_layer: avoid a call to NULL
Summary:
efl_ui_focus_layer_enable_set(obj, EINA_FALSE) can be called before
registered_manager assigned
Test Plan:
1. EINA_LOG_LEVELS=eo:2 elementary_test -to menu
2. terminate the elemetary_test
3. check that there is no focus_manager warning about a call to NULL
Reviewers: bu5hm4n
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5759
Sungtaek Hong [Wed, 24 Jan 2018 06:50:58 +0000 (15:50 +0900)]
efl_ui_legacy: add new interface to indicate legacy widget
Summary:
For now, how to check whether a widget is legacy or not
is to check flags in private data or static flag, which is set
during elm_legacy_add.
If Efl.Ui.Legacy interface is added, it can be easilly checked
by efl_isa(obj, EFL_UI_LEGACY_INTERFACE)
Reviewers: woohyun, jpeg, cedric, Jaehyun_Cho
Subscribers: conr2d, cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5748
YeongJong Lee [Wed, 24 Jan 2018 06:36:08 +0000 (15:36 +0900)]
efl_ui_win: Avoid a call to NULL
Summary:
parent_get and smart_parent_get are called in parent_widget_get
this also remove the duplicated code
Reviewers: jpeg
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D5757
Bryce Harrington [Wed, 24 Jan 2018 02:35:01 +0000 (11:35 +0900)]
eina: Make return doxygen consistent
Summary:
Ensure @return defines error returns consistently. In several cases the
errors were explained in the body but not mentioned in the @return docs.
Drop redundant return value documentation for clarity. Some routines
were defining the return values both in @return and in the doxygen body.
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5756
Dave Andreoli [Tue, 23 Jan 2018 20:31:31 +0000 (21:31 +0100)]
pyolian test: just rename the main eolian state
Marcel Hollerbach [Tue, 23 Jan 2018 19:58:59 +0000 (20:58 +0100)]
efl_ui_focus_manager: listen to deletion for regular and logical
otherwise we might exit with a load of errors
Marcel Hollerbach [Tue, 23 Jan 2018 19:58:59 +0000 (20:58 +0100)]
elm_genlist: prepare the item when its set
so the border element is set accordingly on the parent manager which
then can be picked up for focus relations.
ref T6453
Marcel Hollerbach [Tue, 23 Jan 2018 19:56:49 +0000 (20:56 +0100)]
efl_ui_focus_composition: only rely on manager
for the case of a custom manager this resulted in wrong behaviour.
Chris Michael [Tue, 23 Jan 2018 12:00:19 +0000 (07:00 -0500)]
elput: Fix null pointer dereference
Coverity reports this as a null pointer dereference, so check for
'seat' existence before comparing with strcmp
Fixes CID1385369
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Youngbok Shin [Mon, 22 Jan 2018 12:01:27 +0000 (21:01 +0900)]
elementary config: Fix to use ELEMENTARY_BASE_DIR for configure path
Summary:
"--with-elementary-base-dir" option was ignored by recent patches on elm_config.
The macro is being used in elm_theme. It should be syncronized.
The default value of the macro is ".elementary".
@fix
Test Plan: N/A
Reviewers: raster, cedric, jpeg
Reviewed By: jpeg
Differential Revision: https://phab.enlightenment.org/D5755
Mike Blumenkrantz [Mon, 22 Jan 2018 22:34:20 +0000 (17:34 -0500)]
ecore-x: add more null checks for functions
@fix
Mike Blumenkrantz [Mon, 22 Jan 2018 21:09:00 +0000 (16:09 -0500)]
ecore-x: perform internal shutdown on io error if callback is set
avoid crashing in callback when referencing dead display or handling events
@fix
Mike Blumenkrantz [Mon, 22 Jan 2018 18:02:44 +0000 (13:02 -0500)]
ecore-wl2: correctly translate spacebar keyname into key events
fix T6620
@fix
Chris Michael [Mon, 22 Jan 2018 16:26:13 +0000 (11:26 -0500)]
ecore_drm2: fix seat matching when checking for a device with a null seat
Summary: Check to make sure that the seat from the matching device is still null.
Test Plan: Make sure that devices are not being rejected while on seat1. This depends on another patch
Reviewers: ManMower, devilhorns
Reviewed By: devilhorns
Subscribers: ManMower, devilhorns, cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5711
Chris Michael [Mon, 22 Jan 2018 16:25:15 +0000 (11:25 -0500)]
ecore_drm2: Only use a virtual terminal on seat0
Summary: Only seat0 supports virtual terminals.
Test Plan: Make sure enlightenment does not error out on non-seat0 due to a virtual terminal error. Enlightenment will not start yet on seat1 with this alone
Reviewers: ManMower, devilhorns
Reviewed By: devilhorns
Subscribers: ManMower, devilhorns, cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5710
Jean-Philippe Andre [Mon, 22 Jan 2018 10:10:48 +0000 (19:10 +0900)]
genlist: Avoid a call to NULL
elementary_test -to genlist
-> LOTS of warnings, when creating the genlist, as the items aren't
ready yet. This just avoids the WRN as recalc will happen later anyway.
Stefan Schmidt [Mon, 22 Jan 2018 08:31:35 +0000 (09:31 +0100)]
efl_selection_manager: fix compilation on osx after rename
In commit
c91ae98fd3ecf532036b16499ffd521a2e91e2a3 data was renamed but
the ifdefed osx part forgotten to update.
Myoungwoon Roy, Kim [Mon, 22 Jan 2018 09:28:24 +0000 (18:28 +0900)]
ecore_evas: Check for null ptr deref
Summary:
This patch fixes a tentative crash owing to ptr dereference.
Unlike ecore_evas_object_cursor_set and ecore_evas_object_cursor_device_set,
ecore_evas_cursor_set uses Ecore_Evas *ee before calling internal function which
internally checks null ptr dereference of Ecore_Evas *ee.
Test Plan: Executes test suite
Reviewers: cedric, raster, stefan, Jaehyun_Cho
Reviewed By: Jaehyun_Cho
Subscribers: jpeg
Differential Revision: https://phab.enlightenment.org/D5753
Change-Id: Id24aa10e044dc63c09b29aa0d29ddf52cd3f3e80
Carsten Haitzler (Rasterman) [Sun, 21 Jan 2018 10:26:38 +0000 (19:26 +0900)]
fix break of hoversels
this fixes T6627
Vincent Torri [Fri, 19 Jan 2018 21:36:08 +0000 (13:36 -0800)]
elementary: fix compilation of efl_selection_manager on windows
Test Plan: compilation
Reviewers: cedric
Subscribers: jpeg
Differential Revision: https://phab.enlightenment.org/D5751
Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
Derek Foreman [Thu, 18 Jan 2018 23:21:27 +0000 (17:21 -0600)]
wayland: Reduce number of unneccessary display flushes
b48781aa6c85c72f620c57cebff96580ddd67899 fixed multiple bugs where the
display wasn't flushed correctly, however it was a little overzealous.
Some of the flushes were added after calls that only updated internal
state, some in internal functions in which the caller was already going
to flush, and some were after wayland protocol calls that are double
buffered anyway and won't do anything until a following commit.
Also, I've removes at least one long standing flush where the recently
added flush is in a better location than the original.
Derek Foreman [Thu, 4 Jan 2018 22:49:56 +0000 (16:49 -0600)]
wayland_shm: Clean up duplicate prototypes
These were supposed to be removed when I moved the associated functions
into ecore_wl2.
Jean-Philippe Andre [Fri, 19 Jan 2018 08:48:15 +0000 (17:48 +0900)]
widget: Ooops! Fix focus break in previous patch.
Sorry... Weird that elementary_test worked fine. I might have badly
tested.
Jean-Philippe Andre [Fri, 19 Jan 2018 08:25:47 +0000 (17:25 +0900)]
widget: Move on_focus_update to Focus.Object
Following @taxi2se's recommendation. This is indeed a focus method, and
Widget already inherits from Focus.Object.
Ping @bu5hm4n who probably wants to adapt this further.
Ref T5363
Jean-Philippe Andre [Fri, 19 Jan 2018 08:13:07 +0000 (17:13 +0900)]
widget: Remove item from on_focus_update
It's legacy stuff, and always NULL.
Wonki Kim [Tue, 3 Apr 2018 05:24:01 +0000 (14:24 +0900)]
Revert "efl_ui_win : resolve ABI break"
This reverts commit
6319f09a18feced8c5df429df5cf9b66e77ff7fb.
Jean-Philippe Andre [Fri, 19 Jan 2018 06:55:19 +0000 (15:55 +0900)]
widget: Use enum for orientation_mode
This was proposed by Dave on the ML, I think it makes sense. Right now
the enum is just like the boolean, feature-wise, but it makes more sense
semantically (mode is not a bool) and allows for future extension (eg.
only apply orientation update for landscape vs. portrait modes).
There is absolutely zero testing for this in our existing codebase. Yay.
Jean-Philippe Andre [Fri, 19 Jan 2018 06:58:52 +0000 (15:58 +0900)]
cxx: Fix a trivial warning
Cedric BAIL [Thu, 18 Jan 2018 18:48:43 +0000 (10:48 -0800)]
elementary: simplify Efl.Ui.Text.Factory test.
Cedric BAIL [Thu, 18 Jan 2018 18:48:21 +0000 (10:48 -0800)]
elementary: simplify Efl.Ui.Text.Factory.Emoticons.
Daniel Hirt [Thu, 9 Nov 2017 15:53:20 +0000 (17:53 +0200)]
Canvas image: add Efl.Canvas.Text.Factory + use in Ui.Text
This interface has a simple 'create' method to create Efl.Canvas.Object
given a key.
This is used higher-up in Ui.Text in the next commit.
Ui text: add ability to set item factories
Added API to set an item factory object.
This is similar to the previous item providers (that worked with
callbacks).
You instantiate a factory object and set it on the Ui.Text object.
Each factory implements the "create" method from
Efl.Canvas.Text.Item_Factory.
This also includes 3 public factories (Image, Emoticon and Fallback):
- Image factory: creates images from added entries (key strings)
- Emoticon factory: creates emoticons by querying the theme
- Fallback: creates image, then falls back to emoticon
If no factory is set, then the fallback (internal) factory is used.
See the added "Ui.text Item Factory" test in elementary_test for an
example of usage.
@feature
Daniel Hirt [Tue, 7 Nov 2017 15:33:56 +0000 (17:33 +0200)]
Edje: remove item provider from eo api
Mike Blumenkrantz [Thu, 18 Jan 2018 15:47:01 +0000 (10:47 -0500)]
elm_win: move wayland display flush to after method calls
ref
b48781aa6c85c72f620c57cebff96580ddd67899
Bryce Harrington [Thu, 18 Jan 2018 13:19:08 +0000 (08:19 -0500)]
eina: Clarify that Eina_Matrix_Type can describe any matrix
Summary:
The Eina_Matrix_Type enum is returned by eina_matrix4_type_get and
eina_matrix2_type_get; it is not Matrix3-specific. Update doxygen
accordingly.
Reviewers: devilhorns
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5744
Bryce Harrington [Thu, 18 Jan 2018 13:16:52 +0000 (08:16 -0500)]
eina: Cleanup spelling/grammar/punctuation for Eina List
Summary:
This fixes some typos and misspellings, massages grammar in a few
places, tidys up a little whitespace, and fixes incorrect docs in a spot
or two.
Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5745
Daniel Kolesa [Thu, 18 Jan 2018 11:49:05 +0000 (12:49 +0100)]
eolian: fix redefined function checks
For one, the hash has to be populated once per inheritance tree
and the skipping on already-validated funcs was interfering with
that as the function might have been validated in another
inheritance tree already.
Also, if a class appeared multiple times in an inheritance tree,
as is common with e.g. Efl.Object, it would get added into the
hash the first time and then checked against the second time,
which would result in a strange error message about the
function being redefined in its own class.
So now we prevent both cases from happening.
Jean-Philippe Andre [Thu, 18 Jan 2018 09:39:47 +0000 (18:39 +0900)]
cnp: Rename selection data to content
This solves an issue with C# bindings where a field of a struct can not
have the same name as the struct itself. Go figure why.
Vincent Torri [Thu, 18 Jan 2018 09:04:03 +0000 (18:04 +0900)]
all: Simplify definition of EAPI
This will help in the transition from Autotools to Meson. This has been
tested on Windows for which EFL_XXX_BUILD were first introduced.
Jean-Philippe Andre [Thu, 18 Jan 2018 08:40:21 +0000 (17:40 +0900)]
widget: Remove comment
Jean-Philippe Andre [Thu, 18 Jan 2018 08:18:48 +0000 (17:18 +0900)]
efl: Merge Flipable and Orientation
No need to split: those two are used in all the same classes, since the
split between Orientation and Ui.Dir.
Note that the enum types remain in the main namespace.
Jean-Philippe Andre [Thu, 18 Jan 2018 08:13:59 +0000 (17:13 +0900)]
widget: Rename orientation_mode_disabled
Name is stupid and long, why not just invert this bool?
Jean-Philippe Andre [Thu, 18 Jan 2018 08:24:22 +0000 (17:24 +0900)]
vg: Fix warning (unused function)
Jean-Philippe Andre [Thu, 18 Jan 2018 07:31:20 +0000 (16:31 +0900)]
a11y: Remove import elm_general
Ref T5329
Jean-Philippe Andre [Thu, 18 Jan 2018 07:19:01 +0000 (16:19 +0900)]
ui.text: Use proper EO type for cnp mode
It's not working. Just "fixing" the API for consistency.
Also, we're lacking a proper hint for "markup without images".
So I think EFL_SELECTION_FORMAT_MARKUP should be without images, while
EFL_SELECTION_FORMAT_MARKUP | EFL_SELECTION_FORMAT_IMAGE would allow
markup with images.
Ping @thiep.ha
Ref T5329
Jean-Philippe Andre [Thu, 18 Jan 2018 07:18:23 +0000 (16:18 +0900)]
cnp: Use EO types to define legacy types
They are the same.
Ref T5329
Jean-Philippe Andre [Thu, 18 Jan 2018 07:20:21 +0000 (16:20 +0900)]
win: Avoid a warning
I still hate those types.
warning: case value not in enumerated type 'Efl_Ui_Win_Type' [-Wswitch]
Amitesh Singh [Thu, 18 Jan 2018 06:19:53 +0000 (15:19 +0900)]
examples: evas vg: fix the compilation of vg batman
Jean-Philippe Andre [Thu, 18 Jan 2018 05:20:49 +0000 (14:20 +0900)]
win: Remove unusable type "dnd"
Override mode is not available in the unified api. That's because you
can't do it in Wayland.
I still think those types are stupid and should all die: Win subclasses
handle them for you. Odd types can't be used anyway.
Ref T5322
Jean-Philippe Andre [Thu, 18 Jan 2018 05:13:05 +0000 (14:13 +0900)]
ui.list: Fix shadow variable warnings
node2 didn't conflict, just making it consistent with nodedata2