platform/upstream/efl.git
8 years agoentry: send focus/unfocus signals to scroller interface
Amitesh Singh [Fri, 26 Feb 2016 14:25:31 +0000 (19:55 +0530)]
entry: send focus/unfocus signals to scroller interface

In case of scrollable entry, send focus/unfocus signals to scroller
interface edje.

8 years agoview list: free style in base destructor.
Amitesh Singh [Fri, 26 Feb 2016 14:04:20 +0000 (19:34 +0530)]
view list: free style in base destructor.

typecast const char * to void * and pass ptr to free() since it doesn't modify the value pointed to,
either conceptually or in practice, it merely looks up the memory block using the pointer and deallocates it.

@fix

8 years agogenlist: fix a typo.
Hermet Park [Fri, 26 Feb 2016 12:50:19 +0000 (21:50 +0900)]
genlist: fix a typo.

8 years agoelm_web: define elm_web_zoom_mode in eolian file elm_web.eo
Larry [Thu, 25 Feb 2016 21:54:09 +0000 (18:54 -0300)]
elm_web: define elm_web_zoom_mode in eolian file elm_web.eo

8 years agoelm_toolbar define elm_toolbar_item_state in elm toolbar eolian files
Larry [Thu, 25 Feb 2016 21:51:53 +0000 (18:51 -0300)]
elm_toolbar define elm_toolbar_item_state in elm toolbar eolian files

8 years agoelm_thumb_animation: moved Elm_Thumb_Animation_Settings to elm_thumb.eo
Larry [Wed, 24 Feb 2016 00:18:49 +0000 (21:18 -0300)]
elm_thumb_animation: moved Elm_Thumb_Animation_Settings to elm_thumb.eo

8 years agomoved eolian undefined enums to elm_systray.eo and elm_slider.eo
Larry [Tue, 23 Feb 2016 00:06:55 +0000 (21:06 -0300)]
moved eolian undefined enums to elm_systray.eo and elm_slider.eo

8 years agoelm_prefs: move Elm Prefs_Reset_Mode to elm_general.eo
Larry [Fri, 19 Feb 2016 23:43:33 +0000 (21:43 -0200)]
elm_prefs: move Elm Prefs_Reset_Mode to elm_general.eo

8 years agolist: always apply new size hints for subobjects
Mike Blumenkrantz [Thu, 25 Feb 2016 23:01:54 +0000 (18:01 -0500)]
list: always apply new size hints for subobjects

if a content's size hints change, reapplying the list's size hints
to override existing hints is required to prevent some list items from
having a bad layout

@fix

8 years agolist: do not constantly reset scr_min flags
Mike Blumenkrantz [Thu, 25 Feb 2016 21:38:51 +0000 (16:38 -0500)]
list: do not constantly reset scr_min flags

these get set during mode_set and when directly changing the flags.
at no other time should they be changed

@fix

8 years agopanes: add the style to fold by clicking
Jaehwan Kim [Thu, 25 Feb 2016 04:46:53 +0000 (13:46 +0900)]
panes: add the style to fold by clicking

Some area that is split by this style panes can be folded by clicking.
The styles are "left-fold", "right-fold", "up-fold", "down-fold".

@feature

8 years agohoversel: set hover layer to layer of hover_parent
Mike Blumenkrantz [Wed, 24 Feb 2016 20:02:11 +0000 (15:02 -0500)]
hoversel: set hover layer to layer of hover_parent

ref T3203

@fix

8 years agoexamples: fix evas3d example's "compile with" comment correctly
Jee-Yong Um [Tue, 23 Feb 2016 11:49:33 +0000 (20:49 +0900)]
examples: fix evas3d example's "compile with" comment correctly

Summary: In "compile with" comment, filenames are different from the actual ones.

Reviewers: cedric, Oleksander, Hermet

Reviewed By: Oleksander, Hermet

Differential Revision: https://phab.enlightenment.org/D3722

8 years agogenlist: focus out by pressing "up" key when no item is selected
Jee-Yong Um [Tue, 23 Feb 2016 11:46:35 +0000 (20:46 +0900)]
genlist: focus out by pressing "up" key when no item is selected

Summary:
move focus out of genlist by pressing "up" key when no item
is selected.

Test Plan: elementary_test -to fileselector

Reviewers: SanghyeonLee, cedric, Jaehyun_Cho, Hermet

Reviewed By: Hermet

Subscribers: Hermet

Differential Revision: https://phab.enlightenment.org/D3721

8 years agofix the wrong operation of mirrored set
taehyub [Tue, 23 Feb 2016 11:44:24 +0000 (20:44 +0900)]
fix the wrong operation of mirrored set

Summary:
fix the wrong operation of mirrored set.
when mirrored set is applied, notify change the theme using mirrored flag.
however, it is unnecessary operation.

@fix

Reviewers: Hermet, kimcinoo

Reviewed By: kimcinoo

Differential Revision: https://phab.enlightenment.org/D3700

8 years agoElm entry: No use of top object if not editable.
Subodh Kumar [Tue, 23 Feb 2016 11:33:24 +0000 (20:33 +0900)]
Elm entry: No use of top object if not editable.

Summary: No use of top object if not editable.

Reviewers: cedric, Hermet

Reviewed By: Hermet

Differential Revision: https://phab.enlightenment.org/D3719

