summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* genlist: don't access item after removing it.devs/hermet/developChunEon Park2015-01-151-1/+1
|
* genlist: guard the item deletion problem.ChunEon Park2015-01-151-12/+25
| | | | | this exceptional code prevents the deletion of the item in the middle of the callback.
* Revert "Revert "genilst: get rid of lazy deletion.""ChunEon Park2015-01-152-79/+16
| | | | This reverts commit 94f0f1ba40d6066d4bf8b7594c2c636b49966b16.
* Revert "genilst: get rid of lazy deletion."ChunEon Park2015-01-152-16/+79
| | | | | | | | | This reverts commit 0e7d521151ba93f3b5955caaf9b906e160ab6057. Conflicts: src/lib/elm_genlist.c src/lib/elm_widget.h
* genlist: revert partial code.ChunEon Park2015-01-151-4/+7
| | | | this clearing items are still valid.
* genlist: fix the access of the invalid items.ChunEon Park2015-01-151-14/+33
| | | | | still, there were case item or genlist is cleared in the user callback. don't access the cleared items if they are requested deletion.
* genlist needs to also highlight items on keyboard selectMike Blumenkrantz2015-01-141-0/+7
| | | | | | this should probably just happen in _item_select() to avoid future incidents ref T1986
* Revert "genlist: fix a crash when deleting a item in selected callback."Mike Blumenkrantz2015-01-141-6/+3
| | | | | | | | This reverts commit c80b24baf815e35c160bf0dbe8ecae6ea247aef8. this broke the selection callback completely and makes every genlist app unusable. please, please, please, please, I'm seriously begging you hermet, do ANY amount of testing before making further genlist commits.
* genlist: fix a crash when deleting a item in selected callback.ChunEon Park2015-01-141-3/+6
| | | | | | if user deletes the item in the callback, current function(_item_select) would be corrupted. just leave the callback call in the last of the function.
* genilst: fix regression bug added in 0e7d521151ba93f3b5955caaf9b906e160ab6057ChunEon Park2015-01-141-38/+7
| | | | | some logic of deleting item were duplicated. this fixes fileselector crash issue.
* Do not explicite include atspi headers.Lukasz Stanislawski2015-01-1463-282/+67
| | | | | | | | | | | | Summary: fixes make check failures on atspi tests. Reviewers: cedric Subscribers: seoz Maniphest Tasks: T2001 Differential Revision: https://phab.enlightenment.org/D1870
* genlist: set missed item reference.ChunEon Park2015-01-141-0/+1
| | | | this missing would cause crash of the genlist when it's items are cleared.
* genlist: fix a crash of genlist group tree example.ChunEon Park2015-01-141-6/+3
| | | | | | | don't corrupt list pointer. we can clear items more simply. Thanks ya-kov for reporting.
* widget: set missing elm_widget_item_magicChunEon Park2015-01-141-0/+3
|
* photocam: force reload of image on file_set.Cedric BAIL2015-01-131-1/+5
| | | | Thanks, bug reported by thierry@substanciel.fr .
* elm image - fix image rotation in non-common casesCarsten Haitzler (Rasterman)2015-01-131-2/+4
| | | | | | | this fixes d6f4040d0c62c220f2339d2a57126fde43e85e19 for the non-common path that normalizes then applies new orientation @fix
* elementary: Fix dereference of null return valueChris Michael2015-01-121-2/+2
| | | | | | | | | Summary: This fixes Coverity CID1261370. strrchr can return NULL here, so we need to check that 'p' is valid. @fix Signed-off-by: Chris Michael <cp.michael@samsung.com>
* release: Update NEWS and bump version for 1.13.0-alpha1 releasev1.13.0-alpha1Stefan Schmidt2015-01-122-3/+69
|
* Elm win: Fix added internal parameter to the win constructor.Tom Hacohen2015-01-122-5/+21
| | | | | | | | | Internal hacks should not affect user facing API. This commit adds a new API to do the internal hack. This is still bad, but it's much less than what was there before. This fixes the main issue introduced by commit: 63a5cdf0f8516c16a62233da0c2af0e10a13264b
* Elm win: Fix elm_win_fake()'s name to follow conventions.Tom Hacohen2015-01-122-2/+2
|
* DnD: fix callbacks deletion for inline windows.Daniel Zaoui2015-01-121-2/+33
| | | | | | | | | | | | | | | | | | During deletion of a window, widgets considered as droppable targets have to remove their DnD callbacks. To achieve this, elm_drop_target_del is called from the DEL callback (destructor). This function has to determine if X11 or Wayland is used. Since the parent is already unknown at this stage, only checking the engine name can give this information. On a regular window, the engine name is related to the target display. The problem happens when an inline window is used. The engine is a buffer and no information is given regarding the target display. The patch fixes it by checking the nature of the Ecore Evas parents. It supports nested windows (inline inside inline... inside XWin). @fix
* elm_colorselector: Fixed to make palette_box have proper heightJee-Yong Um2015-01-121-2/+1
| | | | | | | | | | | | | | Summary: palette_box had stretched height exceeding its items size. Now it will have proper height fitting to own items. Reviewers: Hermet, Jaehyun, raster Reviewed By: raster Subscribers: raster, Hermet Differential Revision: https://phab.enlightenment.org/D1840
* elm - fix build problem with examples - elocation apiCarsten Haitzler (Rasterman)2015-01-121-1/+4
| | | | | this fixes build of location_example_01.c as per fix in D1863 but done properly so people can't use elm elocation unless they enable beta apis
* Scroller : Fix elm_scroller_last_page_get API wrong return valueVBS2015-01-121-2/+2
| | | | | | | | | | | | | | | | | Summary: When first page is last page, elm_scroller_last_page_get need to return 0. But if pagesize is bigger then current content height or width, value will be returned -1. So fix this cases to return 0. Test Plan: If set elm_scroller_page_set bigger then current content size, then issue is occurred. Reviewers: seoz, jaehwan, raster Reviewed By: raster Subscribers: eagleeye Differential Revision: https://phab.enlightenment.org/D1860
* elm - elm image orientation api fix - major bug in implementationCarsten Haitzler (Rasterman)2015-01-122-173/+286
| | | | | | | | | | | | | | | | | | | @fix The elm image orient_set api looks like it is a state, and it is documented to SET the orietnation, but the code actually DOEs that orientation when you set it. so docs and api name didnt match functionality at all. this was bad an an oversight. you didn't notice until you set orientation multiple times to an image. this fixes the implementation to be as documented - a state that is applied and remains that way until set to something else. setting to the same orientation has no efect as with color, size, etc. etc. in evas. you could look on this as an api break, but then either the docs change AND api name changes to match the code, or code changes to match the docs. we don't keep bug compatibility in efl and in this case i'm making the call to break the behavior of a function as it was broken already with respect to name and docs.
* genlist: recommit 1879cc39258c63c24f0abcff56558b1f1b60167a with correction.ChunEon Park2015-01-121-3/+3
|
* elm_table now supports alignmentMike Blumenkrantz2015-01-112-0/+40
|
* fake win should not perform widget focus setting on canvas focus-inMike Blumenkrantz2015-01-111-5/+8
|
* Revert "genlist: use eina bool"Yakov Goldberg2015-01-111-3/+3
| | | | | | | | This reverts commit 1879cc39258c63c24f0abcff56558b1f1b60167a. Hermet, please check this commit it makes Fileselector crash, looks like you inverted the values: 1 should be EINA_TRUE. I recommend you to use Exactness to run all the tests automatically.
* genlist: remove unnecessary null check.ChunEon Park2015-01-101-6/+3
|
* genlist: revert 6f177e5db01553276058235a81cbfcc9b2cd4e23ChunEon Park2015-01-102-5/+9
| | | | this broke decoration item text. reverted.
* genlist: send decoration active signal to view item.ChunEon Park2015-01-101-0/+1
| | | | emit signal to view item to do something additional.
* genlist: fix regression bug. (T1986)ChunEon Park2015-01-101-22/+22
| | | | newly added in 2955ebc5dd01fbfb5a3286b724c8a40915864ad8
* ELM_WIN_FAKE types should allow focus callbacks on windowsMike Blumenkrantz2015-01-101-2/+2
|
* entry now finds its window object more effectively for cnp initMike Blumenkrantz2015-01-101-0/+2
|
* +elm_win_fake(), ELM_WIN_FAKE typeMike Blumenkrantz2015-01-104-28/+69
| | | | | | this is a giant hack to provide widget parenting in e. do not use this function, do not use this type, do not even read the related documentation. @feature
* genlist: code refactoring.ChunEon Park2015-01-101-12/+8
| | | | | | | clean up decorate_item_realize() function. use macro and remove old debug code. no actual logical change.
* genlist: clean up genlist_smart_del() func.ChunEon Park2015-01-091-4/+0
| | | | removed unnecessary calls.
* widget: remove redundant internal macrosChunEon Park2015-01-091-111/+0
| | | | we don't need these macros anymore since eo has introduced.
* Do not call ecore_x_init() when not using X display.Jean Guyomarc'h2015-01-092-4/+54
| | | | | | | | | | | | | Summary: On some systems (e.g. OS X), both Apple's windows manager and X11 can cohabit, therefore we need to check for the DISPLAY environment variable only when ELM_DISPLAY is not specified. Reviewers: cedric, devilhorns, seoz, raster Reviewed By: raster Differential Revision: https://phab.enlightenment.org/D1721
* client frame client clip should be relative to client during clip, not borderMike Blumenkrantz2015-01-081-6/+1
| | | | ref T1930
* genlist: if the item was selected, then skip item_select() procedure.ChunEon Park2015-01-081-0/+3
|
* genlist: simple code clean upChunEon Park2015-01-081-2/+3
| | | | no logic change.
* genlist: use eina boolChunEon Park2015-01-081-3/+3
|
* genilst: descriptive comment++ChunEon Park2015-01-081-0/+2
|
* genlist: remove internal callback usage.ChunEon Park2015-01-081-33/+27
| | | | | there were multiple ports for item procedures. one port is enough.
* genilst: get rid of lazy deletion.ChunEon Park2015-01-083-175/+54
| | | | | | | | delete genlist item directly. instead, remove the bunch of code that was related to lazy deletion. we can success, if we clean up the resources and callback calls properly. here i only found item focus callback that (may) required the lazy deletion.
* theme: Add newly added icons to EXTRA_DIST to make sure they end up in the ↵Stefan Schmidt2015-01-081-0/+9
| | | | | | | tarball We need to list the icons here to let autotools know we want them int the release tarballs.
* Revert "win INLINE_IMAGE test now crashes as expected when trying to use it ↵Daniel Zaoui2015-01-081-1/+0
| | | | | | | | | | | | in a non-useless manner" This reverts commit fd71874024d14e5374aef93eae7d4cfbc0ea4521. As the commit message says, the test crashes now. The ticket 1973 is related to that issue. Now, I understand there could be a bug inside inline stuff but it doesn't mean that you have to push it and screw up all the test. You could just attach a patch to the ticket and that's all folks!
* genlist: send signal to deco_all_view additionally.ChunEon Park2015-01-081-0/+2
|