summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Revert "Automatic migration to the new eo_add syntax."Tom Hacohen2016-03-1182-265/+196
| | | | This reverts commit d1a1819813d74361b25fd5c1123f7ac76be9b84f.
* Revert "combobox: fix borkage after eo_add change."Tom Hacohen2016-03-111-4/+2
| | | | This reverts commit da8287fa370bb579a4a592dd280ac5c8a6a25830.
* Revert "elm - genlist item - index get start from 0 - unbreak api break"Carsten Haitzler (Rasterman)2016-03-112-2/+2
| | | | | | | | | | This reverts commit 22eefc9626e15e78612396a9c7adca89ffc228e2. ok - so equation changed. tizen 2.3 did ship with index starting at 1, so back to 1 (ugh - ugly). so apparently we have switch between 0 and 1 over history at various points (and no one in efl land uses this api so we dont see it). but given that the largest userbase of efl atm starts at 1 - we'll leave it there.
* none: fix symbol issueCedric BAIL2016-03-102-3/+15
| | | | T3295
* gitignore: do not track eo generated files.Cedric BAIL2016-03-102-0/+2
|
* combobox: fix warning due to change in eo event signature.Cedric BAIL2016-03-101-14/+6
|
* webkit2: undef macro before redefining them.Cedric BAIL2016-03-101-0/+5
|
* combobox: add Multiple selection featuredivyesh purohit2016-03-107-10/+312
| | | | | | | | | | | | | | | | | | | | | | Summary: This patch focuses on Combobox widget customization, Multibuttonentry widget is used instead of entry for taking user input. The idea is to make the widget look like {F28112} {F28115} when the multiple_selection is set. To-DO: 1) Need to add scrollable interface to combobox when MBE is used (need some suggestions on it). 2) focus cycle is still buggy as genlist requires focus otherwise selected item will return NULL (sometimes) Signed-off-by: divyesh purohit <div.purohit@samsung.com> @feature Test Plan: Please run combobox multiple selection example from elementart_test. Reviewers: raster, shilpasingh, cedric Subscribers: govi, rajeshps Projects: #elementary Differential Revision: https://phab.enlightenment.org/D3570
* efl: followup with renaming efl animator.Cedric BAIL2016-03-107-22/+22
|
* colorclass: allocate memory to fit the original size of data typeJee-Yong Um2016-03-101-1/+1
| | | | | | | | | | | Summary: The size of Colorclass is 20 bytes, but that of Elm_Color_Overlay 16 bytes. Currently, there is no code to access last 4 bytes, but it can cause seg fault by another patch. Reviewers: cedric, zmike Differential Revision: https://phab.enlightenment.org/D3784
* elm - genlist item - index get start from 0 - unbreak api breakCarsten Haitzler (Rasterman)2016-03-102-2/+2
| | | | | | | | | | | | | so in feb 2015 seoz changed elm_genlist_item_index_get to start from 1 rather than 0. going back to elm code in 1.7 - it started at 0. this is an api break that shouldn't have happend, but did. this fixes that. yes - it's inconsistent with gengrid's index_get - but gengrid here is wrong. nth_get starts at 0. this will get fixed with eo api's, and in fact none of these index/nth api's should be in genlist's eo api. legacy only. i can see why this was changed - it matches gengrid and is more consistent, but we can't break things even if stupid. @fix
* elm_web: Remove eo generated filesJean-Philippe Andre2016-03-104-462/+0
| | | | | | | eo.h and eo.c were added by mistake. I couldn't quite test the build since the we still need ewekbit2 for configure to enable elm_web. @cedric has a bit of work left here :)
* combobox: fix borkage after eo_add change.Cedric BAIL2016-03-091-2/+4
| | | | toto = titi = eo_add is no longer valid.
* config: add entry to set web backend.Cedric BAIL2016-03-091-2/+50
| | | | Will switch later to a combobox using eio_model.
* config: add API to configure Elm_Web backend.Cedric BAIL2016-03-092-2/+39
|
* web: split web into a module.Cedric BAIL2016-03-0921-1594/+2414
| | | | | There is currently no configuration to switch backend. Another patch will introduce it.
* Image test: Migrate to the new event cb signature.Tom Hacohen2016-03-091-10/+6
|
* Automatic migration to the new eo_add syntax.Tom Hacohen2016-03-0983-197/+267
|
* Combobox: Semi automatic migration to the new eo_add.Tom Hacohen2016-03-091-4/+5
|
* theme: Fix scroller colorclass typo.Stephen okra Houston2016-03-081-1/+1
|
* Revert "list: set internal box as homogeneous if no separator items are present"Hermet Park2016-03-081-3/+0
| | | | | | | | | This reverts commit 9f4c43c20dfa36e7a8be18278acf4336c13574d7. I'm sorry but this causes a side effect(list sizing issue) at enventor. And I couldn't find any mis-usage in enventor side. We can't not accept this patch unless we figure the exact reason out.
* elm_genlist: Added elm_genlist_filtered_items_count APIshashank.p2016-03-081-4/+3
| | | | | | | | | | | | Summary: This clarifies the documentation of the new api. Reviewers: SanghyeonLee, shilpasingh, cedric Reviewed By: cedric Subscribers: bu5hm4n, buds Differential Revision: https://phab.enlightenment.org/D3725
* fileselector: clarify the condition statement for checking ok buttonJee-Yong Um2016-03-071-3/+1
| | | | | | | | | | | Summary: elm_fileselector_buttons_ok_cancel_set() API checks the existence of ok button before adding it. This patch makes condition statement more intuitive. Reviewers: cedric, bu5hm4n Differential Revision: https://phab.enlightenment.org/D3770
* remove duplicated typedefMarcel Hollerbach2016-03-051-6/+0
| | | | this is already defined in elm_layout.eo.h.
* atspi intf: image - fix compilation warnings after eo4 migration changesAmitesh Singh2016-03-051-2/+2
| | | | | | | | | | ====== CC libelementary_la-elm_interface_atspi_value.lo elm_interface_atspi_image.c: In function '_elm_interface_atspi_image_description_set': elm_interface_atspi_image.c:36:9: warning: 'old_descr' may be used uninitialized in this function [-Wmaybe-uninitialized] eina_stringshare_del(old_descr); ^ ======
* genlist: fix item sizing errorJee-Yong Um2016-03-041-1/+1
| | | | | | | | | | | | | | | | | | | Summary: Sometimes genlist expands its items' width over viewport, so horizontal scrollbar is shown unnecessarily. This will correct item sizing calculation. @fix Test Plan: elementary_test -to "genlist tree" elementary_test -to "fileselector" Reviewers: SanghyeonLee, cedric Differential Revision: https://phab.enlightenment.org/D3754 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* map: fix memory leakSungTaek Hong2016-03-041-8/+7
| | | | | | | | | | | | | | | | Summary: - in dump_cb buf is allocated by malloc() ->strdup() -> free. This is needless. - And buf allocated in dump_cb is strdup again. This may cause memory leak. Reviewers: Hermet, woohyun, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3752 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* config: handle is_mirrored, and translate are not part of EET file, when ↵Shinwoo Kim2016-03-041-1/+31
| | | | | | | | | | | | | | config flush occurs Summary: is_mirrored, and translate value is reset, when config flush occurs. Reviewers: raster, cedric, jpeg, tasn Subscribers: seoz Differential Revision: https://phab.enlightenment.org/D3748 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* image: fix the wrong return valueMinkyu Kang2016-03-041-1/+1
| | | | | | | | | | | | | | Summary: Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> Reviewers: Hermet, cedric Reviewed By: cedric Subscribers: seoz Differential Revision: https://phab.enlightenment.org/D3741 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* Genlist: fix for an item width calculation issue on item show / scrollinggodly.talias2016-03-041-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Summary: When item_show / scrolling is happening, _item_block_position will be called from smart_calculate where item width is set as block width. If items are not realized _item_realize will be called and if items are getting realized for first time we set mincalcd as false. So later item width gets overwritten by min width of item and so issue is happening. @fix T2603 Signed-off-by: godly.talias <godly.talias@samsung.com> Test Plan: elementary_test -> Genlist Group -> show 480 Reviewers: prince.dubey, shilpasingh, SanghyeonLee, cedric Subscribers: rajeshps, seoz, govi Maniphest Tasks: T2603 Differential Revision: https://phab.enlightenment.org/D3729 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* notify: delete unnecessary smart move/resize.Hosang Kim2016-03-041-18/+24
| | | | | | | | | | | | | | | | Summary: elm_notify's size is dependent on parent's size. So _elm_notify_evas_object_smart_move/resize() are not necessary. Reviewers: woohyun, jypark, Hermet, minkyu, cedric Reviewed By: cedric Subscribers: minkyu Differential Revision: https://phab.enlightenment.org/D3728 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* genlist: add elm_genlist_filtered_items_count APIshashank.p2016-03-043-3/+19
| | | | | | | | | | | | | | | | Summary: This API will return the number of items that have passed the filter at a given point of time. If the API is called before "filter,done" callback comes, it may or may not give the filtered count for the complete genlist. Test Plan: Updated Genlist_filter example to print the output from filtered_count_get API in "filter,done" callback. Reviewers: SanghyeonLee, shilpasingh, cedric Reviewed By: cedric Subscribers: buds Differential Revision: https://phab.enlightenment.org/D3725 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>