8 years agoelm_image: fix wrong API call for scaling
Minkyu Kang [Tue, 23 Feb 2016 11:28:21 +0000 (20:28 +0900)]
elm_image: fix wrong API call for scaling

Summary: Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>

Reviewers: cedric, Hermet

Reviewed By: Hermet

Subscribers: seoz

Differential Revision: https://phab.enlightenment.org/D3724

8 years agoelm widget: move some types used in elm_widget.eo to Eolian files
Vitor Sousa [Tue, 16 Feb 2016 01:57:10 +0000 (23:57 -0200)]
elm widget: move some types used in elm_widget.eo to Eolian files

Move declarations of types used in elm_widget.eo to elm_general.eot and
elm_widget.eo.
Give them a Eolian name and use it instead of the old ones.

Correct the type name of some other types used as method parameters, by
using the Eolian names instead of legacy/generated names.

Reorganize the positions of elm_widget.eo.h inclusion and
of callback type declarations in elm_widget.h.
This make a clearer distinction of the types in elm_widget.h that are
still required in elm_widget.eo.h.

8 years agoelm widget: add documentation from elm_focus.h to elm_widget.eo
Vitor Sousa [Mon, 15 Feb 2016 15:04:48 +0000 (13:04 -0200)]
elm widget: add documentation from elm_focus.h to elm_widget.eo

8 years agoElm_photocam: moved enum Elm_photocam_Zoom_mode to elm_photocam.eo
Larry [Mon, 15 Feb 2016 18:36:40 +0000 (16:36 -0200)]
Elm_photocam: moved enum Elm_photocam_Zoom_mode to elm_photocam.eo

8 years agoelm_layout: moved Elm_Layout_Part_Alias_Description to elm_layout.eo
Larry [Fri, 12 Feb 2016 22:35:00 +0000 (20:35 -0200)]
elm_layout: moved Elm_Layout_Part_Alias_Description to elm_layout.eo

8 years agoelm.Image: use eolian eva.images enum values in elm_image.eo and remove unused elm_im...
Larry [Wed, 10 Feb 2016 21:53:27 +0000 (19:53 -0200)]
elm.Image: use eolian eva.images enum values in elm_image.eo and remove unused elm_image_common.h

8 years agoelm win: use actual window size not requested to resize child objects
Carsten Haitzler (Rasterman) [Sat, 20 Feb 2016 14:07:36 +0000 (23:07 +0900)]
elm win: use actual window size not requested to resize child objects

using requested size may not be correct, so use real size. this should
solve issues in some wm's and actually also solved some kind of object
size lag in wayland too.

@fix - onward from 79b6edd1a6ad763258337b7aac5bd7799411bb44

8 years agogenlist: remove unused variable
Stefan Schmidt [Fri, 19 Feb 2016 11:55:27 +0000 (12:55 +0100)]
genlist: remove unused variable

In 4c86a66f this var was added without any user. Remove it.

8 years agoedje_external: check icon param after other param is set in entry
SungTaek Hong [Thu, 18 Feb 2016 21:31:26 +0000 (13:31 -0800)]
edje_external: check icon param after other param is set in entry

Summary:
- icon param add an elm_icon and content set to icon part.
- entry's style is changing as other params are set and
  icon part may not exist in certain condition(default has no icon part)
- checking icon param later than other params will set icon part
  after the style is changed.

Reviewers: cedric, woohyun, jpeg, herdsman, tasn

Reviewed By: tasn

Subscribers: conr2d

Differential Revision: https://phab.enlightenment.org/D3693

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agoexamples: fix evas3d_object_on_button_example
Oleksandr Shcherbina [Thu, 18 Feb 2016 21:24:30 +0000 (13:24 -0800)]
examples: fix evas3d_object_on_button_example

Summary:
Remove mirror map tranformation (needn't, we had already fixed inverted texture
in evas.canvas3d).
Use hardware pick instead of cpu pick

Reviewers: cedric, Hermet, raster

Differential Revision: https://phab.enlightenment.org/D3712

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agoscrollable: multiply default step values by elm scale
Mike Blumenkrantz [Thu, 18 Feb 2016 18:37:13 +0000 (13:37 -0500)]
scrollable: multiply default step values by elm scale

bigger scale = bigger objects = bigger scrollers = more wheeling needed

8 years agoconfig: set larger vertical step size for Scrolling tab scroller
Mike Blumenkrantz [Thu, 18 Feb 2016 17:51:15 +0000 (12:51 -0500)]
config: set larger vertical step size for Scrolling tab scroller

scrollers with lots of large items need larger or configurable step sizes to
make them usable

8 years agoconfig: add option to modify scroll acceleration factor
Mike Blumenkrantz [Thu, 18 Feb 2016 17:44:43 +0000 (12:44 -0500)]
config: add option to modify scroll acceleration factor

when using a touchpad or frictionless mouse wheel, it becomes impossible
to accurately use a scroller which accelerates as scrollers on mobile devices
do. by setting this new option to 0, acceleration can be disabled and regular
behavior can be restored

ref 2ac2628612060114cf6e5205e5331044221178c6

@feature

8 years agoscrolling: add option to disable scroll animations
Mike Blumenkrantz [Thu, 18 Feb 2016 17:22:00 +0000 (12:22 -0500)]
scrolling: add option to disable scroll animations

when I scroll on a computer, I want my app to respond immediately. I don't
want to wait for it to finish scrolling and I don't want to have to guess
where the scroll will end.

