summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Eolian parser: Allow tagging properties with @constructor.devs/q66/eolian_property_docsTom Hacohen2014-08-081-1/+7
| | | | Thanks to Quaker for the exact directions.
* eolian: consume the comment token in propertiesDaniel Kolesa2014-08-081-0/+5
| | | | This is to add syntax for later combined get/set property docs functionality.
* ecore_evas_buffer: fix dereference null return valueGwanglim Lee2014-08-081-1/+2
| | | | | | | | | | | | | | Summary: This fixes coverity CID 1210810 @fix Test Plan: N/A Reviewers: raster, cedric, stefan_schmidt, devilhorns Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1273
* edje: fix coverity defectsGwanglim Lee2014-08-083-11/+3
| | | | | | | | | | | | | | | | | | Summary: CID 1214113: logically dead code CID 1230295: dereference null return value CID 1230296: use after free @fix Test Plan: N/A Reviewers: raster, cedric, jpeg, q66 Reviewed By: q66 Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1275
* textblock: Update visual_pos before calling _size_native_calc_line_finalize.Youngbok Shin2014-08-082-4/+30
| | | | | | | | | | | | | | | | | | | | | | Summary: In items loop of _size_native_calc_line_finalize, last_it should be replaced with new item according to position. But, visual_pos is not prepared and it is always zero in the function. So, we need to update visual_pos. And when textblock only has LTR text, we can replace last_it according to item list sequence. @fix Test Plan: It includes test cases using the following test case. 1. "i<b>。</b>" 2. "。<b>i</b>" Reviewers: seoz, woohyun, sohyun, tasn Subscribers: raster, herdsman, cedric Differential Revision: https://phab.enlightenment.org/D859
* evas: fix evas events order and count.Cedric BAIL2014-08-081-2/+3
| | | | | | | | | | | Before this patch, if you were hooking to any event above EVAS_OBJECT_EVENT_IMAGE_PRELOADED you will end up receiving another event instead and be fooled into receiving the right one. In the mean time I did discover that our table is missing one item, the equivalent to EVAS_CALLBACK_DEVICE_CHANGED. I don't know how to properly fix that one for now, so put NULL instead to at least avoid a random memory access.
* build_eolian_cxx_test: Set dependencies correctly and remove BUILT_SOURCESStefan Schmidt2014-08-081-5/+4
| | | | | | | | | | This took quite a while to figure out. The two object names for the cxx callback test and callback.c have been to close. callback.c needs the eolian headers and the CXX test needs the eolian_cxx headers. Split it up and set the deps correctly. If you always run check with something like -j 9 you might have never noticed as it was very likely that the headers have been generated due to the wrong dep before.
* build/drm: Fix broken build from scratch and add missing library dependency ↵Gwanglim Lee2014-08-082-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for evas_drm engine Summary: This patch fixes following two problems: 1. libevas.so library has a dependency with ecore_drm if '--enable-drm' configure option is given. This problem is due to 'EFL_INTERNAL_DEPEND_PKG([EVAS], [ecore-drm])' in m4/evas_check_engine.m4 file. A dependency with ecore_drm should be moved to evas drm engine not libevas.so. And also this macro makes an error while installation of evas. $ make uninstall; ./configure --enable-drm; make && make install 2. missing ecore_drm dependency for evas drm engine. USE_ECORE_DRM_LIBS macro should be used for building evas drm engine with ecore_drm library. ECORE_DRM_LIBS macro doesn't have 'libecore_drm.la'. It is used for building ecore_drm library. @fix Fixes T1473 Test Plan: 1. Remove EFL libraries in installation path: $ make uninstall 2. Configure with --enable-drm: $ ./autogen.sh --enable-drm 3. $ make && make install 4. Check module.so of evas drm engine whether it has a library dependency with ecore_drm $ readelf -a $EFL_GIT/src/modules/evas/engines/drm/.libs/module.so | grep NEEDED $ readelf -a $INSTALL_PATH/lib/evas/modules/engines/drm/v-1.11/module.so | grep NEEDED Reviewers: stefan_schmidt, devilhorns, raster Subscribers: cedric, torori Differential Revision: https://phab.enlightenment.org/D1271
* evas/textblock: fix to keep original format when a markup tag is matched to ↵Youngbok Shin2014-08-082-30/+45
| | | | | | | | | | | | | | | | | | | | | | | | a style tag. Summary: We can define a style tag as opener, closer and own closer. If there is a markup tag that is matched to style tag, it is reprocessed to format node inside of textblock. But, when the format node will be converted to markup text, '/' character can be appended to text at closer and own closer style tag. Even if original markup tag does not has '/' character, it will be appended according to format node information. It makes some issue when compare input text with output text. @fix Test Plan: This commit includes test case. Reviewers: woohyun, raster, sohyun, tasn Subscribers: herdsman, cedric Differential Revision: https://phab.enlightenment.org/D1037
* evas/map: correct the interpolation in the span calculation.ChunEon Park2014-08-081-36/+4
| | | | | As far as i tested, this quality will be better in map transformation, especially in case of the object rotation on z-axis.
* ecore-x - use last modifier mask found, not first to match xserver logicCarsten Haitzler (Rasterman)2014-08-082-41/+23
| | | | | | this makes altgr not conflict as per https://phab.enlightenment.org/T1273 by using the last, not first occurance of the key in the mask modifier bits
* release: Update NEWS and bump version for 1.11.0-beta1 releaseStefan Schmidt2014-08-082-1/+4
|
* eolian: fix null serializationdevs/q66/eolian_exprsDaniel Kolesa2014-08-072-1/+4
|
* eolian: better docDaniel Kolesa2014-08-071-1/+7
|
* eolian: eolian_type_name_get now returns the eo name, not c nameDaniel Kolesa2014-08-074-7/+37
| | | | | | | so instead of "unsigned int" you get "uint". This is important for handling of expressions and cross-language interoperability. You can use c_type_get on the base type to get the C name. Also, append the appropriate suffix to number literals when calling eolian_expression_value_to_literal.
* eolian: expression improvementsDaniel Kolesa2014-08-072-36/+89
| | | | | Character literals now allow escape sequences. Strings created by eolian_expression_value_to_literal are now fully escaped.
* eolian: initial API for expression evaluationDaniel Kolesa2014-08-0719-105/+422
| | | | | | | | This commit also does several side (related) changes. Particularly, it updates the Eolian C generator to use the new API, it adds missing expr types (null, char) and masks, updates the API dealing with default return values to use expressions instead of strings and does several fixes (mainly in lexer) around the place. It also disallows single quoted strings as those are reserved for characters.
* eolian: initial eval function with Eina_Value returnDaniel Kolesa2014-08-073-72/+135
|
* eolian: initial support for expression evaluationDaniel Kolesa2014-08-065-36/+521
| | | | | There are now functions that let you evaluate Eolian_Expression. They're not exposed yet. Further improvements will come as well as public API.
* eolian: lexing of multichar binary operatorsDaniel Kolesa2014-08-043-6/+52
|
* eolian: rename public enum members to a namespaced formDaniel Kolesa2014-08-042-47/+47
|
* eolian: initial support for expression parsingDaniel Kolesa2014-08-046-59/+344
|
* eolian: actually fill in the line/column info in the handlesDaniel Kolesa2014-08-042-12/+40
|
* eolian: provide line info structure in each eolian handleDaniel Kolesa2014-08-043-2/+37
|
* eolian: use newly created implicit typedefs in legacy APIDaniel Kolesa2014-08-043-5/+21
| | | | Also update tests accordingly.
* eolian: generate implicit typedef for each classDaniel Kolesa2014-08-049-3/+72
| | | | And use these typedefs instead of just Eo in API.
* ecore_poller: no need for eo_prefixDaniel Kolesa2014-08-041-1/+0
|
* eolian: fix a bug that caused wrong comparisons of class and file nameDaniel Kolesa2014-08-047-13/+23
| | | | This also renames ecore_poll files to ecore_poller so that the class name matches.
* eolian: support for class type in c_type_getDaniel Kolesa2014-08-041-1/+3
|
* eolian: better error information + fix testsDaniel Kolesa2014-08-045-39/+51
| | | | | This provides better location info when failing to resolve EOLIAN_TYPE_CLASS. Also fixes tests I forgot to push before.
* eolian: fix tests and fix class name comparison in parserDaniel Kolesa2014-08-0417-62/+70
| | | | | This fixes the Eolian testsuite as well as adds a better way to compare where a class comes from, allowing us to guess EOLIAN_TYPE_CLASS correctly.
* eolian: add support for referencing classes as typesDaniel Kolesa2014-08-049-57/+99
| | | | | | | | | For this purpose, several other changes were made. There can now only be 1 class per file and the class name has to match the file name. Also, I replaced the list of classes with a hash, allowing for fast indexing (crucial for parser performance - otherwise it was very slow). This also adds a new API, eolian_type_class_get.
* evas tests: remove TODO comment already doneWonguk2014-08-041-1/+0
|
* build: Remove files from EXTRA_DIST that got removed.Stefan Schmidt2014-08-041-10/+1
| | | | | 3bf0425af06a5f4baac2f940e020a8c95fc498e4 removed these files from the repo but not from EXTRA_DIST.
* Revert "Eolian CXX: Get rid of built sources for the callbacks test sources."Stefan Schmidt2014-08-041-0/+4
| | | | | | | | This reverts commit 638e72fda4bd312247c133038b26d8105315176f. After this change the files did not end up in the tarball and failing make distcheck ../../src/tests/eolian_cxx/callback.c:11:25: fatal error: callback.eo.h: No such file or directory
* Edje vim: Migrate vim files to the editors repo.Tom Hacohen2014-08-0430-2890/+966
|
* ecore-drm: implement function to disable ecore drm inputs on vtMinJeong Kim2014-08-043-1/+34
| | | | | | | | | | | | | | | | | switching Summary: When vt is released by SIGUSR1, drm_inputs have to be disabled. For that this revision includes, 1. Unrefer udev monitor 2. Remove fd handler for udev monitor 3. Release dbus device Reviewers: stefan_schmidt, devilhorns, gwanglim Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1268
* Eolian CXX: Get rid of built sources for the callbacks test sources.Tom Hacohen2014-08-041-4/+0
| | | | This is not needed now that dependencies are well in place.
* Evas textblock: Correct word start/end moving at new line or line begins ↵Thiep Ha2014-08-042-1/+41
| | | | | | | | | | | | | | | | | | | with spaces Summary: Word start/end works incorrectly when it goes to new line or line begins with spaces. Ex: In elementary_test/Entry, place cursor at the end of line, press ctrl + right arrow keys: cursor moves to begin of next line. In this case, cursor should move to end of 1st word in next line. Ex2: In elementary_test/Entry, add some spaces to begin of 2nd line (" uses markup"), place cursor at the first word ("uses"), press ctrl + left arrow keys twice, cursor moves to begin of 2nd line. In this case, cursor should move to begin of last word in 1st line. This patch provides a fix by considerring next/previous text node to move cursor to correct place. @fix Reviewers: woohyun, raster, tasn Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1140
* eolian: fread fixDaniel Kolesa2014-08-041-2/+3
| | | | | Instead of 1 element of size N, we should read N elements of size 1 in order to sensibly compare the result with the result of calling ftell.
* ecore_x: don't go below 0.Cedric BAIL2014-08-041-1/+1
| | | | | | | | It seems that when things go wrong it does happen that we start with i == 0. It will then have been walking into info[-1] 'happily'. Changing the test, to first decrement and then compare should stop that issue. This should @fix T1467.
* ethumbd_slave: fix coverity defectDaniel Kolesa2014-08-041-1/+1
| | | | Fixes CID 1193232 (string not null terminated)
* doxygen: sanitize Eo TutorialJean Guyomarc'h2014-08-042-210/+217
| | | | | | | | | | | | Summary: The Eo tutorial had a tough readability. It is better now: stars are not messing around with the code, plus code does not collide anymore with a bullet in a bullet list. Reviewers: cedric, JackDanielZ, tasn Reviewed By: tasn Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1230
* edje_cc_handlers: fix coverity defectsDaniel Kolesa2014-08-041-9/+39
| | | | Fixes CID 1193224, 1193225, 1193226, 1193227, 1193230 (resource leak)
* eolian/generator: coverity fixDaniel Kolesa2014-08-041-1/+2
| | | | Fixes CID 1229130 (ignoring number of bytes read)
* Eina: Change from "" to <> for header inclusionbluezery2014-08-021-50/+50
| | | | | | | | | | | | Summary: All eina_xxx.h are expored headers. Using system path to search eina headers seems to be better. Reviewers: raster, stefan_schmidt, stefan, cedric Subscribers: stefan_schmidt, cedric Differential Revision: https://phab.enlightenment.org/D1079
* fix warning about unused varCarsten Haitzler (Rasterman)2014-08-021-3/+0
|
* ecore-evas - fix continual wakeups with unchanged canvasesCarsten Haitzler (Rasterman)2014-08-021-3/+31
| | | | | | | | this fixes a nasty bug where ecore-evas forces mainloop spins all the time due to trying to align rendraws to animator boundaries. this requires an extra evas feature to work that i just put in. @fix
* add evas changed get in order to help fix ecore-evas bugCarsten Haitzler (Rasterman)2014-08-022-0/+18
| | | | this does add an api, but it is to fix another bug in ecore-evas
* ecore-x vsync tool. fix multi-client handling so ticking continuesCarsten Haitzler (Rasterman)2014-08-021-23/+37
| | | | | a mistaking in using the wrong tick var caused ticking to stop when a client that is ticking exits while another ticks. this fixes it.