summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Evas: Rename Zoomable_Interface to Efl.Ui.ZoomableJean-Philippe Andre2016-06-107-12/+13
|
* Evas: Rename Selectable_Interface to Efl.Ui.SelectableJean-Philippe Andre2016-06-1029-58/+59
|
* Evas: Rename Scrollable_Interface to Efl.Ui.ScrollableJean-Philippe Andre2016-06-1018-52/+46
|
* Evas: Rename Draggable_Interface to Efl.Ui.DraggableJean-Philippe Andre2016-06-1012-44/+46
|
* Evas: Rename Clickable_Interface to Efl.Ui.ClickableJean-Philippe Andre2016-06-1062-138/+130
| | | | | | | | | | Event prefix is efl_ui: EFL_UI_EVENT_CLICKED EFL_UI_EVENT_CLICKED_DOUBLE ... The event prefix could be reduced to efl but I personally prefer with UI.
* Evas: Fix previous commitJean-Philippe Andre2016-06-102-3/+0
| | | | Thanks @ami
* Label: Fix extra memory allocation of edje message.Yeshwanth Reddivari2016-06-101-1/+1
| | | | | | | | | | Summary: Edje_Message_Float_Set struct is already allocating double and hence no need to add extra double allocation. Reviewers: Hermet, jpeg, cedric, singh.amitesh Reviewed By: singh.amitesh Differential Revision: https://phab.enlightenment.org/D4035
* Evas: Remove Evas.Signal_InterfaceJean-Philippe Andre2016-06-109-24/+6
| | | | It was basically empty.
* Evas: Rename Evas.Filter to Efl.Canvas.Filter.InternalJean-Philippe Andre2016-06-108-100/+101
| | | | Trying to hide the name Evas from the public EO API...
* Efl: Make size_hint_restricted_get public, set protectedJean-Philippe Andre2016-06-101-1/+3
| | | | This is now possible thanks to 375179b47f (T3645).
* Grid: Fix static grid when size was not setJean-Philippe Andre2016-06-102-3/+19
| | | | | | Since we can change a standard grid into a static grid by changing the engine, it is necessary to fix the virtual size first.
* tests: Add test case for Grid.StaticJean-Philippe Andre2016-06-103-0/+202
| | | | This is copy of test_grid.c converted to EO.
* Efl.Ui.Grid.Static: Add implementation of simple gridJee-Yong Um2016-06-107-57/+152
| | | | | | | | | | | | Summary: Efl.Ui.Grid.Static uses virtual coordinates when arranging its child objects. (like Evas.Grid) Reviewers: jpeg Subscribers: woohyun, cedric Differential Revision: https://phab.enlightenment.org/D3989
* Efl: Rename event flags to processed and scrollingJean-Philippe Andre2016-06-107-34/+42
| | | | From on_hold and on_scroll
* Evas: Rename Evas.Image into Efl.Canvas.Image.InternalJean-Philippe Andre2016-06-1018-209/+216
| | | | | Make it abstract. And add Evas.Image as a legacy-only class.
* win: Add new API win_name_get (EO and legacy)Jean-Philippe Andre2016-06-102-0/+7
| | | | | | I see no reason to have a set and no get. @feature
* win: Add legacy elm_win_type_getJean-Philippe Andre2016-06-101-1/+0
| | | | This was present in earlier releases.
* eina: Smudge magic value on promise deletionLauro Moura2016-06-091-0/+3
|
* eina: Remove value type promisesLauro Moura2016-06-0914-956/+399
| | | | All values in promises are now considered as by-pointer.
* eolian: remove support for value-type promisesLauro Moura2016-06-092-11/+1
|
* eina: Fixes on promises behavior when cancellingLauro Moura2016-06-092-2/+251
| | | | | | - Free the cancel callbacks on promise delete - Cancelling an ended promise should be a nop - More tests to increase coverage
* eolian_cxx: Fix build after scope_get changesLauro Moura2016-06-091-5/+6
|
* ecore_wl2: Fix keyboard repeat handlingDerek Foreman2016-06-092-4/+10
| | | | | | Recent timer changes broke keyboard repeat under wayland - while that will probably be fixed shortly, this should be more robust and more accurate anyway.
* eolian: support @protected for accessors (get/set)Daniel Kolesa2016-06-099-26/+51
| | | | | | Previously it was only possible to set it for the whole property. @feature
* elm: fix efl_ui_flip header nameStefan Schmidt2016-06-091-1/+1
| | | | I itroduced this typo on my last commit. Thanks Cedric for spotting it.
* elm: efl_ui_flip: add fl_ui_flip_eo.h redirection header lost during renameStefan Schmidt2016-06-094-4/+5
| | | | | | | When this was renamed from elm_flip to efl_ui_flip the _eo.h header was lost which is needed as redirection. This broke for me in distcheck when the .eo.h was going to get generated. It also aligns it with the other headers we have here.
* eolian: fix incorrect doxygen param generationDaniel Kolesa2016-06-095-6/+5
| | | | | | The first param on methods was skipped for some reason. @fix
* evas-wayland-egl: Make sure surface pointer is valid before using itBenjamin Jacobs2016-06-091-4/+4
| | | | | | | | | | | | | | Summary: Prevents the uninitialized surface pointer to be used when glsym_evgl_native_surface_buffer_get is NULL. Reviewers: devilhorns Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D4016 @fix
* Simplify and fix poppler discovery codeDave Andreoli2016-06-091-2/+2
| | | | | | | | Now configure should abort in case poppler is not found (unless explicitly disabled) I'm still not sure about the hard "poppler < 0.40" requirement added by jpeg yesterday, we should fix the issue instead of tell "we don't support it"
* Tests: Convert Ui.Box and Ui.Grid to Efl.Gfx APIsJean-Philippe Andre2016-06-092-181/+183
| | | | | | Let's remove all evas_object_ stuff from there. :) This also changes hint_request into hint_min.
* Evas/Edje/Elm: Use combined_min instead of min everywhereJean-Philippe Andre2016-06-0937-73/+73
| | | | | | | | This allows apps to set the objects min size with hint_min, while letting the rest of EFL define the minimum size with rstricted_min. I don't like the property names much...
* Efl: Introduce app-side min size hintJean-Philippe Andre2016-06-094-8/+57
| | | | | | | | | | | | Now called "hint_min", not sure if it's the proper name for it. At first I wanted to reuse the request size hint instead of adding a new hint, but doing that would break Terminology or any app that already used size_hint_request. One problem with hint_request is that the legacy function already exists but its support is practically not implemented. @feature
* Edje: Fix some compilation warningsJean-Philippe Andre2016-06-091-1/+4
|
* Efl: Add geometry property (combines position and size)Jean-Philippe Andre2016-06-095-8/+54
| | | | | It's a helper function that can also in the future be used to implement atomic move+resize operations.
* Efl: rename size hint content_min to restricted_minJean-Philippe Andre2016-06-094-13/+13
| | | | | | Still not sure about which keyword is the best to use here, but anyway, it's a protected function so users should realize it's probably not what they want.
* Efl.Ui.Box: Simplify layout code with combined_minJean-Philippe Andre2016-06-091-18/+15
| | | | Simplify the code and fix an issue.
* Efl: Introduce combine_min size hintJean-Philippe Andre2016-06-093-0/+30
| | | | | | It combines the content min size and the requested min size by taking the MAX value. This will help support request size without major code changes.
* edje: cached the vg tree generation and fixed the interpolation betwwen two ↵Subhransu Mohanty2016-06-093-172/+130
| | | | | | | | | | vg tree. Reviewers: cedric, jpeg Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D4028
* edje : fix the typo in svg loader.Subhransu Mohanty2016-06-091-1/+1
| | | | | | | | | | Reviewers: SanghyeonLee, cedric, jpeg Reviewed By: jpeg Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D4027
* edje: unamed part are completely legit as long as no program try to interact ↵Cedric BAIL2016-06-081-2/+1
| | | | with them.
* elmentary: trigger selected event when mouse is up in index.Sungtaek Hong2016-06-081-0/+2
| | | | | | | | | | | | | | Summary: - selected callback should be called when the user releases a mouse button and selects an item. Reviewers: cedric, jpeg, Hermet, woohyun Subscribers: conr2d, cedric, jpeg Differential Revision: https://phab.enlightenment.org/D4022 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* evas: fix possible memory leaks in e3d_drawable_texture_rendered_pixels_getOleksandr Shcherbina2016-06-081-1/+3
| | | | | | | | | | | | | | Summary: @fix CID: 1356243, 1356242, 1356242, 1356242 Reviewers: cedric, Hermet, raster Subscribers: jpeg Differential Revision: https://phab.enlightenment.org/D4011 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* elementary: add implementation for elm_multibuttonentry_item_selected_get APIShilpa Singh2016-06-081-3/+5
| | | | | | | | | | | | | | | | | | | | Summary: Added definition for item_selected_get API Signed-off-by: Shilpa Singh <shilpa.singh@samsung.com> @fix Test Plan: select an item, call item_selected_get API to check status of the item Reviewers: cedric, CHAN Reviewed By: CHAN Subscribers: CHAN, rajeshps, cedric, jpeg Differential Revision: https://phab.enlightenment.org/D3999 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* elementary: cleanup event handler setup for hoversel.Cedric BAIL2016-06-081-18/+14
|
* elementary: rearrange hoversel when its parent is resizedJee-Yong Um2016-06-081-4/+23
| | | | | | | | | | | | | | Summary: Hoversel will be rearranged when its parent is resized. This patch was written by @godlytalias on tizen side. Reviewers: cedric Subscribers: jpeg, godlytalias Differential Revision: https://phab.enlightenment.org/D4025 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* edje: add new svg part to edcSubhransu Mohanty2016-06-0814-3/+570
| | | | | | | | | | | | Reviewers: Hermet, cedric Reviewed By: cedric Subscribers: jpeg, cedric, Hermet Differential Revision: https://phab.enlightenment.org/D3894 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* edje: little bit of refactoring, more needed.Cedric BAIL2016-06-081-105/+81
|
* edje: add svg support to parse and store a svg file as a vector object in .edj.Subhransu Mohanty2016-06-085-1/+2111
| | | | | | | | | | | | | | | | Summary: This is the svg loader which will parse the svg file and store it in a intermediate structure. It provides the helper function to get EET descriptor to save the structure into eet file. NOTE: Not all svg attributes are handled yet. but most common attributes are handled . Reviewers: Hermet, cedric Subscribers: Hermet, cedric, jpeg Differential Revision: https://phab.enlightenment.org/D3868 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* edje_edit: add missed part and description initializationsVitalii Vorobiov2016-06-081-0/+5
| | | | @fix
* eolian-cxx: Fix some C++ quirks that makes clang warn aboutFelipe Magno de Almeida2016-06-086-26/+18
|