ref 2ac2628612060114cf6e5205e5331044221178c6

@feature

8 years agoconfig: add more frames for scrolling options
Mike Blumenkrantz [Thu, 18 Feb 2016 17:05:19 +0000 (12:05 -0500)]
config: add more frames for scrolling options

this looked weird having options outside a frame

@fix

8 years agoelm win: fix window redraw if norender is enabled on withdrawn windows
Carsten Haitzler (Rasterman) [Thu, 18 Feb 2016 09:15:00 +0000 (18:15 +0900)]
elm win: fix window redraw if norender is enabled on withdrawn windows

we dont set this config by default so we dont see this - but a window
starts as withdrawn then becomes normal. this means the window starts
not rendering and may take 0.5 seconds to START because the eval is
deferred by 0.5 sec to avoid rapid switch to/from norender and other
states.

@fix

8 years agoelm win: fix excess resize callbacks on windows when not really resizing
Carsten Haitzler (Rasterman) [Wed, 20 Jan 2016 09:15:35 +0000 (18:15 +0900)]
elm win: fix excess resize callbacks on windows when not really resizing

this fixes excess callbacks on window (and content) objhects resizing
down then back up again when windows are forcibly resized like
fullscreen, maximized and remembered windows.

@fix

8 years agoelm_widget: do not set NULL as parent for object
Vyacheslav Reutskiy [Wed, 17 Feb 2016 15:43:00 +0000 (17:43 +0200)]
elm_widget: do not set NULL as parent for object

When widget has no parent object, it breakes usage of a custom
Elm_Theme. This commit fixes it.

@fix

8 years agomap: add scale_cb for map module
SungTaek Hong [Thu, 18 Feb 2016 01:03:10 +0000 (17:03 -0800)]
map: add scale_cb for map module

Summary:
- in elm_map's _source_mod_cb(), scale_cb is needed to
  load MAP tile module.
- currently, test_map mod.c lacks this scale_cb
  and fails to load Map Tile source.

Reviewers: woohyun, Hermet, cedric

Reviewed By: cedric

Differential Revision: https://phab.enlightenment.org/D3702

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agoelm_gen: highlight itself when there are no items
Jee-Yong Um [Thu, 18 Feb 2016 01:02:14 +0000 (17:02 -0800)]
elm_gen: highlight itself when there are no items

Summary:
When there are no items in genlist/gengrid, highlight stays at one dot of
top-left corner. This patch makes genlist/gengrid itself highlighted
when there are no items.

Reviewers: jpeg, SanghyeonLee

Differential Revision: https://phab.enlightenment.org/D3701

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agoedje_external: fix wrong logic in index
SungTaek Hong [Thu, 18 Feb 2016 00:56:30 +0000 (16:56 -0800)]
edje_external: fix wrong logic in index

Summary:
- Eina_Bool active_exists is to check whether Eina_Bool active
  is valid or not.
- Setting active_exists to autohide_disabled_set is apparently wrong.

Reviewers: Hermet, cedric, jpeg, woohyun

Subscribers: conr2d

Differential Revision: https://phab.enlightenment.org/D3695

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agoentry: add elm.swallow.background part to all of groups
Youngbok Shin [Wed, 17 Feb 2016 22:43:33 +0000 (14:43 -0800)]
entry: add elm.swallow.background part to all of groups

Summary:
elm.swallow.background part will be a default part for
widget's background image.
When entry widget's scrollable status is changed,
the background object will be moved to scr_edje or entry_edje.

Test Plan: N/A

Reviewers: kimcinoo, woohyun, cedric

Differential Revision: https://phab.enlightenment.org/D3677

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agocalendar: add elm.swallow.background part to all of groups
Youngbok Shin [Wed, 17 Feb 2016 22:42:03 +0000 (14:42 -0800)]
calendar: add elm.swallow.background part to all of groups

Summary:
elm.swallow.background part will be a default part for
widget's background image.

Test Plan: N/A

Reviewers: woohyun, kimcinoo, cedric, Hermet

Subscribers: Hermet

Differential Revision: https://phab.enlightenment.org/D3676

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agospinner: add invalid input validity filter
Shilpa Singh [Wed, 17 Feb 2016 22:41:03 +0000 (14:41 -0800)]
spinner: add invalid input validity filter

Summary:
Do not allow invalid input in to spinner.
Invalid Input can be:
1. '-' should not be inserted anywhere but the starting position, and no more than one '-' can be inputted.
2.  No more than one '.' can be inserted.

Signed-off-by: Shilpa Singh <shilpa.singh@samsung.com>
@feature

Test Plan:
1. Launch elementary test
2. Run spinner demo
3. Enter invalid inputs like inserting more than one '.', '-' or insert '-' anywhere else part from 1st position.

Reviewers: raster, CHAN, subodh6129, cedric

Subscribers: govi, buds

Differential Revision: https://phab.enlightenment.org/D3664

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agocursor: do not unconditionally unset cursor before setting an engine cursor
Mike Blumenkrantz [Wed, 17 Feb 2016 23:41:18 +0000 (18:41 -0500)]
cursor: do not unconditionally unset cursor before setting an engine cursor

this is unnecessary: every single engine unsets the cursor when the object
has been deleted

this deletes enlightenment's cursor object

ref 678437003f219f783ba14859a805ea27997470fd

@fix

