summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Elm_image: remove Elm_Image_Orient and orient property from EO.HEADmasterJi-Youn Park2016-03-244-37/+63
|
* Elm_image: move preload_disabled API from eo to legacy.Ji-Youn Park2016-03-243-30/+36
|
* Elm_image: remove elm_image_fill_outside_getJi-Youn Park2016-03-243-36/+66
| | | | | | This api will be removed. elm_image_fill_outside_get is same as !elm_image_fill_inside_get. elm_image_fill_outside_set function is too.
* Elm_map: fix build warningJi-Youn Park2016-03-231-2/+0
|
* Elm_Image: remove Elm.Image.scale property. use the Elm.Widget.scale.Ji-Youn Park2016-03-233-30/+56
| | | | | elm image don't need to manage scale value itself. Just modify eo part. legacy c part(ex: remove scale data in elm image)is still remains.
* popup: visual related signals should be processed immediatelyWooHyun Jung2016-03-231-0/+2
|
* image: remove duplicate _elm_image_internal_sizing_eval callMinkyu Kang2016-03-221-2/+0
| | | | | | | | | | | | | | | | | | Summary: When set the file to image widget, _elm_image_internal_sizing_eval is called many times. This patch will remove duplicate call. In _elm_image_sizing_eval function, elm_obj_image_scale_set will be called always, calling _elm_image_internal_sizing_eval is unnecessary. Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> Reviewers: Hermet, cedric Subscribers: seoz Differential Revision: https://phab.enlightenment.org/D3730 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* map: separate name, route source logicSungTaek Hong2016-03-223-7/+49
| | | | | | | | | | | | | | | | | | | Summary: - So far, elm_map only provides Open Street Map and lacks ability to expand to other map providers since it's xml parse only fits into that of OSM. - This patch is to make route and name source same to tile source, which supports other map tile providers. Reviewers: woohyun, cedric Reviewed By: cedric Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D3303 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* theme: fix non-fixed parts.Umesh Tanwar2016-03-222-0/+2
| | | | | | | | | | | | | | | | | Summary: The error shown while testing elementary_test. Signed-off-by: Umesh Tanwar <umesh.tanwar@samsung.com> Test Plan: run elementary_test ->type "genlist" in search ->move to "genlist focus" button using navigation keys. Reviewers: cedric, singh.amitesh, Hermet Differential Revision: https://phab.enlightenment.org/D3815 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* elm_image: fix build warningJi-Youn Park2016-03-221-16/+0
|
* elm_image: remove elm_image_memfile_set api from eo API.Ji-Youn Park2016-03-225-129/+104
| | | | | | memfile_set feature will be deprecated. instead of memfile_set, use Efl.file.mmap. and merge elm_image_obj_mmap_set and elm_image_efl_file_mmap_set
* elm_entry: revert drag_target_set API in elm_entry.Ji-Youn Park2016-03-223-48/+25
| | | | elm_entry, editable value is used not only drag_target but also other editable feature
* Panes: adapt test to for more API coverageDaniel Zaoui2016-03-221-2/+6
|
* Label: adapt slide test to fit Exactness requirementsDaniel Zaoui2016-03-221-2/+25
|
* label: whenever text is changed, sliding related things should be checkedWooHyun Jung2016-03-221-0/+1
| | | | @fix
* Revert "elm_widget: update child object focus_order."WooHyun Jung2016-03-221-23/+0
| | | | | | | This reverts commit b78720016a9023cb57ec2a05c8cfbdf6eeae600f. We need to find another way to fix the problem. This will break focus revert logic.
* Genlist: fix test endingDaniel Zaoui2016-03-211-1/+7
| | | | | | | The multi select data was freed as it was an api_data structure, resulting in a crash when trying to free an internal api_data pointer. @fix
* menu: fix the 'fixed' errors outputVyacheslav Reutskiy2016-03-212-1/+19
| | | | Add missed attribute fixed to menu and hover styles
* Genlist: fix wrong use of Eo itemDaniel Zaoui2016-03-211-4/+4
| | | | | | The Eo item was given as parameter of a function expecting its item data. @fix
* Datetime: update test for ExactnessDaniel Zaoui2016-03-201-29/+62
| | | | A fix date is now set so Exactness can work on datetime widget.
* Tests/Photocam: add default imageDaniel Zaoui2016-03-201-0/+3
| | | | | This helps to generate a Exactness scenario that doesn't depend on file locations.
* Evas.Draggable_Interface: move editable_set/get to lecacy APIJi-Youn Park2016-03-1912-85/+172
| | | | | | | | | | | | Elm_XXX_editable_set/get is related with drag and drop. Elm_entry, Elm_image, Elm_photo, Elm_thumb has editable API. If user call elm_entry_editable_set(obj, EINA_TRUE), elm entry's content(text) can be changed into dragging text. elm_image(photo,thumb also) is same. its content(image) also can be changed into dragging image. so changed for these widget to use drag_target property in evas_draggable_interface
* elm_widget: update child object focus_order.Umesh Tanwar2016-03-181-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: _parent_focus() when called recursively updates the sd->focus_order for parent obeject only. The sibling's sd->focus_order not get updated. So updated the focus_order for siblings. Signed-off-by: Umesh Tanwar <umesh.tanwar@samsung.com> Test Plan: {F30149} correct case: 1. Press Enter key on click button. A popoup will come. 2. Pressing enter key on popup button the popup hides and focus goes back to click button. issue case: 1. Press Enter key on click button. A popoup will come. 2. press Alt+tab twice. 3. Pressing enter key on popup button the popup hides and focus does not go back to click button. Reviewers: raster, cedric Subscribers: singh.amitesh Differential Revision: https://phab.enlightenment.org/D3807
* modules: remove error message from dlsym() when a module is loadedYoungbok Shin2016-03-183-0/+42
| | | | | | | | | | | | | | | | | | | | | Summary: dlsym() could print error message when it tried to load a nonexistent symbol. Whenever eina_module_load is called, it checks __eina_module_init symbol. Even if there is no symbol for init, module loading could be done well. But, it will print an error message. So, we need to use EINA_MODULE_INIT, EINA_MODULE_SHUTDOWN in every modules for removing error messages. Test Plan: N/A Reviewers: woohyun, raster, Hermet, seoz, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3805 Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
* focus: add focus_move_policy_automatic_set/get functionWooHyun Jung2016-03-189-14/+232
| | | | | | | | | Summary: After setting specific focus move policy to one winset object, if it should not follow the system focus move policy change, this new api can be used. @feature
* entry: do not set selection on selection,start signalMike Blumenkrantz2016-03-171-9/+0
| | | | | | | this is already handled by the selection,changed signal and creates duplicated events @fix
* Elm_Glview: fix wrong parameter typeJi-Youn Park2016-03-171-6/+6
|
* Elm_Glveiw: add legacy API to .h fileJi-Youn Park2016-03-171-1/+61
|
* elm_glview: eo-fication for set functionJi-Youn Park2016-03-172-83/+95
| | | | | | | | remove elm_glveiw_XXX_set function and create event render_set-render init_set->created resize_set-> resized del_set -> destroyed
* Elm_glview: remove elm_glview_size_set.Ji-Youn Park2016-03-172-29/+26
| | | | move elm_glview_size_set to legacy wrapper
* Elm_glveiw: change elm_glview_draw_request_set to elm_glview_draw_request.Ji-Youn Park2016-03-172-11/+9
| | | | change draw_reqeuest property to method.
* Elm_glview: change method from changed_set to draw_request_setJi-Youn Park2016-03-173-6/+24
| | | | | | changed_set method is already used in Evas.Object_Smart. elm_glview_changed_set requests Elm_glview for drawing, so change the API to elm_glview_draw_request_set.
* Examples: Fix usage of evas image apisJean-Philippe Andre2016-03-176-11/+10
|
* Elm.Image: Improve error message after load failureJean-Philippe Andre2016-03-171-43/+40
| | | | | | | "Things are going bad for <path> (<internal pointer>)" was pretty useless, and confusing to some people. Also, simplify code wrt. returning a bool...
* docs: properly ends doxygen groupsJean Guyomarc'h2016-03-162-0/+8
|
* docs: fix invalid end of groupJean Guyomarc'h2016-03-161-1/+1
|
* docs: bring back docs from eo files by switching to the new group nameStefan Schmidt2016-03-1622-363/+363
| | | | | | | | | | | | | | During the migration of docs to the eo file the group name changed to have a Elm_ prefix which resulted in our docs not including this group and not showing any of the docs in there. Switching to the new name fixes this. Having this prefix makes sense especially as we are now merging elm into efl. Hopefully that will be the last change. @fix Ref T3109
* docs: bring back docs from eo files by switching to the new group nameStefan Schmidt2016-03-1634-145/+145
| | | | | | | | | | | | | | | During the migration of docs to the eo file the group name changed to have a Elm_ prefix which resulted in our docs not including this group and not showing any of the docs in there. Switching to the new name fixes this. Having this prefix makes sense especially as we are now merging elm into efl. This did not only affect the widget but also our container. Infrastructure is up next. Hopefully that will be the last change. @fix Ref T3109
* docs: bring back docs from eo files by switching to the new group nameStefan Schmidt2016-03-16137-412/+412
| | | | | | | | | | | | During the migration of docs to the eo file the group name changed to have a Elm_ prefix which resulted in our docs not including this group and not showing any of the docs in there. Switching to the new name fixes this. Having this prefix makes sense especially as we are now merging elm into efl. @fix Fixes T3109
* label: add themes for left and right aligned textMike Blumenkrantz2016-03-161-0/+80
| | | | @feature
* interface_scrollable: fix the getting scroll view port sizetaehyub2016-03-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Summary: In auto scroller mode, both of vbar and hbar of scroller is created when scroller content size is getting large. At the state, If we make hbar disappear by resizing scroller content, vbar size is set to small. Because at the moment, the width and height of elm.swallow.content of sid->edje_obj are zero. @fix Test Plan: 1. set scroller auto mode 2. make vbar and hbar by resizing scroller content 3. make hbar disappear by resizing scroller content 4. see the vbar size whether it is correct or not Reviewers: Hermet, Jaehyun_Cho, NikaWhite, cedric Reviewed By: cedric Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D3779 Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
* Change elm according to the renaming of the eo_add() current object.Tom Hacohen2016-03-1514-43/+43
|
* Elm.Image: Adapt to recent changes in Efl.ImageJean-Philippe Andre2016-03-153-38/+55
|
* web: provide a direct access to the configured web engine class.Cedric BAIL2016-03-144-1/+24
|
* web: fix breakage after roll over with eo_add change.Cedric BAIL2016-03-141-4/+1
|
* config: Fix wrong scroll config variables.Daniel Juyung Seo2016-03-151-2/+2
| | | | This was recovered by Coverity CID 1352816 and 1352817.
* Revert "genlist: fix item sizing error"Vyacheslav Reutskiy2016-03-141-1/+1
| | | | | | | | After this change genlist unrealizes all realized items on every resize. Check this in elementary_test "Genlist Del". The expand issue should be fixed in another way. This reverts commit 89a7e471d155dedb14f23dbb85e2178497620864.
* button: don't attempt to set non-existent "icononly" state for elm.textMike Blumenkrantz2016-03-111-6/+0
|
* Combobox: Fix according to the new (old) eo_add syntax.Tom Hacohen2016-03-111-1/+1
|
* Revert "Combobox: Semi automatic migration to the new eo_add."Tom Hacohen2016-03-111-5/+4
| | | | | | | Reverted eo_add() changes following the return to the old eo_add() syntax. This reverts commit 90e465317d10ca01ff39824e56828ee983f7ae41.