summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* first proposal of efl_ui_list for MVC list in new efl interfacedevs/sanghyeonlee/interfaceSangHyeon Lee2016-06-246-0/+918
|
* efl readme - add platfomr support info there and openbsd not supportedCarsten Haitzler (Rasterman)2016-06-141-0/+11
| | | | | add some info on platform support in readme and note than openbsd is not supported.
* elput: Fix issue of VT-Switching not workingChris Michael2016-06-131-38/+8
| | | | | | | | | | This patch fixes an issue where you could not VT-switch away from a running Enlightenment session by simplifying the vt switch code and passing the proper arguments to the dbus message. @fix Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
* ecore-evas-wayland: Minor formatting fixesChris Michael2016-06-132-4/+10
| | | | | | NB: no functional changes Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
* ecore-evas-drm: Re-enable direct input callbackChris Michael2016-06-131-4/+2
| | | | | | | | | As it seems the jpeg breakage is over wrt direct input callbacks, we can re-enable these for the drm engines @fix Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
* edje: make svg support a beta feature of edje_cc.Cedric BAIL2016-06-133-2/+11
| | | | Should we do the same with Canvas3D part ?
* eolian: fix impl func fillDaniel Kolesa2016-06-131-1/+1
| | | | | If there is a dot in the remaining part of the implement, it means it actually implements another class - do not fail in those cases.
* evas: loaders fix typo which blocked the installation of the LO loader scriptStefan Schmidt2016-06-131-2/+2
| | | | | | Its SCRIPTS not SCRIPT to make automake aware of it. Fixes T3848
* evas: loaders: fix install exec hook by adding the needed semicolonStefan Schmidt2016-06-131-4/+4
| | | | Thanks to Scimmia22 for pointing this out.
* evas: loaders: make sure we create the directory first before we create symlinksStefan Schmidt2016-06-131-0/+4
| | | | | | | | | We assume that the directory already exists here when creating the symlinks. Better make sure this is really the case. Thanks to Vtorri for pointing towards the fix. Fixes T3880 and T3875
* eolian: fix error cursor positioningDaniel Kolesa2016-06-132-36/+65
| | | | | | | | | | Previously, multi-char tokens (such as strings, docs etc) always put the error cursor to the end of the token. That was confusing, so now the cursor always appears at the beginning of the token instead (for multiline tokens, currently only docs, the line number is also adjusted to point to the first line of the doc token). @fix
* edje_calc: fix interpolate calculation of map colorsVitalii Vorobiov2016-06-131-47/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were a problem when while swithcing between states (because of program running in transition), there is SIGSEV appearing when first state has only one point color, and next state more than one. Basically it looks like this: .... part { name: "rectangle"; type: RECT; description { state: "default" 0.0; map { on: 1; color: 3 255 90 0 255; } } description { state: "moved" 0.0; map { on: 1; color: 0 0 0 255 255; color: 1 255 0 0 255; color: 2 255 90 0 255; color: 3 41 68 59 255; } } } <and program that change 'rectangle' state with transition> .... @fix
* Ecore_Input: define data type for joysticksShinwoo Kim2016-06-137-128/+668
| | | | | | | | | | | | | | Summary: This adds support for joysticks for ecore_input Reviewers: cedric, devilhorns, Sergeant_Whitespace, raster, thiepha, zmike, jpeg Reviewed By: thiepha, zmike, jpeg Subscribers: thiepha, stefan_schmidt, zmike, singh.amitesh, Sergeant_Whitespace, jgerecke, cedric, seoz Tags: #efl Differential Revision: https://phab.enlightenment.org/D1538
* win: Optimize event forward using callback add/del eventsJean-Philippe Andre2016-06-131-43/+246
| | | | | This is a common pattern, listen to EO_EVENT_CALLBACK_ADD/DEL in order to treat those events only when needed.
* win: Add event device,changedJean-Philippe Andre2016-06-132-0/+17
|
* win: Add focus events (in, out, object in/out)Jean-Philippe Andre2016-06-132-0/+66
|
* win: Add event render,preJean-Philippe Andre2016-06-132-0/+17
|
* edje_cc - new vector svg loader - fix bunch of incorrect code that segvsCarsten Haitzler (Rasterman)2016-06-131-10/+7
| | | | | | | | | | | | passing in wrond data type as a void * (no typechecking) like node->style instead of node as the function EXPECTED node not node->style also why malloc strlen of string then strcpy when strdup will do? why? fix! still doesn't work. i can't display an svg vector at all.
* evas_canvas: move evas_output_XXX API from eo to legach.Ji-Youn Park2016-06-134-235/+294
| | | | | | | evas canvas will be removed from eo. evas_output_XXX APIs are usually used by widget or e17. I decided not open these kind of APIs to eo. app can use the size of elm win instead of evas output apis.
* benchmark: eo: add missing phthread flag to linkerStefan Schmidt2016-06-131-1/+2
| | | | | /usr/bin/ld: class_simple.o: undefined reference to symbol 'pthread_spin_trylock@@GLIBC_2.2.5' //lib/x86_64-linux-gnu/libpthread.so.0: error adding symbols: DSO missing from command line
* examples: elementary: ad missing math lib to linker flagsStefan Schmidt2016-06-131-0/+1
| | | | | | | | We are using cos() and sin() in the efl_thread examples here but never linked to the math lib. Ubuntu 14.04 on Travis CI errored out with this: /usr/bin/ld: efl_thread_1.o: undefined reference to symbol 'cos@@GLIBC_2.2.5' //lib/x86_64-linux-gnu/libm.so.6: error adding symbols: DSO missing from command line
* elm - add another mkpath before monitoring a dir to enusre things workCarsten Haitzler (Rasterman)2016-06-131-0/+1
|
* ecore-con - dont complain about socket setup issues when api handles itCarsten Haitzler (Rasterman)2016-06-133-7/+7
| | | | | | ecore-con api returns failure cases and ecore-con shouldt go spamming stderr with this as it's inteded to be handled at the api level, so slience!
* evas-native-tbm: fix stride mismatch and allocate image data for converting ↵Minkyoung Kim2016-06-134-16/+63
| | | | | | | | | | | | | | | | | from yuv to rgb. Summary: 1. For converting tbm buffer from yuv to rgb, image.data should be allocated. 2. Stride should be set by info of tbm surface. 3. The number of row is height*2. but if height is odd, last row is invalid in process of _evas_video_i420. Test Plan: Local Test, Tizen2.4 Mobile Reviewers: spacegrapher, wonsik, jpeg Subscribers: cedric, dkdk Differential Revision: https://phab.enlightenment.org/D3870
* edje cc - remove debug printf i missed. :(Carsten Haitzler (Rasterman)2016-06-131-1/+0
| | | | oops. i removed the others but not this one. yes i did git diff etc.
* edje - set up eet data descriptor right with right struct and sizeCarsten Haitzler (Rasterman)2016-06-131-0/+1
| | | | this should fix T3869
* edje_cc - limit embryo_cc instances in bg to something sensibleCarsten Haitzler (Rasterman)2016-06-131-4/+64
| | | | | | | | | | | | | | so compiling current efl theme seems to spawn 178 instances of embryo_cc in the background (then collect results). this is a bit excessive and may be a source of issues. this may be causing T3874 perhaps due to embryo_cc's not launching (fork failing or something else) and we don't check if fork fails. so try limit to 8 embryo_cc's in the bg which is more reasonable than the currently "unlimited" which leads to 178 currently... i hope this fixes T3874 @fix
* Elm: fix elementary quicklaunch build on SolarisVincent Torri2016-06-133-4/+6
|
* eolian-cxx: Fix C++ compilation for lacking .eo files being generatedFelipe Magno de Almeida2016-06-132-3/+8
|
* FDO icons: improve looks of some Actions iconsDave Andreoli2016-06-1360-523/+2297
| | | | following a 16x16 grid to make them render better at small sizes
* FDO icons: added International flagsDave Andreoli2016-06-1296-4/+299
|
* FDO icons: complete the Status categoryDave Andreoli2016-06-1223-13/+1323
| | | | ...4 icons still missing
* FDO icons: complete the Devices categoryDave Andreoli2016-06-124-1/+3
|
* FDO icons: complete the Actions categoryDave Andreoli2016-06-1240-41/+7568
|
* FDO icons: complete the Emblems categoryDave Andreoli2016-06-129-3/+1058
|
* eina: Add support for eina_safepointer in promisesFelipe Magno de Almeida2016-06-115-110/+166
|
* eio: Removed wrong attribution to promise vtable from EioFelipe Magno de Almeida2016-06-111-9/+3
|
* elementary: merge code test widgets to main test appAndy Williams2016-06-115-463/+314
|
* eio: fixed Eina_Value_Type in model property mtimeLarry Jr2016-06-101-1/+1
|
* eina: add forgotten file for distcheck.Cedric BAIL2016-06-101-1/+2
|
* eina: reenable all tests that where wrongfully disabled.Cedric BAIL2016-06-101-52/+52
|
* eina: add tests suite for Eina_Safepointer.Cedric BAIL2016-06-104-1/+192
|
* eina: add generic infrastructure for a Eina_SafepointerCedric BAIL2016-06-108-3/+680
| | | | | | | | | | | This is heavily inspired from Eo_Id infrastructure. Main change are that the lower bit are always guaranteed to be zero and ignored by all function. Also it may be a little bit less efficient in some case, but we will tune it once we have real life usage of it. Eo won't be migrated for 1.18 to it as Eo_Id is deeply integrated and it is quite risky to touch it so close from a freeze. This can wait.
* edje: this API is BETA and only available to legacy for now.Cedric BAIL2016-06-101-0/+5
|
* edje: creation of scene in edje-3dperepelits.m2016-06-102-0/+66
| | | | | | | | | | | | | | Summary: Creation of scene and root node in edje-3d with all 3D-parts of edje object. Add some new methods to edje_util.c Reviewers: raster, Hermet, jpeg, cedric Reviewed By: cedric Subscribers: artem.popov Differential Revision: https://phab.enlightenment.org/D3963 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* elementary: don't use an unspecified amount of argumentsJean Guyomarc'h2016-06-102-2/+2
|
* examples: eolian_cxx: package extra headers into dist.Stefan Schmidt2016-06-101-0/+2
| | | | Without them examples are not building from tarball distribution
* examples: elementary: package needed headers into distStefan Schmidt2016-06-101-0/+3
| | | | Without them examples are not building from tarball distribution
* examples: edje: package po/mo data files into distStefan Schmidt2016-06-101-0/+3
| | | | Without them examples are not building from tarball distribution.
* eolian: remove the unnecessary subtypes APIDaniel Kolesa2016-06-1010-65/+53
| | | | | | | | | Inner type can now be retrieved as a base type of the type. If the type has two inner types or more, there is a new API that allows you to get the second inner type by calling it on the first one (same would apply to getting third via second etc.). This API is simpler to use and doesn't require an iterator.