8 years agoctxpopup: completely disable focus-setting on show
Mike Blumenkrantz [Wed, 17 Feb 2016 20:56:50 +0000 (15:56 -0500)]
ctxpopup: completely disable focus-setting on show

this was previously disabled for internal list objects, and now
it is disabled for all subobjects of ctxpopup. applying focus here
invokes every possible focus bug in elementary and prevents the application
from being useful in any way

ref 974c8b05a4c97367b636593f5420ff01e8364aac
ref T3088

@fix

8 years agoelm_spinner: do not SIGSEV on NULL format
Vitalii Vorobiov [Tue, 16 Feb 2016 14:05:16 +0000 (14:05 +0000)]
elm_spinner: do not SIGSEV on NULL format

Usually NULL was correct value, so lets return it back again

8 years agogengrid: add all contents unset API for content unset and reusing
SangHyeon Lee [Tue, 16 Feb 2016 06:28:45 +0000 (15:28 +0900)]
gengrid: add all contents unset API for content unset and reusing

Add elm_gengrid_item_all_contents_unset API for support content reuse
and unset. User can get back content objects in unrealized smart callback in item.
see elm_genlist_item_all_contents_unset also.

@feature

8 years agotransit: rename from elm_transit_revert_go() to elm_transit_revert()
Hermet Park [Sun, 14 Feb 2016 11:45:50 +0000 (20:45 +0900)]
transit: rename from elm_transit_revert_go() to elm_transit_revert()

elm_transit_revert_go() sounds like it triggers animation on reverse way.

but this api acutally just change a current state.
It doesn't trigger the transtion.

8 years agogenlist: bump item class version to 3 to fix abi breakage
Mike Blumenkrantz [Sat, 13 Feb 2016 19:38:26 +0000 (14:38 -0500)]
genlist: bump item class version to 3 to fix abi breakage

when adding new methods to public interface structs (such as item class),
the version must be bumped and checked in the new interface method calls
in order to avoid breaking abi for previously-compiled apps

ref 4c86a66f28876b68e92a90c8f741eed1130dd034

8 years agotooltip: set pass events on the tooltip, not the content
Mike Blumenkrantz [Fri, 12 Feb 2016 23:23:36 +0000 (18:23 -0500)]
tooltip: set pass events on the tooltip, not the content

tooltip content is swallowed, meaning that edje will be setting pass events
based on the theme

@fix

8 years agospinner: crash on illegal format set issue fix.
Shilpa Singh [Fri, 12 Feb 2016 20:13:02 +0000 (21:13 +0100)]
spinner: crash on illegal format set issue fix.

Summary:
Set any illegal format, spinner crashes, the format set to spinner
has to be valid hence a check is added initially itself to check for validity of
label formats.

Signed-off-by: Shilpa Singh <shilpa.singh@samsung.com>
Test Plan:
1. Set illegal format to spinner for e.g: elm_spinner_label_format_set(sp, "d");
2. Run spinner demo
Crash is observed

Reviewers: cedric

Subscribers: govi, buds

Differential Revision: https://phab.enlightenment.org/D3668

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agospinner: fix vertical drag style and logic
Subodh Kumar [Fri, 12 Feb 2016 20:00:50 +0000 (21:00 +0100)]
spinner: fix vertical drag style and logic

Summary:
Fix vertical drag style and logic.

For vertical spinner graggable should move
in y direction and since drag value is inverse
of spinner increment and decrement so delta should be inversed.

@fix

Test Plan:
1. Elementary test
2. Vertical spinner

Reviewers: cedric

Projects: #elementary

Differential Revision: https://phab.enlightenment.org/D3662

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agolayout: send signal when content is set to bg
SungTaek Hong [Fri, 12 Feb 2016 19:59:44 +0000 (20:59 +0100)]
layout: send signal when content is set to bg

Summary:
 - elm.swallow.background is a part reserved for customized bg.
 - When default bg image is already set, default bg has to be hidden when customized bg is set.
 - Emitting signal when a content is set to this part makes this hiding process a lot easier.

Reviewers: kimcinoo, cedric

Subscribers: cedric, kimcinoo

Differential Revision: https://phab.enlightenment.org/D3653

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agobox: add support size hint padding
Jee-Yong Um [Fri, 12 Feb 2016 19:45:20 +0000 (20:45 +0100)]
box: add support size hint padding

Summary: This patch adds suppoting size hint padding for elm_box.

Reviewers: raster, cedric, Hermet

Subscribers: cedric, kimcinoo

Differential Revision: https://phab.enlightenment.org/D3500

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agospinner: add min, max filter
Shilpa Singh [Fri, 12 Feb 2016 19:38:36 +0000 (20:38 +0100)]
spinner: add min, max filter

Summary:
In spinner's entry allow numbers only with in min/max range
Signed-off-by: Shilpa Singh <shilpa.singh@samsung.com>
@feature

Test Plan:
1. Set min/max value to spinner
2. Enter numbers beyond min/max value

Reviewers: CHAN, cedric

Reviewed By: cedric

Subscribers: subodh6129, buds, govi, CHAN, cedric, raster, id213sin

Differential Revision: https://phab.enlightenment.org/D3265

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agogenlist: add reusable_content_get item class function for support automatical content...
SangHyeon Lee [Fri, 12 Feb 2016 19:14:13 +0000 (20:14 +0100)]
genlist: add reusable_content_get item class function for support automatical content reusing in genlist.

