summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* atspi: add new APIs for setting atspi relationship.devs/stanluk/relationsLukasz Stanislawski2015-05-1510-38/+300
| | | | | | Introduce new APIs elm_object_atspi_relationship_append and elm_object_atspi_relationship_remove allowing to set developer-defined accessibility relationships between widgets.
* elc_popup: add scroller into popup content areataehyub2015-05-153-40/+86
| | | | | | | | | | | | | | | | | | Summary: When popup has a content which is larger than window size, popup is to be larger than window. so, scroller is added into popup content area. Test Plan: 1. Making "elementary_test - popup" window smaller than popup content size. 2. Excute "popup-center-title + genlist content + 1 button" in "elementary_test popup" After applying this patch. 3. popup content shows with scroller. Reviewers: Hermet, seoz, woohyun, raster Subscribers: raster Differential Revision: https://phab.enlightenment.org/D2216
* elm - tests - fix const warnings with new eina home get funcCarsten Haitzler (Rasterman)2015-05-153-3/+3
|
* layout: Flush layout resize object's edje signals on focus/unfocus.Amitesh Singh2015-05-151-0/+1
| | | | | | | | | | | | Summary: @Fix Reviewers: cedric, seoz, raster Reviewed By: raster Subscribers: kimcinoo, seoz Differential Revision: https://phab.enlightenment.org/D1913
* elm notify patch submit - rebase lost my fix? fix now in extra commitCarsten Haitzler (Rasterman)2015-05-151-2/+2
| | | | somehow a git rebase lost a fix. i don't know how. put back.
* Elm_Notify: adding elm_object_part_text_set/get functionalityVitalii Vorobiov2015-05-152-0/+14
| | | | | | | | | | | | Summary: Currently elm_notify doesn't allow to set or get text if user's style contain some text parts and he need to set text into them. Reviewers: cedric, seoz Subscribers: raster, stefan_schmidt, reutskiy.v.v Differential Revision: https://phab.enlightenment.org/D1333
* elementary: use portable way to get tmp and home environment.Cedric BAIL2015-05-145-30/+9
|
* genlist: fix to return item style correctly.ChunEon Park2015-05-142-0/+7
| | | | | | | | Since the genlist items can be unrealized, they own the tooltip strings in their item field. Also, the tooltip string should be returned with it. @fix
* eo: fix according to latest eolian changesDaniel Kolesa2015-05-147-8/+8
|
* atspi: add ACTIVE state to elm_winLukasz Stanislawski2015-05-132-2/+21
|
* atspi: set FOCUSABLE state only when widget has no focusable childrenLukasz Stanislawski2015-05-132-8/+11
| | | | | | | | AT-SPI2 specification states that active window can have only one widget with FOCUSED state. This differs from elementary design which assumes that whole elementary widget tree branch is focused. Patch assumes that if a widget have no focusable children and can have focus it can be marked as FOCUSABLE on atspi bus.
* atspi: do not return ELM_ATSPI_STATE_ACTIVE when widget is enabled.Lukasz Stanislawski2015-05-131-2/+0
| | | | | According to atspi specification ATSPI_STATE_ACTIVE is reserved only for windows having keyboard focus.
* atspi: handle state change notifications in on_focus functionLukasz Stanislawski2015-05-133-9/+12
|
* elm_win: Add elm win key grab. If keyrouter support several keygrab mode, ↵Ji-Youn Park2015-05-135-0/+333
| | | | apps can use it.
* eo: sync with latest Eolian changes and introduce a harmless temporary hackDaniel Kolesa2015-05-125-11/+17
|
* atspi: add component interface to elm_widget_item objects.Lukasz Stanislawski2015-05-122-1/+63
|
* atspi: fix accessible_at_point method to match specification.Lukasz Stanislawski2015-05-122-21/+18
|
* eo: fix up the remaining doc commentsDaniel Kolesa2015-05-1112-28/+28
|
* elm_widget_item: fix doc commentsDaniel Kolesa2015-05-111-45/+45
|
* atspi: more org.a11y.atspi.Window signals is broadcasted.Lukasz Stanislawski2015-05-113-27/+70
|
* elm_win: Move enums to elm_win.eodevs/vitorsousa/efaces_elm_win_standardVitor Sousa2015-05-073-145/+163
| | | | | | | | Move enums from elm_win_common.h to elm_win.eo in order to make them more accessible for bindings. Moved the include for elm_win.eo.legacy.h to the top of elm_win_legacy.h to allow the use of the generated types in the function declarations.
* elm_win_standard: Add elm_win_standard classVitor Sousa2015-05-075-0/+52
| | | | | | | | | | | | | | | | This commit adds the Eolian class elm_win_standard. It is basically a derivation from elm_win that creates a default background. The intent is to replace the legacy functions elm_win_util_standard_add and elm_win_util_dialog_add by functions accessible via Eo API functions such as eo_add and eo_do. To fully replace an elm_win_util_standard_add call, use: eo_add(ELM_WIN_STANDARD_CLASS, NULL, elm_obj_win_name_set("example"), elm_obj_win_type_set(ELM_WIN_BASIC), elm_obj_win_title_set("Example"));
* elm_win: Replace elm_win_constructor by constructing propertiesVitor Sousa2015-05-072-18/+106
| | | | | | | | | | | Removed the constructing method elm_obj_win_constructor. Now "name" and "type" are properties that must be set at creation, like this: eo_add(ELM_WIN_CLASS, NULL, elm_obj_win_name_set("example"), elm_obj_win_type_set(ELM_WIN_BASIC)); Also, the "title" property can be set at creation now.
* eolian: use the new property syntaxDaniel Kolesa2015-05-0794-949/+802
|
* elm_genlist: Emitting signal when content or text is set in genlist itemJee-Yong Um2015-05-071-0/+8
| | | | | | | | | | | | | | | Summary: There could be a demand for providing subtle different item styles according to the existence of icon or text swallowed in genlist item. For example, if icon exists, genlist item shows icon, or show rectangle where icon should be placed. One style can have various form with this signal. Reviewers: Hermet Subscribers: Hermet Differential Revision: https://phab.enlightenment.org/D2348
* Updating spanish translationmaxerba2015-05-061-22/+26
|
* elm_photocam: use Efl.File in Elm_PhotocamVitor Sousa2015-05-063-37/+101
| | | | | | | | | | | | | Summary: Address the issue: - Elm photocam and the file interface clash on file_set. Specified in the page: https://phab.enlightenment.org/w/efl_interfaces/ Reviewers: felipealmeida, tasn Differential Revision: https://phab.enlightenment.org/D2351
* Win: Make animator,tick signal actually work.Tom Hacohen2015-05-062-16/+64
| | | | | | | | | This commit also updated one of the elementary test to show the new one of doing it. This lets users of the API just add a callback and automatically get animation ticks. It's done per window, because update rate may be different for different windows (think different screens).
* Revised classes and interfaces in .eo files and added missing attributesVitor Sousa2015-05-0656-354/+353
| | | | | | | | | | | | | | | | | Summary: Some newly implemented attributes are not present in several classes and interfaces. This patch: - Adds some attributes (like @nullable, @optional, own, free) to several .eo files. - Changes some eina types names to the equivalent eolian name (like "Eina_Bool" to "bool") - Adds the element type of lists and iterators. Reviewers: felipealmeida, tasn Reviewed By: tasn Differential Revision: https://phab.enlightenment.org/D2350
* Elm image: Use correct Eolian namespace syntax.Tom Hacohen2015-05-062-3/+3
|
* Elm button: Use correct Eolian namespace syntax.Tom Hacohen2015-05-063-5/+5
|
* Most of elm: Use correct Eolian namespace syntax.Tom Hacohen2015-05-0679-79/+79
|
* Elm bubble: Use correct Eolian namespace syntax.Tom Hacohen2015-05-061-1/+1
|
* Elm bg: Use correct Eolian namespace syntax.Tom Hacohen2015-05-061-1/+1
|
* Elm box: Use correct Eolian namespace syntax.Tom Hacohen2015-05-061-1/+1
|
* Elm container: Use correct Eolian namespace syntax.Tom Hacohen2015-05-0619-48/+48
|
* Elm layout: Use correct Eolian namespace syntax.Tom Hacohen2015-05-0641-122/+122
|
* Elm actionslider: Use correct Eolian namespace syntax.Tom Hacohen2015-05-061-1/+1
|
* Elm access: Use correct Eolian namespace syntax.Tom Hacohen2015-05-061-1/+1
|
* Elm widget+item: Use correct Eolian namespace syntax.Tom Hacohen2015-05-0683-454/+454
|
* elementary: Remove unused variableChris Michael2015-05-061-1/+0
| | | | | | @fix Signed-off-by: Chris Michael <cp.michael@samsung.com>
* Revert "fileselector: Work around initial genlist size bug for release."Stefan Schmidt2015-05-061-19/+0
| | | | | | This reverts commit 64a4cf4c6847936f5074ad94bf9a8f2283609c3b. Was only a workaround for the release. Needs proper fixing in the 1.15 cycle now.
* configure: Switch to dev mode again. Merge window for 1.15 is open now.Stefan Schmidt2015-05-061-1/+1
|
* release: Update NEWS and bump version for 1.14.0 releasev1.14.0Stefan Schmidt2015-05-062-1/+5
|
* fileselector: Work around initial genlist size bug for release.Stefan Schmidt2015-05-061-0/+19
| | | | | | | | Jupp, its a dirty hack but it helps to work around the problem for now and get the release out. I will revert it in master after the release and we keep the bug open until this is fixed and hopefully backported. ref T2367
* naviframe: fix poping top item continuously to empty the naviframe stack.Cedric BAIL2015-05-062-48/+75
| | | | | | This should be a proper fix for T1717. Idea is that we build a list of operation that needs to be deferred in order (including pop and push) so that we are sure we can pop and push in any order without the need to wait for any event.
* naviframe: add a test for checking expected behavior or item_pop.Cedric BAIL2015-05-052-0/+59
|
* gengrid: fix mem leak occuring when getting name from atspi interfaceLukasz Stanislawski2015-05-041-5/+7
|
* Fix slideshow smart events event_infoDave Andreoli2015-05-042-8/+27
| | | | | | | | | Changed all the callback_call to pass the correct Elm_Object_Item (Eo) pointer, was passing Elm_Slideshow_Item_Data instead. @fix Also updated the test
* map: fix scale calculation errorSung-Taek Hong2015-05-011-1/+1
| | | | | | | | | | | | | | | | Summary: As the map shows the nearer to the equator, the scale of the map should be smaller. In elm_map, the opposite happens because meters per pixel was miscalculated. Thus, calculation is corrected http://wiki.openstreetmap.org/wiki/Slippy_map_tilenames#Resolution_and_Scale @fix Reviewers: seoz, woohyun, Hermet Differential Revision: https://phab.enlightenment.org/D2426