summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add docs from existing APIs.devs/youngbok/elm_interface_nextYoungbok Shin2016-05-235-90/+232
| | | | It also add an interface: efl_input_panel.eo
* Initialize for new text related interfacesYoungbok Shin2016-05-195-0/+263
|
* eina test suite vector - make correctness range 2x as bigCarsten Haitzler (Rasterman)2016-05-181-1/+1
| | | | | | | make correctness rand 2 * DBL_EPSILON due to compilers, fastmath and being a little inaccurate sometimes at the bottom end of precision. @fix
* ecore audio test - improve samples for ecore audio testCarsten Haitzler (Rasterman)2016-05-186-12/+12
|
* ecore wl2 - remove warning with unused goto labelCarsten Haitzler (Rasterman)2016-05-181-1/+0
|
* efl - key/data/value/obj attach to eo objects - make these propertiesCarsten Haitzler (Rasterman)2016-05-1811-70/+64
| | | | | | | | | | | the key data now is a property so they come out in bindings really nicely like: obj.key_data["blah"] = x; x = obj.key_data["blah"]; etc.
* eolian: add event_prefix and have classes follow that or eo_prefix by defaultDaniel Kolesa2016-05-17107-76/+175
| | | | | | | | | | Previously events used to use class name as a prefix and ignored eo_prefix when specified. This is no longer the case. Events follow eo_prefix by default now. In order to get around this for classes where this is undesirable, a new field event_prefix was added which takes priority over eo_prefix. If neither is specified, class name is used like previously. @feature
* Panes: Use orientation interface APIs instead of horizontal set/get APIsAmitesh Singh2016-05-185-38/+84
| | | | Differential Revision: https://phab.enlightenment.org/D3919
* Eo: Remove eo_del() and make eo_unref() the replacement.Tom Hacohen2016-05-1757-156/+132
| | | | | | | | | | We used to have eo_del() as the mirrored action to eo_add(). No longer, now you just always eo_unref() to delete an object. This change makes it so the reference of the parent is shared with the reference the programmer has. So eo_parent_set(obj, NULL) can free an object, and so does eo_unref() (even if there is a parent). This means Eo no longer complains if you have a parent during deletion.
* Eo name: Rename Eo.Base.id to Eo.Base.name.Tom Hacohen2016-05-173-53/+53
| | | | | This is there to reduce confusion with Eo_Id and also the name is just better.
* ecore: do not create another main loop objectCedric Bail2016-05-172-3/+7
| | | | | | | | So ecore main loop does restart everything with an main loop shutdown and init when it detect a bad fd. This can happen if you del a fd after you have destroyed it. Something terminology is doing (and should be legal), but that then ended up with a main loop with no event handler registered and the process was looking like stuck with nothing happening.
* docs: progressbar: correct minor typosShuhrat Dehkanov2016-05-172-9/+4
| | | | | | | | Reviewers: q66, stefan_schmidt Subscribers: cedric, seoz, jpeg Differential Revision: https://phab.enlightenment.org/D3950
* edje: attaching viewport of camera to the image partperepelits.m2016-05-174-27/+60
| | | | | | | | | | | | | | | | Summary: According to D3710 new field "camera" in edc was added for IMAGE parts. It is the name of the CAMERA part to set its viewport as a source of image if no image name is given. Reviewers: raster, Hermet, cedric Reviewed By: cedric Subscribers: jpeg, artem.popov Differential Revision: https://phab.enlightenment.org/D3777 Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
* elementary: mapbuf is legacy for now and should be automatic in the future.Cedric Bail2016-05-175-17/+3
|
* Eo: Rename an internal function to reduce confusion.Tom Hacohen2016-05-173-20/+20
| | | | | @raster added eo_id_get() which was confusing because we already had _eo_id_get() that was used internally.
* Eo children: Make children tracking an inlist instead of a list.Tom Hacohen2016-05-173-15/+43
| | | | | This saves us a pointer in every eo object and a pointer indirection when accessing children.
* Eo: change refcount to short from int.Tom Hacohen2016-05-171-2/+2
| | | | A short is more than enough for reference counting.
* Edje_edit: generate code of the image sets.Mykyta Biliavskyi2016-05-171-16/+130
| | | | | Added support generate the edc code of the image sets in the image top level block. And correct support inside the image.normal attribute.
* popup: add popup default scrollable flag config for other profiles.Jinyong Park2016-05-178-23/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | Summary: The default scrollable flag of popup can be different in each profiles. So I added the scrollable configuration of popup. @feature Test Plan: 1. Before 1) elementary_test -to popup 2) resize window to smaller 3) Click 15th item, "popup-center-title + genlist content + 1 button" 4) Then popup will show, but its list is very long, only small part of popup could be shown. 2. After Patch 1) change "popup_scroller" value to 1 in base.src, then run elementary_test -to popup or ELM_POPUP_SCROLLABLE=1 elemantary_test -to popup 2) resize window to smaller 3) Click 15th item, "popup-center-title + genlist content + 1 button" 4) Then popup will show, popup's genlist will be in scroller, so entire popup can be shown. Reviewers: jaehwan, id213sin, cedric, raster, singh.amitesh, SanghyeonLee, Hermet Subscribers: Hermet, minkyu, herb, jpeg Differential Revision: https://phab.enlightenment.org/D3856
* ecore_imf/wayland: Change sequence to call preedit changed and end callbackJihoon Kim2016-05-171-9/+9
| | | | preedit changed and end callback should be called before commit callback
* Eo name find: Fix possible out of bounds write in eo name find.Tom Hacohen2016-05-161-8/+7
| | | | CID1354840
* Revert "autotools: fix lots of warning."Cedric Bail2016-05-169-16/+15
| | | | | | This reverts commit 885d6c7d9bb0c253c49fd3f6351dd06d28a4cf74. Reverting all as it seems those warning where actually for working code...
* autotools: fix make cleanCedric Bail2016-05-161-0/+11
|
* autotools: fix lots of warning.Cedric Bail2016-05-169-15/+16
| | | | Thankcs Jean Guyomarc'h.
* build: more non-cocoa fixesMike Blumenkrantz2016-05-161-2/+2
| | | | ref 1f03bba199fbbda435a34bba141354456a353c54
* fix non-cocoa configure/buildMike Blumenkrantz2016-05-161-1/+1
| | | | ref 1f03bba199fbbda435a34bba141354456a353c54
* autotools: enable gl_cocoa on OS X by defaultJean Guyomarc'h2016-05-161-3/+3
| | | | | | | | | Before this commit, X11 (via Xquartz) was the default engine to be enabled on OS X. Since the Cocoa backend became quite stable and considering applications running within the Xquartz windowing environment are arguably ugly, the Cocoa backend will now be enabled by default and X11 will be selected only if explicitely requested.
* Edje_edit: generate states of the box and table part edc code with inheritance.Mykyta Biliavskyi2016-05-161-70/+130
| | | | Generate inheritance box and table attributes from similar state.
* Edje_edit: generate states of the proxy part edc code with inheritance.Mykyta Biliavskyi2016-05-161-29/+75
| | | | Generate inheritance proxy attribute "source" from similar state.
* Edje_edit: generate states of the image part edc code with inheritance.Mykyta Biliavskyi2016-05-161-42/+153
| | | | Generate inheritance image attributes from similar state.
* Edje_edit: generate states of the text part edc code with inheritance.Mykyta Biliavskyi2016-05-161-19/+137
| | | | Generate inheritance text attributes from similar state.
* Edje_edit: generate state code with inheritance map block.Mykyta Biliavskyi2016-05-161-30/+73
| | | | Add ability to generate inherited code for map block.
* Edje_edit: generate state code with inheritance rel block.Mykyta Biliavskyi2016-05-161-64/+185
| | | | Add ability to generate inherited code for relative block.
* Edje_edit: generate state code with inheritance general attributes.Mykyta Biliavskyi2016-05-161-35/+320
| | | | | | | | Support inheritance for part states on the edc code generate time. Only for general attributes are supported, except relative and map blocks. Added functions for calculation coefficient of similarity between two different states of the same part.
* Edje_edit: move text state edc code generate to standalone func.Mykyta Biliavskyi2016-05-161-54/+145
| | | | | | Created internal function _edje_generate_source_state_text. This is needed for implementation generate inheritance states in edc code.
* ecore-wl2: Remove erroneous check for wayland displayChris Michael2016-05-161-10/+5
| | | | | | | | NB: No real major changes, just removal of an extra 'if' block. If getenv of wayland display fails, we hard-code the default wayland display name so subsequent check for 'if (n)' is erroneous Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
* ecore_wl2: connect to default displayMarcel Hollerbach2016-05-161-6/+4
| | | | | | | | | | Summary: if there is no env var AND no name, connection to wayland-0 Reviewers: raster, jpeg, devilhorns Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D3945
* elementary: Fix icon name to standardAndy Williams2016-05-161-1/+1
|
* elm_win: move quickpanel feature from eo to legacyJi-Youn Park2016-05-163-166/+216
| | | | | | | all quickpanel APIs were only supported in X. quickpanel property can be managed by name property. zone set canbe managed by aux_hint minor, and major set are not used anymore
* Revert "popup: default scrollable option change to TRUE"Dave Andreoli2016-05-152-19/+23
| | | | | | | | This reverts commit 2ddbc5fc9a34ee47bf7e511283ce5d602366907e. You cannot change default behaviour of released code! In this way you make applications behave differently on different efl version.
* Evas: gl_common remove gl3.h and gl3ext.h includesNicolas Aguirre2016-05-161-2/+0
|
* Evas: gl_common add define for missing GL_DEPTH_COMPONENT24Nicolas Aguirre2016-05-161-0/+3
|
* ecore: move ecore before evas so that all dependencies are build in correct ↵Cedric Bail2016-05-152-308/+309
| | | | order.
* FDO icons: duplicate icons instead of symlink usage.Dave Andreoli2016-05-1513-2/+2
| | | | Windoz do not support symlinks :(
* efl - ui box - remove unised deficit variableCarsten Haitzler (Rasterman)2016-05-151-7/+2
|
* elm - map: fix warning with possibly uninitted varsCarsten Haitzler (Rasterman)2016-05-151-1/+1
|
* evas - fix warning comparing agianst wrong enumCarsten Haitzler (Rasterman)2016-05-151-1/+1
| | | | fixed enum compare due to efl intefaces changes.
* evas - make func indenting more redable with overflow lines alignedCarsten Haitzler (Rasterman)2016-05-151-7/+7
|
* elementary: Cleanup compiler warnings when not using X11Chris Michael2016-05-152-1/+35
| | | | | | | | | This patch cleans up various unused variables and unused function parameters when not building for X11. @fix Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
* elementary: Conditionally define functions based on x11/waylandChris Michael2016-05-151-1/+3
| | | | | | | | | These functions are only used if we are compiled with X11 support, so add an #ifdef to remove it from wayland builds @fix Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>