Summary:
   Add new Item Class function reusable_content_get for improve genlist
   performance.
   If user want to reuse specific part contents, return old content
   which was passed by parameter of rreusable_content_get function.
   genlist will automatically caching those contents when item unrealized,
   and reusing it on item realizing.

   reusable_content_get will be performed content_get with old object caching.
   But if user return NULL in reusable_content_get, content_get is called to
   get new object.

   This feature is refered in Task T2813

   @feature

Test Plan: add test in genlist 1 case.

Reviewers: raster, singh.amitesh, cedric

Reviewed By: cedric

Subscribers: smohanty, seoz, woohyun, Hermet, eagleeye

Differential Revision: https://phab.enlightenment.org/D3252

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agowidget: don't access a widget focus if the object is not a widget.
Hermet Park [Fri, 12 Feb 2016 16:43:56 +0000 (01:43 +0900)]
widget: don't access a widget focus if the object is not a widget.

8 years agoentry: add elm_entry_select_region_get() API
Youngbok Shin [Fri, 12 Feb 2016 11:18:05 +0000 (20:18 +0900)]
entry: add elm_entry_select_region_get() API

Summary:
Already, there is a way to set a selection region:
elm_entry_select_region_set()
The get() API also useful and there is needs for this
inside of elm_entry.c. Add the API and replace codes
in atspi_text_selection_get with the API.
@feature

Test Plan:
1. Run "elementary_test -to entry3"
2. Make a selection on text.
3. Press "Sel" button.

Reviewers: tasn, herdsman, cedric, woohyun, Jaehyun, Hermet

Subscribers: Hermet

Differential Revision: https://phab.enlightenment.org/D3639

8 years agoels_box: fix item sizing error
Jee-Yong Um [Fri, 12 Feb 2016 10:50:55 +0000 (19:50 +0900)]
els_box: fix item sizing error

Summary:
Although items' size hint align are not set to fill,
Elm.Box expands its items.
This patch fixes item sizing error.

Test Plan: attached sample

Reviewers: cedric, jpeg, Hermet, Jaehyun, Jaehyun_Cho

Differential Revision: https://phab.enlightenment.org/D3667

8 years ago[gengrid] possible crash issue fixed.
Prince Kumar Dubey [Fri, 12 Feb 2016 10:42:25 +0000 (19:42 +0900)]
[gengrid] possible crash issue fixed.

Summary: reset show_it, bring_in_it and corresponding flags on item deletion

Test Plan: delete item with animation and rotate the handset display.

Reviewers: raster, cedric

Subscribers: shilpasingh, godlytalias, govi, rajeshps

Differential Revision: https://phab.enlightenment.org/D3672

8 years agolabel: add elm.swallow.background part to all of groups
Youngbok Shin [Fri, 12 Feb 2016 10:39:53 +0000 (19:39 +0900)]
label: add elm.swallow.background part to all of groups

Summary:
elm.swallow.background part will be a default part for
widget's background image.

Test Plan: N/A

Reviewers: woohyun, cedric, kimcinoo

Differential Revision: https://phab.enlightenment.org/D3675

8 years agoeolian helper: add --silent-types to mirror EFL
Daniel Kolesa [Wed, 10 Feb 2016 16:07:06 +0000 (16:07 +0000)]
eolian helper: add --silent-types to mirror EFL

8 years agoelementary: Use new object name "Elm.Widget_Item" instead of old name
Vitor Sousa [Fri, 5 Feb 2016 16:48:35 +0000 (14:48 -0200)]
elementary: Use new object name "Elm.Widget_Item" instead of old name

Replace the old name "Elm.Object.Item" by the new name of the class
"Elm.Widget_Item" in all .eo files.

8 years agoElm_Image: moved undefined types to eolian file
Larry [Thu, 4 Feb 2016 20:08:14 +0000 (18:08 -0200)]
Elm_Image: moved undefined types to eolian file

8 years agoelm win: replace Evas_Modifier_Mask by Evas.Modifier.Mask in elm_win.eo
Vitor Sousa [Thu, 4 Feb 2016 18:33:46 +0000 (16:33 -0200)]
elm win: replace Evas_Modifier_Mask by Evas.Modifier.Mask in elm_win.eo

8 years agoelm genlist: use Eolian conventions for Elm.List.Mode in elm_genlist.eo
Vitor Sousa [Tue, 2 Feb 2016 20:37:06 +0000 (18:37 -0200)]
elm genlist: use Eolian conventions for Elm.List.Mode in elm_genlist.eo

Use Eolian names for types and values of the enumeration Elm.List.Mode,
instead of legacy names, in elm_genlist.eo.

8 years agoElm.Map: move emun Zoom Mode, Source Type and Route Type to Eolian
Larry [Mon, 1 Feb 2016 20:53:07 +0000 (18:53 -0200)]
Elm.Map: move emun Zoom Mode, Source Type and Route Type to Eolian

8 years agomove enum e structs defines of elm_atspi_text to eolian
Larry [Fri, 29 Jan 2016 20:12:17 +0000 (18:12 -0200)]
move enum e structs defines of elm_atspi_text to eolian

8 years agoelementary: move types to elm_interface_atspi_accessible.eo
Vitor Sousa [Mon, 1 Feb 2016 14:14:17 +0000 (12:14 -0200)]
elementary: move types to elm_interface_atspi_accessible.eo

