summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* elm_cnp: fix set format (cocoa)devs/captainigloo/osxJean Guyomarc'h2015-11-121-0/+1
|
* elementary_test: fix memory leakJean Guyomarc'h2015-11-121-1/+4
|
* elm_priv: centralized and safe inclusion of Ecore_Cocoa.hJean Guyomarc'h2015-11-123-6/+9
|
* elm_win: add Cocoa support for elm_win_window_id_get() APIJean Guyomarc'h2015-11-121-0/+14
|
* elm_win: use EINA_UNUSED instead of void castingJean Guyomarc'h2015-11-121-2/+1
|
* elm_cnp: Cocoa support for copy and paste (text only)Jean Guyomarc'h2015-11-121-0/+271
|
* elm_cursor: add support for Cocoa system cursorsJean Guyomarc'h2015-11-123-85/+199
|
* elm_config: add error messages when profile or config could not be savedJean Guyomarc'h2015-11-121-2/+8
|
* cocoa: call ecore_cocoa_init as part of the init process.Nicolas Aguirre2015-11-121-0/+3
| | | | | This mimic what x and wayland do. This is need if you want that ecore_event was inited early.
* release: Update NEWS and bump version for 1.16.0 releasev1.16.0Stefan Schmidt2015-11-092-1/+10
|
* po: update po files for releaseStefan Schmidt2015-11-0928-392/+392
|
* win : Prohibiting auto-rendering, until elm_win is shown.Wonsik Jung2015-11-051-0/+13
| | | | | | | | | | | | | | | | | | | | | Summary: Although elm_win is only created and evas_object_show with elm_win is not called, evas_rendering works sometimes. This rendering is not necessary. Because on one is shown and just back buffer is allocated. This patch is the prohibiting auto-rendering, if elm_win is shown by calling evas_object_show() It is effective for power consumption and reducing memory. @fix Test Plan: 1. elementary_test : checking all menus's working 2. modifed bg_example_02 : updated elm_bg's color by animator without evas_object_show(elm_win) Reviewers: jpeg, jypark, raster Reviewed By: raster Differential Revision: https://phab.enlightenment.org/D3282
* atspi: add missing SELECTED changed signalsLukasz Stanislawski2015-11-054-0/+16
| | | | @fix
* elm_segment_control: fix invalid parameterJean Guyomarc'h2015-11-051-1/+1
| | | | | | | | | | | | | | | Summary: Eo complained about an invalid type 'Edje_Object' passed to elm_widget_sub_object_add(). It is the segment control itself that should be the subject of the call to this function. @fix Test Plan: elementary_test: no more Eo errors Reviewers: cedric, stefan_schmidt Differential Revision: https://phab.enlightenment.org/D3277
* genlist tree test - minor - show all callbacks called so people knowCarsten Haitzler (Rasterman)2015-11-051-2/+53
| | | | | act as "docs" so people can see what is called when. minor just in elm test.
* autoscroll focus: pass the object region position relative to the scroller.chris2015-11-041-4/+11
| | | | | | | | | | | | | | | | | | Summary: The region position passed to region_show and region_bring_in used to be relative to the object position, not the scroller. This fixes T1686. @fix Reviewers: seoz Maniphest Tasks: T1686 Differential Revision: https://phab.enlightenment.org/D3168 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* interface_scrollable: delete unnecessary smart callback call.Hosang Kim2015-11-041-9/+7
| | | | | | | | | | | | | | | | | | | | | | | Summary: When _elm_interface_scrollable_page_bring_in is called, page is not changed yet. So "page,changed" smart callback is unnecessary. Sometimes "page,changed" smart callback is called twice. Because "drag,stop" and "anim,stop"is called it. So I add updating current page code. Test Plan: elementary_test -> scroller 1. using wheel. 2. using "prev page" and "next page". 3. draging sceen Reviewers: Hermet, singh.amitesh, cedric, raster, jaehwan, seoz Differential Revision: https://phab.enlightenment.org/D3260 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* colorselector: picker spinner UI not proper issue fix.Shilpa Singh2015-11-041-0/+3
| | | | | | | | | | | | | | | | | | | | | | | Summary: Picker spinner UI not proper, showing blank buttons issue fix. @fix T2401 Test Plan: 1. Launch elementary_test 2. Select colorselector 3. Tap on picker 4. observe, spinner UI not proper. Reviewers: cedric, subodh6129 Reviewed By: subodh6129 Maniphest Tasks: T2401 Differential Revision: https://phab.enlightenment.org/D3266 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* notify: animate on hideJean-Philippe Andre2015-11-041-1/+2
| | | | | | | | | | | | | There was all the necessary code, except that the default theme did not implement properly the signal & required data. There is still a problem though, as the "timeout" smart callback will be called at the start of the animation, so it's not possible for an app to hide() or del() at this point (that would get rid of the animation). But there's no other callback after the animation ends. elementary_test -to Notify > "Bottom" illustrates this issue.
* Revert "elm: Add eglfs backend support."Cedric BAIL2015-11-025-18/+4
| | | | | | This reverts commit 0d6aedbf44e5c371bddfa2b6b61c9409ed2184e3. This patch landed a little bit to early.
* elm: Add eglfs backend support.Nicolas Aguirre2015-11-035-4/+18
|
* Remove #include for config.h from C++ public headerFelipe Magno de Almeida2015-11-021-6/+2
| | | | | | Removed #include for elementary_config.h if HAVE_CONFIG_H is defined. Which causes errors with external projects. Instead, defined the necessary macros to use the Eo API.
* Hoversel: Fix dismiss callbackYeshwanth Reddivari2015-11-021-1/+1
| | | | | | | | | | | | Summary: Dismiss callback was getting called on hover object instead of hoversel object. Reviewers: raster, Hermet, alok25, mvsovani, conr2d, singh.amitesh Reviewed By: singh.amitesh Subscribers: sachin.dev Differential Revision: https://phab.enlightenment.org/D3261
* test_explode: use evas_object_clipees_has insteadAmitesh Singh2015-11-021-1/+1
| | | | fixes memory leak and better performance
* widget: update child_can_focus flag on focusability changeLukasz Stanislawski2015-10-302-2/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: Previously child_can_focus flag could be only updated when child is deleted from object's subobject list. This patch additionally updates child_can_focus flag when focusability is changed with elm_widget_focus_can_set function. Patch solves child_can_focus issue in similar situations: elm_icon_add(layout); elm_object_content_set(layout, icon); elm_widget_child_can_focus_get(layout); // returns EINA_TRUE icon = elm_icon_add(win); elm_object_content_set(layout, icon); elm_widget_child_can_focus_get(layout); // returns EINA_FALSE @fix Reviewers: cedric, stefan_schmidt Subscribers: seoz Differential Revision: https://phab.enlightenment.org/D3237 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* multibuttonentry: fix internal entry be an orphan when editable set API called.woochan lee2015-10-301-2/+5
| | | | | | | | | | | | | | | | | | | | | Summary: When user called "elm_multibuttonetnry_editable_set()" API as false. the internal entry will be unpacked from box. Then called that API as true again. the internal entry just show without box packed. Also, editable set API should not work in MBE shrink mode. Test Plan: Alternately Call elm_multibuttonentry_ediable_set API as true, false. Then check the internal entry state. Reviewers: Hermet, cedric Differential Revision: https://phab.enlightenment.org/D3134 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* multibuttonentry: when item is clicked/selected, select function not called ↵Shilpa Singh2015-10-302-0/+11
| | | | | | | | | | | | | | | | | | | | issue fix. Summary: The select function set in item_append does not get called on item selection issue fix. As per documentation, the function has to get called. @fix Test Plan: elementary_test is updated with the demo Reviewers: navnbeet, Hermet, CHAN, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3158 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* hoversel: remove scrollable_set/get() APIJee-Yong Um2015-10-303-46/+5
| | | | | | | | | | | | | | Summary: Hoversel scrollability can be considered as default behavior of hoversel. These APIs are not necessary any more. Reviewers: cedric, DaveMDS Subscribers: DaveMDS, cedric Differential Revision: https://phab.enlightenment.org/D3241 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* test_gesture_layer: use bigger font size for entryAmitesh Singh2015-10-301-2/+2
|
* win: reemit atspi "focused" event on bridge connectionLukasz Stanislawski2015-10-291-0/+7
| | | | | | | | | | | | At-spi clients assume that object:state-changed:focused event is emitted on application start. By the time atspi_bridge will establish connection on at-spi bus all focused events are already emitted. To fix this we reemit "focused" event in bridge connection callback. This fixes a bug when Orca screen reader do not read first element after application launch. @fix
* elm: Fix typos fun!Daniel Juyung Seo2015-10-2916-21/+21
|
* release: Update NEWS and bump version for 1.16.0-beta3 releasev1.16.0-beta3Stefan Schmidt2015-10-262-1/+6
|
* po: update po filesStefan Schmidt2015-10-2628-392/+392
|
* hoversel: expands scrollable hoversel as large as it canJee-Yong Um2015-10-263-6/+15
| | | | | | | | | | | | | | | | | | | | | | | Summary: In D2063, "max_size" data item is added to limit the number of items to show at a time when hoversel is expanded. However, it limits the number of items too few, so makes scrollable function useless. This patch removes limitation of hoversel size with pixels, but if it needs, developers can set the limitation yet. (By theme customization) Test Plan: elementary_test "hoversel" click the second hoversel Reviewers: DaveMDS, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3223 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* multibuttonentry: fix label packed many times in internal box.woochan lee2015-10-261-0/+2
| | | | | | | | | | | | | | | | | | Summary: The Internal box can has a lot of label for child when user set text many times. Fix this wrong implement. It has to get only one label for child. @fix Test Plan: Call elm_object_text_set() many times for MBE. Check the label got a wrong geometry. Reviewers: Hermet, cedric Differential Revision: https://phab.enlightenment.org/D3133 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* gesture_layer: fix long tap gesture has wrong timestamp.woochan lee2015-10-241-1/+6
| | | | | | | | | | | | | | | | | | | Summary: The timestamp has 0 value when n_long_tap_start callback called. Then timestamp is same on each n_long_tap_move callback functions. For fix this bug, update timestamp before called state_set function. Also update timestamp in every timeout. Test Plan: Run test_gesture_layer2.c Print timestamp in every n_long_tap_XXX callback. Reviewers: tasn, cedric Differential Revision: https://phab.enlightenment.org/D3144 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* elm_colorselector: fix color selection with spinnersAndrii Kroitor2015-10-241-1/+1
| | | | | | | | Reviewers: cedric, Hermet, raster, reutskiy.v.v Differential Revision: https://phab.enlightenment.org/D3145 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* elm_hoversel: remove unused internal functionsJee-Yong Um2015-10-241-23/+0
| | | | | | | | | | | | | | | | Summary: remove unused internal functions (that added for scrollability, but not used any more) T2765 Reviewers: Hermet, cedric Maniphest Tasks: T2765 Differential Revision: https://phab.enlightenment.org/D3132 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* Revert "elementary: Comment out (#if 0) unused functions"Cedric BAIL2015-10-241-2/+0
| | | | | | This reverts commit 74a7661119d122ec52844ad58c0901db739949f1. Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* elm_hoversel: change API name (label_auto_changed -> auto_update)Jee-Yong Um2015-10-241-2/+2
| | | | | | | | | | | | Summary: elm_hoversel_label_auto_changed_set/get() API names are not clear. Reviewers: Hermet, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3139 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* elm_hoversel: change Elm_Hoversel_Data member name from scroll_enabled to ↵Jee-Yong Um2015-10-242-6/+6
| | | | | | | | | | | | | | | | | | scrollable Summary: elm_hoversel_scroll_enabled_set/get() API were changed to elm_hoversel_scrollable_set/get(). However, the name of member of Elm_Hovsersel_Data related to those API are not changed. It can confuse developers later, so change it same to the name defined in elm_hoversel.eo file. Reviewers: Hermet, cedric Differential Revision: https://phab.enlightenment.org/D3140 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* elm_index: Fix memory leak issue in realloc failureVivek Ellur2015-10-221-3/+6
| | | | | | | | | | | Summary: @Fix Signed-off-by: Vivek Ellur <vivek.ellur@samsung.com> Reviewers: cedric Differential Revision: https://phab.enlightenment.org/D3214
* dayselector: fix warning related to argument typeVivek Ellur2015-10-221-1/+1
| | | | | | | | | | | | | Summary: @fix Signed-off-by: Vivek Ellur <vivek.ellur@samsung.com> Reviewers: cedric Differential Revision: https://phab.enlightenment.org/D3215 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* Fix typo in docsDave Andreoli2015-10-221-1/+1
| | | | not "a castrated ram (a male sheep)" :D
* flip: use eo_isa for checking object typesAmitesh Singh2015-10-221-3/+2
|
* image: use eo_isa for checking object types instead of string comparisonAmitesh Singh2015-10-221-10/+2
|
* elm_cnp: DnD/X11: correct drag window position in rotationShilpa Singh2015-10-211-2/+8
| | | | | | | | | | | | | | | | | | | | | | | Summary: For various angles 90, 180, 270, the calculation of dnd window position is not proper causing window to be placed wrongly while dragging. Signed-Off By: Kumar Navneet <k.navneet@samsung.com> @fix Test Plan: Longpress and drag and drop in entry by placing device at various angles 90, 180 and 270. Reviewers: woohyun, cedric, thiepha Reviewed By: thiepha Subscribers: navnbeet Differential Revision: https://phab.enlightenment.org/D3188 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* build: simplify SUBDIR usage in examplesStefan Schmidt2015-10-211-2/+1
|
* examples/sphere_hunter: fix another instance of floating point incorrectnessStefan Schmidt2015-10-211-2/+2
| | | | | | | I missed this one yesterday. Also change it to use floating point values instead of casting which does not make much sense for hard-coded values. CID: 1327343
* examples/sphere_hunter: remove unused functionStefan Schmidt2015-10-201-19/+0
| | | | | After fixing the Coverity issue clang told me that this function is actually not used at all.