summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* 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>
* fileselector: refine code and themeJee-Yong Um2016-03-043-199/+166
| | | | | | | | | | | | | | | | Summary: refine code and theme, hopefully solve the issue that the height of file list (genlist) is calculated wrong. Test Plan: elementary_test -to fileselector Reviewers: SanghyeonLee, jpeg, cedric Subscribers: taxi2se Differential Revision: https://phab.enlightenment.org/D3715 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* win: add check for focus object before adding new oneJee-Yong Um2016-03-041-7/+10
| | | | | | | | | | | | | | | | | | Summary: Focus object is added repeatedly, when focus is enabled. This patch checks existing focus object. Test Plan: elementary_test -to focus check/uncheck "Focus Highlight Enable" with spacebar Reviewers: Jaehyun_Cho, jpeg, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3689 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* fileselector: add backspace key binding to move to previous path.Jee-Yong Um2016-03-045-0/+42
| | | | | | | | | | | | | | Summary: Add backspace key to move to previous path. Test Plan: remove /home/username/.elementary (to apply new elementary config file) elementary_test -to fileselector Reviewers: cedric, jpeg Subscribers: bu5hm4n Differential Revision: https://phab.enlightenment.org/D3685
* multibuttonentry: add elm.swallow.background partWoochan Lee2016-03-041-0/+8
| | | | | | | | | | | | Summary: This swallow part is for custom background image. Reviewers: kimcinoo, Hermet, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3659 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* theme: add new time gadget themesMike Blumenkrantz2016-03-0417-0/+1395
|
* theme: move digit* images to O/Mike Blumenkrantz2016-03-0417-68/+68
|
* theme: add new wireless gadget themeMike Blumenkrantz2016-03-046-0/+959
|
* start: add alias for new gadget groupMike Blumenkrantz2016-03-041-0/+1
|
* theme: add bryce edcsMike Blumenkrantz2016-03-044-0/+779
|
* combobox: store eo_constructor() return value into objAmitesh Singh2016-03-041-1/+1
| | | | | | This is what we do in every widget's base constructor. @fix
* elm_access: remove duplicated line, ELM_SAFE_FREE handles NULL assignShinwoo Kim2016-03-041-1/+0
|
* elm_access: mapi have to be set NULL after free(m->api)Jonghee Choi2016-03-041-0/+2
| | | | | | | | | | Summary: mapi have to be set NULL after free(m->api) Reviewers: kimcinoo Reviewed By: kimcinoo Differential Revision: https://phab.enlightenment.org/D3756
* hoversel: remove EINA_UNUSED since data is getting usedAmitesh Singh2016-03-041-1/+1
|
* Genlist test: Adjust according to the recent eo event changes.Tom Hacohen2016-03-031-5/+4
| | | | Thanks to zmike for letting me know.
* Migrate elementary to the new Eo4 syntaxTom Hacohen2016-03-03177-4416/+3815
|\ | | | | | | | | | | | | Eo's syntax has changed (see efl.git for more info), this adjusts elementary accordingly. This is a merge commit that merges my branch will all of the fixes
| * Fix warnings following migration to Eo4.Tom Hacohen2016-03-0320-73/+8
| | | | | | | | Mostly unused variables.
| * Map: Correct broken migration.Tom Hacohen2016-03-031-1/+1
| | | | | | | | The script failed migrating some code, so I needed to fix it manually.
| * Automatic migration to Eo4.Tom Hacohen2016-03-03173-4142/+3637
| | | | | | | | | | | | I just ran my script (email to follow) to migrate all of the EFL automatically. This commit is *only* the automatic conversion, so it can be easily reverted and re-run.
| * App client/server and entry: Mix of automatic migration and manual adjustments.Tom Hacohen2016-03-033-186/+176
| | | | | | | | The script couldn't handle everything correctly on its own.
| * Manually migrate some eo_do for the migration scriptTom Hacohen2016-03-032-6/+2
| | | | | | | | | | The script doesn't handle a few corner cases well. Update the code manually so it doesn't have to deal with those.
| * Remove redundant defines.Tom Hacohen2016-03-031-17/+0
|/
* Scaling test: reorder instructions to set the correct scaleDaniel Zaoui2016-03-031-1/+1
| | | | | | | | If the scale is set on an object before contents are set, it will not pass to them. Because of this, in the test, scale of the first label remains 1.0, i.e the window scale, instead of 0.5. The patch modifies the order of the instructions by setting the scale after setting the label as content of the frame.
* radio: inherit from elm checkAmitesh Singh2016-03-032-97/+20
| | | | | | | | | | | | Summary: Radio inherits from Check now and remove the duplicate codes Reviewers: yashu21985, cedric, tasn, raster Reviewed By: raster Subscribers: seoz Differential Revision: https://phab.enlightenment.org/D3747
* elm_cursor: don't include Ecore_Cocoa_Cursor.h (deleted in EFL)Jean Guyomarc'h2016-03-021-4/+0
|
* Spinner: Swap abs with fabs because we're dealing with doubles.Tom Hacohen2016-03-021-1/+1
|
* build: enhance generated html output from coverage reportStefan Schmidt2016-03-021-1/+1
| | | | | We do not handle branch coverage so remove that part of the output. On the other hand at a legend to allow people to understand the color meanings.
* build: fix problems with coverage check build where some files are not foundStefan Schmidt2016-03-022-1/+2
| | | | | | | | | | | | Switch to use a lcov config file which geninfo_auto_base and remove hard coding the base dir to src/lib. geninfo_auto_base is designed for a use case like ours where we have several base dirs (lib, bin, tests, ...) and it detects them automatically. This fixes failures in a coverage run like this: genhtml: ERROR: cannot read /srv/build/workspace/manual_elm_gcc_x86_64_exactness_coverage/src/lib/test_win_state.c Where the file is simply looked for in the wrong directory.
* Fix example with new event api.Lauro Moura2016-03-011-1/+1
| | | | | | | | Summary: Fix build after changes. Reviewers: felipealmeida, cedric, tasn Differential Revision: https://phab.enlightenment.org/D3744
* Elm_Hoversel: import elm_iconDaniel Zaoui2016-03-011-0/+1
| | | | The icon type is needed by item_add
* elm map: silence uninit var warnings that new gcc versions showCarsten Haitzler (Rasterman)2016-03-011-5/+5
| | | | | | gcc thinks the vars may in theory be uniitiialized. it's right but it won't actually happen. but having noise in warning output is bad, so fix the warnings so we can focus on the real bugs/issues/warnings
* elm_gen: update highlight geometry after clearing itemsJee-Yong Um2016-02-292-0/+4
| | | | | | | | | | | | | | | | | | Summary: After genlist/genrid items are cleared, item highlight still remains in blank space. This patch fixes this by updating highlight. Test Plan: elementary_test -to fileselector enter blank directory and see highlight still remains Reviewers: jpeg, SanghyeonLee, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3683 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* image: remove EINA_UNUSEDMinkyu Kang2016-02-291-1/+1
| | | | | | | | | | | | | | | | | Summary: parameter is used Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> Reviewers: Hermet, seoz, cedric Reviewed By: cedric Subscribers: seoz Differential Revision: https://phab.enlightenment.org/D3718 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* spinner: add label format validatorShilpa Singh2016-02-291-15/+66
| | | | | | | | | | | | | | | | | | | | | | | | | Summary: Check for all error conditions case in elm_spinner_label_format_set and set label format only if its valid. Signed-off-by: Shilpa Singh <shilpa.singh@samsung.com> @feature Test Plan: 1. Launch elementary test spinner 2. Set invalid formats e.g. formats with out %, formats with more than one format specifier "%d %s" etc:- Reviewers: jpeg, cedric Reviewed By: cedric Subscribers: govi, buds, subodh6129 Differential Revision: https://phab.enlightenment.org/D3720 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* Eo events: Migrate all of elm to the new event callback signaturesTom Hacohen2016-02-2950-644/+398
|