Move structs, enums and typedefs definitions from
elm_interface_atspi_accessible.h to elm_interface_atspi_accessible.eo.
Give them namespace names to conform with Eolian policies.

Replace all occurrences in elm_interface_atspi_accessible.eo with the
Eolian names.

Adjust include order in elm_interface_atspi_accessible.h to avoid
errors.

8 years agoelm_glview: move enums to eolian files
Larry [Wed, 27 Jan 2016 20:45:43 +0000 (18:45 -0200)]
elm_glview: move enums to eolian files

8 years agoelm_gesture_layer: move enums to .eo
Larry [Thu, 21 Jan 2016 22:35:36 +0000 (20:35 -0200)]
elm_gesture_layer: move enums to .eo

8 years agoelm gengrid: replace Ecore_Pos_Map with Ecore.Pos_Map in elm_gengrid.eo
Vitor Sousa [Mon, 25 Jan 2016 23:13:51 +0000 (21:13 -0200)]
elm gengrid: replace Ecore_Pos_Map with Ecore.Pos_Map in elm_gengrid.eo

Replace Ecore_Pos_Map with Ecore.Pos_Map in elm_gengrid.eo to correctly
use the Eolian name of the type.

8 years agoelementary: move definition of Elm_Glob_Match_Flags to elm_general.eot
Vitor Sousa [Fri, 22 Jan 2016 21:42:58 +0000 (19:42 -0200)]
elementary: move definition of Elm_Glob_Match_Flags to elm_general.eot

Move definition of Elm_Glob_Match_Flags from elm_gen.h to
elm_general.eot.
Use the Eolian name Elm.Glob.Match_Flags and replace the older name
by it in all .eo files.

Keep the legacy prefix "ELM_GLOB_MATCH".

8 years agoelementary: use the Eolian name for Elm.Genlist.Item.Type in .eo files
Vitor Sousa [Thu, 21 Jan 2016 21:37:05 +0000 (19:37 -0200)]
elementary: use the Eolian name for Elm.Genlist.Item.Type in .eo files

Replace Elm_Genlist_Item_Type with Elm.Genlist.Item.Type in .eo files
to use the proper Eolian name of this enumeration.

8 years agoelementary: move definition of Elm_Gen_Item_Class to elm_general.eot
Vitor Sousa [Thu, 21 Jan 2016 21:16:22 +0000 (19:16 -0200)]
elementary: move definition of Elm_Gen_Item_Class to elm_general.eot

Move the definition of Elm_Gen_Item_Class from elm_gen.h to
elm_general.eot.
Also move the definition of its aliases Elm_Gengrid_Item_Class and
Elm_Genlist_Item_Class from elm_gengrid_common.h and
elm_genlist_common.h to elm_general.eot.

Rename these types to Elm.Gen.Item.Class, Elm.Gengrid.Item.Class and
Elm.Genlist.Item.Class to follow Eolian standards. And rename all
occurrences in .eo files accordingly.

Put elm_gen.h include above elm_general.h to allow the callback fields
to be defined in elm_general.eot.

8 years agoelm_calendar,elm_datetime: move struct tm typedefs to .eo files
Vitor Sousa [Tue, 19 Jan 2016 20:45:45 +0000 (18:45 -0200)]
elm_calendar,elm_datetime: move struct tm typedefs to .eo files

Move elm_calendar and elm_datetime struct tm typedefs to theirs
respective .eo files.
Use Ecore.Time, an alias to struct tm, to refer to this type in the
.eo files.

Use namespaced names for these typedefs, in order to follow Eolian
standards.

8 years agoelementary: move definition of Elm_App_View_State to elm_general.eot
Vitor Sousa [Mon, 18 Jan 2016 18:20:59 +0000 (16:20 -0200)]
elementary: move definition of Elm_App_View_State to elm_general.eot

Move the definition of the enumeration Elm_App_View_State from
elm_app_common.h to elm_general.eot, and give it the the Eolian name:
Elm.App.View_State.

Replace Elm_App_View_State with Elm.App.View_State in
elm_app_client_view.eo and elm_app_server_view.eo.

8 years agoelm gengrid: fix Elm.Gengrid.Item.Scrollto_Type usage in .eo file
Vitor Sousa [Mon, 18 Jan 2016 17:03:50 +0000 (15:03 -0200)]
elm gengrid: fix Elm.Gengrid.Item.Scrollto_Type usage in .eo file

Use the proper Eolian name "Elm.Gengrid.Item.Scrollto_Type" instead of
Elm_Gengrid_Item_Scrollto_Type in functions in elm_gengrid_item.eo.

8 years agoelm entry: Move the declaration of Elm_Cnp_Mode to elm_entry.eo
Vitor Sousa [Thu, 14 Jan 2016 20:17:10 +0000 (18:17 -0200)]
elm entry: Move the declaration of Elm_Cnp_Mode to elm_entry.eo

Move the enumeration Elm_Cnp_Mode to elm_entry.eo to make it more
accessible for binding generation.
Also rename it to Elm.Cnp_Mode.

8 years agoelementary: Rename Elm_Icon_Type to Elm.Icon.Type in .eo files
Vitor Sousa [Thu, 14 Jan 2016 20:11:20 +0000 (18:11 -0200)]
elementary: Rename Elm_Icon_Type to Elm.Icon.Type in .eo files

Correct the usage of the type Elm_Icon_Type by replacing it with its
Eolian name (Elm.Icon.Type) in .eo files.

8 years agoelementary: rename classes in Eo files to use Elm as a namespace, not a prefix
Vitor Sousa [Mon, 11 Jan 2016 10:38:57 +0000 (08:38 -0200)]
elementary: rename classes in Eo files to use Elm as a namespace, not a prefix

Rename classes in Eo files that still uses "Elm" as a prefix to use it as a
namespace.

8 years agotheme: fix typo for adding background in ctxpopup
Stefan Schmidt [Fri, 5 Feb 2016 12:21:08 +0000 (13:21 +0100)]
theme: fix typo for adding background in ctxpopup

Introduced in 6cf09175874cca9e5859d580a5bad706012b8880. Thanks a lot to Davide
Andreoli for spotting this!

8 years agobutton: add elm.swallow.background part
SungTaek Hong [Fri, 5 Feb 2016 07:21:54 +0000 (08:21 +0100)]
button: add elm.swallow.background part

Summary:
- This swallow part is for custom bg image.
- previous bg has to be hid.

Reviewers: kimcinoo

Differential Revision: https://phab.enlightenment.org/D3657

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agobutton: remove unnecessary action in program
SungTaek Hong [Fri, 5 Feb 2016 07:21:13 +0000 (08:21 +0100)]
button: remove unnecessary action in program

Summary: @fix

Reviewers: kimcinoo, Hermet, cedric

Differential Revision: https://phab.enlightenment.org/D3658

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agopopup: add elm.swallow.background for background customize
taehyub [Fri, 5 Feb 2016 07:18:31 +0000 (08:18 +0100)]
popup: add elm.swallow.background for background customize

Summary: add elm.swallow.background part in elm/popup/base/default

Reviewers: kimcinoo

Differential Revision: https://phab.enlightenment.org/D3645

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agoctxpopup: add elm.swallow.backgournd for backgournd customize
taehyub [Fri, 5 Feb 2016 07:17:55 +0000 (08:17 +0100)]
ctxpopup: add elm.swallow.backgournd for backgournd customize

Summary: add elm.swallow.background part in elm/ctxpopup/base/default

Reviewers: kimcinoo

Differential Revision: https://phab.enlightenment.org/D3646

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agogenlist: remove dead code.
Cedric BAIL [Fri, 5 Feb 2016 07:16:58 +0000 (08:16 +0100)]
genlist: remove dead code.

8 years agowin: fix a possible crash in elm_win_add
Youngbok Shin [Fri, 5 Feb 2016 07:15:29 +0000 (08:15 +0100)]
win: fix a possible crash in elm_win_add

Summary:
The enginelist[0] can be NULL in some very rare cases.
Then enginelist[0] will be used for strcmp and it make a crash.
@fix

Test Plan: N/A

Reviewers: raster, cedric, woohyun, jypark, jaehwan

Differential Revision: https://phab.enlightenment.org/D3649

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agoelm: add Elm.Layout as edje externals' contents instead of Edje.Object
Jee-Yong Um [Fri, 5 Feb 2016 07:13:11 +0000 (08:13 +0100)]
elm: add Elm.Layout as edje externals' contents instead of Edje.Object

Summary:
When edje external parts add its content, edje object is added,
but it breaks elementary widget hierarchy.
In Elementary, edje external can use Elm.Layout to add its content.

Reviewers: cedric

Reviewed By: cedric

Subscribers: woohyun

Differential Revision: https://phab.enlightenment.org/D3655

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agogenlist: fix for a bug in tree expansion, T3132
Godly T Alias [Fri, 5 Feb 2016 07:11:41 +0000 (08:11 +0100)]
genlist: fix for a bug in tree expansion, T3132

Summary:
@fix T3132

If nobody sees issue with this change, this should be backported.

Signed-off-by: Godly T Alias <godly.talias@samsung.com>
Test Plan: elementary_test Genlist Tree, enable Tree effect

Reviewers: prince.dubey, SanghyeonLee, shilpasingh

Subscribers: govi, rajeshps

Maniphest Tasks: T3132

Differential Revision: https://phab.enlightenment.org/D3656

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agotransit: add possibility to revert an ongoing transition during play
Godly T Alias [Fri, 5 Feb 2016 07:08:16 +0000 (08:08 +0100)]
transit: add possibility to revert an ongoing transition during play

Summary:
Currently the feature available in transit to reverse play a transition is
auto-reverse which will play a transition in reverse mode once a transition
is complete. This feature helps the user to revert a transition at any point
of time when transition is going on.

New API added.

@feature T3019

Use Case:
While doing pinch zoom, we will be doing zoom transit effect from one step to other, during that transit if user do the pinch in reverse direction this API can be called so that transition will be reverted easily.

Signed-off-by: godly.talias <godly.talias@samsung.com>
Test Plan: elementary_test Transit Resizing / Transit Zoom / Transit Bezier / Transit Custom / Transit Fade / Transit Flip

Reviewers: raster, prince.dubey, shilpasingh, Hermet, seoz, cedric

Subscribers: rajeshps, govi

Differential Revision: https://phab.enlightenment.org/D3567

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agohoversel: improve key_action_move to handle disabled items
Jee-Yong Um [Fri, 5 Feb 2016 06:47:31 +0000 (07:47 +0100)]
hoversel: improve key_action_move to handle disabled items

Summary:
Existing key_action_move logic used elm_widget_focus_cycle on hover,
but only handled the first and last item to move focus circularly.
So if the first or last item is disabled, focus movement is blocked.
This patch makes hoversel handle focus movement by itself to handle
disabled item better.

Test Plan: elementary_test -to hoversel

Reviewers: Hermet, cedric, Jaehyun

Differential Revision: https://phab.enlightenment.org/D3640

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agocombobox: prevent empty swallow to be shown on hover_dismiss animation
divyesh purohit [Fri, 5 Feb 2016 06:18:04 +0000 (07:18 +0100)]
combobox: prevent empty swallow to be shown on hover_dismiss animation

Summary:
Hover dismiss animation takes 0.5 sec to complete. if the genlist item_count
becomes zero, empty swallow is shown in dismiss animation.
@fix T3124
Signed-off-by: divyesh purohit <div.purohit@samsung.com>
Test Plan:
please run combobox example from elementary_test.

Open hover by pressing on left side button of combobox or pressing "enter/space" key in entry
contained in combobox.
Type a char which is not in any genlist item , for example "a' is not presented in any genlist
item.
empty swallow shouldn't seen in dismiss animation.

Reviewers: shilpasingh, cedric, raster

Subscribers: rajeshps, govi

Maniphest Tasks: T3124

Differential Revision: https://phab.enlightenment.org/D3630

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agomultibuttonentry: fix Segfault on pressing Delete Key
divyesh purohit [Fri, 5 Feb 2016 06:16:13 +0000 (07:16 +0100)]
multibuttonentry: fix Segfault on pressing Delete Key

Summary:
Pressing "Delete" Key in MBE layout causes Segfault as MBE item is not deleted properly and also focus is not transferred back to MBE.

@fix

Signed-off-by: divyesh purohit <div.purohit@samsung.com>
Test Plan: Run MultibuttonEntry example from elementart_test . Add some MBE items, now press the delete key, it should delete items without causing segfaults and transfer focus to previous MBE item.

Reviewers: raster, cedric, CHAN, shilpasingh

Reviewed By: shilpasingh

Subscribers: rajeshps, govi

Differential Revision: https://phab.enlightenment.org/D3635

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
8 years agoentry: remove unnecessary variables
Thiep Ha [Fri, 5 Feb 2016 06:43:06 +0000 (15:43 +0900)]
entry: remove unnecessary variables

remove unnecessary dw, dh variables

8 years agoElm_Entry: Magnifier Not working properly on corner areas issue fix.
Shilpa Singh [Fri, 5 Feb 2016 06:05:57 +0000 (15:05 +0900)]
Elm_Entry: Magnifier Not working properly on corner areas issue fix.

Summary:
When magnifier is moved across corners and outside entry, working of magnifier
is not proper.

Magnifier is Restricted with in the window and to entry area and its position depends
on cursor.
Signed-off-by: Thiep Ha <thiepha@gmail.com>
Signed-off-by: Shilpa Singh <shilpa.singh@samsung.com>
@fix

Test Plan:
1. Enable Magnifier export ELM_MAGNIFIER_ENABLE=1
2. Launch elementary test and launch entry3 demo
3. Move magnifier on corners and outside of second entry

The contents of magnifiers are undefined when moved outside entry
and clipper moves in a different direction as magnifier.

Reviewers: cedric, raster, thiepha

Reviewed By: thiepha

Subscribers: buds, govi, rajeshps, subodh6129

Differential Revision: https://phab.enlightenment.org/D3586

8 years agogenlist: update all realized items in a single job
Amitesh Singh [Thu, 4 Feb 2016 18:14:19 +0000 (23:44 +0530)]
genlist: update all realized items in a single job

Summary:
Its really weird to call same job for each item and deletes that job in
next iteration. Since item_update() deletes the old update_job ecore job
again so basically we call update job only for the last realized item in the list.

 @fix

Reviewers: raster, jpeg, cedric, SanghyeonLee, tasn

Reviewed By: SanghyeonLee

Subscribers: seoz

Projects: #elementary

Differential Revision: https://phab.enlightenment.org/D3644

8 years agojs: Added layout example
Felipe Magno de Almeida [Wed, 3 Feb 2016 23:19:51 +0000 (21:19 -0200)]
js: Added layout example

8 years agojs: Added combobox class to JavaScript binding
divyesh purohit [Sat, 30 Jan 2016 20:29:35 +0000 (18:29 -0200)]
js: Added combobox class to JavaScript binding

8 years agocalendar.edc: fix typo in text style
Vitalii Vorobiov [Wed, 3 Feb 2016 12:13:49 +0000 (12:13 +0000)]
calendar.edc: fix typo in text style

@fix

8 years agoelementary: update mailmap addresses
Chris Michael [Tue, 2 Feb 2016 20:02:20 +0000 (15:02 -0500)]
elementary: update mailmap addresses

Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
8 years agopanel: no need for destructor anymore as the event handler will disappear in the...
Cedric BAIL [Tue, 2 Feb 2016 19:39:10 +0000 (11:39 -0800)]
panel: no need for destructor anymore as the event handler will disappear in the destructor.

8 years agogenlist: make automatic bounce test configurable.
Cedric BAIL [Tue, 2 Feb 2016 00:02:56 +0000 (16:02 -0800)]
genlist: make automatic bounce test configurable.