platform/core/uifw/dali-toolkit.git
6 years agoMerge "[4.0] Fixed an issue where the text would multiply the alpha value twice"... accepted/tizen/4.0/unified/20171129.150245 submit/tizen_4.0/20171129.111338
HyunJu Shin [Wed, 29 Nov 2017 11:06:34 +0000 (11:06 +0000)]
Merge "[4.0] Fixed an issue where the text would multiply the alpha value twice" into tizen_4.0

6 years ago[4.0] Add underflow preventation code 00/162100/4
Jinho, Lee [Wed, 29 Nov 2017 10:16:19 +0000 (19:16 +0900)]
[4.0] Add underflow preventation code

Change-Id: If8dcedc28a23c45912fbd46224e681cc47901525

6 years ago[4.0] Fix image not show issue 67/162067/3
xb.teng [Wed, 29 Nov 2017 02:52:17 +0000 (10:52 +0800)]
[4.0] Fix image not show issue

Change-Id: I22de84f3fa1f61a85df5c69c73de8d56a0b1f882

6 years ago[4.0] Fixed an issue where the text would multiply the alpha value twice 83/162083/4
Jinho, Lee [Wed, 29 Nov 2017 05:10:54 +0000 (14:10 +0900)]
[4.0] Fixed an issue where the text would multiply the alpha value twice

Change-Id: I40ea8666026d00ec074a8b555ceb75285366a213

6 years agoMerge "[4.0] Fix the child position when Parent sets Padding" into tizen_4.0
HyunJu Shin [Wed, 29 Nov 2017 05:45:20 +0000 (05:45 +0000)]
Merge "[4.0] Fix the child position when Parent sets Padding" into tizen_4.0

6 years ago[4.0] Update doxygen comments 73/161873/1
Seoyeon Kim [Tue, 28 Nov 2017 05:12:46 +0000 (14:12 +0900)]
[4.0] Update doxygen comments

- Parameters of member Dali::Toolkit::ProgressBar are not documented.
- Return type of member Dali::Toolkit::Control::ResourceReadySignal is not documented.
- Member Type (enumeration) of namespace Dali::Toolkit::Visual::Transform::Policy
  is not documented.
- To show some Visual Properties, added a comment in doxygen.

Change-Id: Ieb5306330aee1bb18dff190863fab4439bad2913
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
6 years ago[4.0] Fix the child position when Parent sets Padding 67/161867/1
Seoyeon Kim [Tue, 21 Nov 2017 04:47:27 +0000 (13:47 +0900)]
[4.0] Fix the child position when Parent sets Padding

Change-Id: I40015356186292f42ec2358fdfc1346623d2884e
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
6 years agoMerge "[4.0] RTL support of FlexContainer" into tizen_4.0
taeyoon0.lee [Tue, 28 Nov 2017 02:49:49 +0000 (02:49 +0000)]
Merge "[4.0] RTL support of FlexContainer" into tizen_4.0

6 years agoMerge "[4.0] Support Right-To-Left of padding/margin in control" into tizen_4.0
Taeyoon Lee [Tue, 28 Nov 2017 02:49:31 +0000 (02:49 +0000)]
Merge "[4.0] Support Right-To-Left of padding/margin in control" into tizen_4.0

6 years agoMerge "[4.0] Support Right-To-Left of tableView" into tizen_4.0
Taeyoon Lee [Tue, 28 Nov 2017 02:49:19 +0000 (02:49 +0000)]
Merge "[4.0] Support Right-To-Left of tableView" into tizen_4.0

6 years agoMerge "[4.0] Support Right-To-Left of padding/margin in imageView" into tizen_4.0
Taeyoon Lee [Tue, 28 Nov 2017 02:49:08 +0000 (02:49 +0000)]
Merge "[4.0] Support Right-To-Left of padding/margin in imageView" into tizen_4.0

6 years ago[4.0] DALi version 1.2.67 48/161748/1 accepted/tizen/4.0/unified/20171128.072827 submit/tizen_4.0/20171127.091326
Heeyong Song [Mon, 27 Nov 2017 08:37:07 +0000 (17:37 +0900)]
[4.0] DALi version 1.2.67

Change-Id: Ia376de3837dc6cdbfabdfcd13b3c52e6f79487be

6 years ago[4.0] Set a new size when Multiline property is changed. 84/161384/3
Jinho, Lee [Thu, 23 Nov 2017 06:14:51 +0000 (15:14 +0900)]
[4.0] Set a new size when Multiline property is changed.

Change-Id: If4be3075c5058c55c36e034fa6ec22fbf7982431

6 years ago[4.0] Animated Gradient Visual in devel-api 54/160754/2
Eunki Hong [Mon, 25 Sep 2017 06:41:41 +0000 (15:41 +0900)]
[4.0] Animated Gradient Visual in devel-api

Animated gradient visual. Can be used for Control's background.

At Internal::AnimatedGradientVisual :
 - Use only one shader codes to draw effects.
    *NOTE : We change shader string at AnimatedGradientVisual::CreateShader()
 - When DoSetProperties occured
   --> Set non-animated properties (for make Renderer)
   --> Set animated properties (for make Animations)
 - When DoSetOnStage occured
   --> Make Renderer
   --> Make Animations
   --> Play Animations
 - When DoSetOffStage occured
   --> Stop Animations

At AnimatedGradientVisual::Property :
 - 3 non-animated properties.
  - GRADIENT_TYPE = LINEAR / RADIAL
  - UNIT_TYPE = OBJECT_BOUNDING_BOX / USER_SPACE (See GradientVisual::units)
  - SPREAD_TYPE = REFLECT / REPEAT / CLAMP (See GradientVisual::spreadMethod)
 - 7 animated properties.
  - START_POSITION ( Vector2 )
  - START_COLOR ( Vector4 )
  - END_POSITION ( Vector2 )
  - END_COLOR ( Vector4 )
  - ROTATE_CENTER ( Vector2 )
  - ROTATE_AMOUNT ( Float )
  - OFFSET ( Float )
 - Every animate properties have there each values
  - START, TARGET, DIRECTION, DURATION, DELAY, REPEAT, REPEAT_DELAY, MOTION_TYPE, and EASING_TYPE.
  - animated by Dali::Animation::AnimateTo()
  - Setup properties by Property::Map

Change-Id: If85c08d4500d132b6d8de6ed016bf985770c846c
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
6 years agoMerge "[4.0] Fixed the appearance of a bold text when setting underline property...
Jinho, Lee [Mon, 27 Nov 2017 05:02:01 +0000 (05:02 +0000)]
Merge "[4.0] Fixed the appearance of a bold text when setting underline property." into tizen_4.0

6 years agoMerge "[4.0] Add Delete Key event in TextController" into tizen_4.0
Seoyeon Kim [Mon, 27 Nov 2017 02:04:18 +0000 (02:04 +0000)]
Merge "[4.0] Add Delete Key event in TextController" into tizen_4.0

6 years ago[4.0] Fixed the appearance of a bold text when setting underline property. 87/161387/1
Jinho, Lee [Mon, 6 Nov 2017 07:56:01 +0000 (16:56 +0900)]
[4.0] Fixed the appearance of a bold text when setting underline property.

Change-Id: I713b9caed94d900ab14585c307e68870d74789a3

6 years ago[4.0] RTL support of FlexContainer 86/161286/1
taeyoon0.lee [Fri, 22 Sep 2017 08:12:25 +0000 (17:12 +0900)]
[4.0] RTL support of FlexContainer

Change-Id: Ibc703d749415cf2b58615ddcb2619284784d4119

6 years ago[4.0] Support Right-To-Left of padding/margin in control 74/161274/1
adun [Fri, 20 Oct 2017 14:25:09 +0000 (22:25 +0800)]
[4.0] Support Right-To-Left of padding/margin in control

Change-Id: I5c0813c2b49645af61a78ca6b37afd90b7dabd17

6 years ago[4.0] Support Right-To-Left of tableView 73/161273/1
adun [Thu, 19 Oct 2017 19:28:16 +0000 (03:28 +0800)]
[4.0] Support Right-To-Left of tableView

Change-Id: Ie01c9eaa56e790b74efcd9705801d146c5ce492c

6 years ago[4.0] Support Right-To-Left of padding/margin in imageView 72/161272/1
adun [Thu, 19 Oct 2017 20:37:42 +0000 (04:37 +0800)]
[4.0] Support Right-To-Left of padding/margin in imageView

Change-Id: Ica0d4a9e2e70cf498f2c42738e3cfacd20968352

6 years ago[4.0] Add Delete Key event in TextController 32/160832/3
Seoyeon Kim [Mon, 20 Nov 2017 07:33:57 +0000 (16:33 +0900)]
[4.0] Add Delete Key event in TextController

- When the user presses 'Delete' key of H/W Keyboard,
  the character after the current cursor position is removed.

Change-Id: I82dd02d79510e7e2197c19fbacad66629595741a
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
6 years ago[4.0] DALi version 1.2.66 95/160795/1 accepted/tizen/4.0/unified/20171121.061731 submit/tizen_4.0/20171120.062402
Heeyong Song [Mon, 20 Nov 2017 06:12:38 +0000 (15:12 +0900)]
[4.0] DALi version 1.2.66

Change-Id: I86be0f6a58d37576abd6e2c98da1f7b5956daf7f

6 years ago[4.0] Outline effect has been fixed to be not front cropped. 73/160773/1
Jinho, Lee [Wed, 15 Nov 2017 18:11:18 +0000 (03:11 +0900)]
[4.0] Outline effect has been fixed to be not front cropped.

Change-Id: I21d773339ccedaaf55627a9f06ce3d6041f28f71

6 years ago[4.0] Fix BloomView bug 49/160749/1
Heeyong Song [Wed, 15 Nov 2017 08:30:46 +0000 (17:30 +0900)]
[4.0] Fix BloomView bug

Reset child controls when BloomView is deactivated

Change-Id: Ifc1a1ab5fe3991344f58c25c8488ea51f375f8be

6 years ago[4.0] (Automated Tests) Sync after stencil/depth buffer changes 29/160729/1
Adeel Kazmi [Thu, 9 Nov 2017 15:59:53 +0000 (15:59 +0000)]
[4.0] (Automated Tests) Sync after stencil/depth buffer changes

Change-Id: I188be8223f23d9e528d281f37c07d1a1748d52d4
(cherry picked from commit 1f172503d4866758631ed95c7c4687ad6d10f1d0)

6 years agoMerge "[4.0] test-application.cpp updatet to match dali-core." into tizen_4.0
Adeel Kazmi [Thu, 16 Nov 2017 16:50:33 +0000 (16:50 +0000)]
Merge "[4.0] test-application.cpp updatet to match dali-core." into tizen_4.0

6 years agoMerge "[4.0] Documenting ResourceReadySignal constraint/usage" into tizen_4.0
Adeel Kazmi [Thu, 16 Nov 2017 16:50:11 +0000 (16:50 +0000)]
Merge "[4.0] Documenting ResourceReadySignal constraint/usage" into tizen_4.0

6 years ago[4.0] test-application.cpp updatet to match dali-core. 53/160553/1
Victor Cebollada [Wed, 25 Oct 2017 09:24:15 +0000 (10:24 +0100)]
[4.0] test-application.cpp updatet to match dali-core.

* Needed to match the patches to render into the FBO

Change-Id: Id888dd607d9632b605527588dd96b4380f601020
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
(cherry picked from commit c0d5f2ce3666b09645224d014411b0f67ade2af4)

6 years ago[4.0] Documenting ResourceReadySignal constraint/usage 49/160549/1
Agnelo Vaz [Thu, 9 Nov 2017 11:50:43 +0000 (11:50 +0000)]
[4.0] Documenting ResourceReadySignal constraint/usage

Change-Id: I92cd68678a1f29d58f54c322ee7282b55c29f987
(cherry picked from commit 30ff20e521d003c00866bb3a821a5d36ca1d71f7)

6 years ago[4.0] ImageVisual ResourceReady signalled regardless of parent 48/160548/1
Agnelo Vaz [Tue, 7 Nov 2017 14:38:55 +0000 (14:38 +0000)]
[4.0] ImageVisual ResourceReady signalled regardless of parent

Regardless of whether the ImageVisual is staged on not it will signal when
 resource has loaded

Reusing the resource over multiple visuals should still return a ResourceReady signal
 once the control registers the visual.

Change-Id: Ib4af7dc79b11fa2a96a96ed1b53a387e4001debc
(cherry picked from commit ed40c470e7713deb2a976212b49c771514b99302)

6 years ago[4.0] Fix SVACE issue 26/160026/1
Seoyeon Kim [Tue, 14 Nov 2017 07:11:59 +0000 (16:11 +0900)]
[4.0] Fix SVACE issue

- Initialized ImageVisual member variables.

Change-Id: I9e069b52bc90558ebbd11d07e0ad25125c06591c
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
6 years ago[4.0] DALi 1.2.61.3 48/159848/1 accepted/tizen/4.0/unified/20171114.062928 submit/tizen_4.0/20171113.081818 submit/tizen_4.0/20171114.000133
Heeyong Song [Mon, 13 Nov 2017 08:12:32 +0000 (17:12 +0900)]
[4.0] DALi 1.2.61.3

Change-Id: I2c153182827da265348da6f6a3ca273a2ffbe705

6 years agoMerge "[4.0] Disable texture atlas in svg visual" into tizen_4.0
HyunJu Shin [Thu, 9 Nov 2017 04:45:24 +0000 (04:45 +0000)]
Merge "[4.0] Disable texture atlas in svg visual" into tizen_4.0

6 years agoMerge "[4.0] Apply markup properties for pre-set text" into tizen_4.0
Jinho, Lee [Thu, 9 Nov 2017 04:42:12 +0000 (04:42 +0000)]
Merge "[4.0] Apply markup properties for pre-set text" into tizen_4.0

6 years ago[4.0] Disable texture atlas in svg visual 54/159454/1
Heeyong Song [Wed, 8 Nov 2017 05:30:02 +0000 (14:30 +0900)]
[4.0] Disable texture atlas in svg visual

Change-Id: Ia984806dedbad41ff5d26510a28898aa57fe7c38

6 years agoSupport Right-To-Left mode of padding in Text Controls 20/159420/1
Seoyeon Kim [Mon, 30 Oct 2017 02:30:19 +0000 (11:30 +0900)]
Support Right-To-Left mode of padding in Text Controls

- Added Padding in Text controls.
- Added Right-To-Left mode in TextLabel, TextField and TextEditor.

Change-Id: Iaf7e78b4c303bbcd442c8db11399231a24701c86
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
6 years agoMerge "[4.0] ImageVisual to store TextureSet when LoadPolicy::IMMEDIATE" into tizen_4.0
Adeel Kazmi [Wed, 8 Nov 2017 10:58:38 +0000 (10:58 +0000)]
Merge "[4.0] ImageVisual to store TextureSet when LoadPolicy::IMMEDIATE" into tizen_4.0

6 years agoMerge "[4.0] Fix ImageView OnRelayout and add a commnet in MARGIN property" into...
Seoyeon Kim [Wed, 8 Nov 2017 09:51:44 +0000 (09:51 +0000)]
Merge "[4.0] Fix ImageView OnRelayout and add a commnet in MARGIN property" into tizen_4.0

6 years ago[4.0] Fix ImageView OnRelayout and add a commnet in MARGIN property 06/159306/1
Seoyeon Kim [Tue, 7 Nov 2017 07:01:24 +0000 (16:01 +0900)]
[4.0] Fix ImageView OnRelayout and add a commnet in MARGIN property

- Removed ImageView Margin implementation.
  Margin property is to be implemented in the future.

Change-Id: I9e1eeea960b7b2a0731f73b8f2a432c0ee5c7649
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
6 years ago[4.0] Added doxygen tag for UNDERLAY( false ) 21/158821/2
taeyoon0.lee [Fri, 3 Nov 2017 08:21:55 +0000 (17:21 +0900)]
[4.0] Added doxygen tag for UNDERLAY( false )

Change-Id: I1f8bd932af6aaa8a31f6ce31c8bd22d30f957f47

6 years ago[4.0] ImageVisual to store TextureSet when LoadPolicy::IMMEDIATE 57/159057/1
Agnelo Vaz [Mon, 6 Nov 2017 16:33:53 +0000 (16:33 +0000)]
[4.0] ImageVisual to store TextureSet when LoadPolicy::IMMEDIATE

Fixes bug
If textures loaded before renderer created (staged) then renderer
does not have valid textures when staged.

Change-Id: Iba4c5d85c01c3e9b821c3d466e8af98dbec08185

6 years ago[4.0] DALi version 1.2.61.2 88/158988/1 accepted/tizen/4.0/unified/20171109.065838 submit/tizen_4.0/20171106.091104 submit/tizen_4.0/20171106.114750 submit/tizen_4.0/20171108.072916
Heeyong Song [Mon, 6 Nov 2017 08:07:55 +0000 (17:07 +0900)]
[4.0] DALi version 1.2.61.2

Change-Id: Ibe354cadf4bae396697a2a3427c0b0c9ea83bb75

6 years agoMerge "[4.0] Text auto scroll animation bug fix" into tizen_4.0
Jinho, Lee [Mon, 6 Nov 2017 05:48:57 +0000 (05:48 +0000)]
Merge "[4.0] Text auto scroll animation bug fix" into tizen_4.0

6 years ago[4.0] Apply markup properties for pre-set text 41/158941/1
Jinho, Lee [Mon, 6 Nov 2017 05:12:09 +0000 (14:12 +0900)]
[4.0] Apply markup properties for pre-set text

Change-Id: Idbff0dabb14f643f44e2268f6db9dacd7d1e1a44

6 years ago[4.0] Text auto scroll animation bug fix 94/158894/2
Jinho, Lee [Mon, 30 Oct 2017 05:58:19 +0000 (14:58 +0900)]
[4.0] Text auto scroll animation bug fix

 Before this patch,
 That code played scroll animation.
    textLabel = TextLabel::New( "Hello World" );
    textLabel.SetProperty( Toolkit::TextLabel::Property::AUTO_SCROLL_STOP_MODE, TextLabel::AutoScrollStopMode::IMMEDIATE);
    textLabel.SetProperty( Toolkit::TextLabel::Property::ENABLE_AUTO_SCROLL,true);
    textLabel.SetProperty( Toolkit::TextLabel::Property::ENABLE_AUTO_SCROLL,false);
    stage.Add(textLabel);

 So I added code for stopping animation when mScrollAnimation was Null.

Change-Id: I4fa881215c4c30228e2cb0fb6f9f80e7060bf6b2

6 years agoAdded a pblic Control Devel API GetVisualResourceStatus. 39/158839/1
Umar [Thu, 27 Jul 2017 14:53:42 +0000 (15:53 +0100)]
Added a pblic Control Devel API GetVisualResourceStatus.

The purpose was to check whether Visual resource loading on given control was successful or not.

Change-Id: Ib8af77e84180d8a04171a93022ba6c3751519158
(cherry picked from commit ecf31ea6865a0ebd5b668166427def6499b3ddc1)

6 years ago[4.0] DALi version 1.2.61.1 49/158649/1 accepted/tizen/4.0/unified/20171103.162655 submit/tizen_4.0/20171102.100953
Heeyong Song [Thu, 2 Nov 2017 08:46:30 +0000 (17:46 +0900)]
[4.0] DALi version 1.2.61.1

Change-Id: I351cc9c936d2ff24bdce0d8ae9f9254dcf237de1

6 years ago[4.0] ImageVisual API for Orientation Correction 46/158546/1
Agnelo Vaz [Mon, 23 Oct 2017 13:27:17 +0000 (14:27 +0100)]
[4.0] ImageVisual API for Orientation Correction

Added Property OrientationCorrection which can control if the image should be rotated
to it's Orientation as defined by exif data.

Provided for JPEG images containing the exif data for Orientation.

Limitations:

The image provided will be cached, the orientation of the first cached image will be
used for subsequent images until the cache image is released.

Change-Id: I7627839c143c06dfde63a32eb8171e2205bf18af
Signed-off-by: Adeel Kazmi <adeel.kazmi@samsung.com>
6 years ago[4.0] Fix the text visual shaders to work with pre-multiplied alpha 45/158545/1
Richard Huang [Wed, 25 Oct 2017 16:57:34 +0000 (17:57 +0100)]
[4.0] Fix the text visual shaders to work with pre-multiplied alpha

Change-Id: I5f82c3933ef61a1ebc3c8d02d171c5f9b0fe7503
Signed-off-by: Adeel Kazmi <adeel.kazmi@samsung.com>
6 years ago[4.0] Soft shadow support in text visual 44/158544/1
Richard Huang [Tue, 10 Oct 2017 14:24:02 +0000 (15:24 +0100)]
[4.0] Soft shadow support in text visual

Change-Id: Id6d420e1be92a95edf0b0c6d9b8d91acec78dfde
Signed-off-by: Adeel Kazmi <adeel.kazmi@samsung.com>
6 years ago[4.0] ImageVisual Load policy 43/158543/1
Agnelo Vaz [Wed, 18 Oct 2017 08:12:00 +0000 (09:12 +0100)]
[4.0] ImageVisual Load policy

ImageVisual can be created with a PropertyMap that inserts a load policy.

Depending on the load policy the image(texture) will load immediately when the visual
is created or when the visual is attached to the stage.

Can be used to preload special images so can be displayed immediately on request.

Registered Visuals with LoadPolicy::IMMEDIATE will signal ResourceReadySignal when attached to stage.

Limitations:

Atlasing not supported with IMMEDIATE mode currently.

Change-Id: I3e1b3fd19f3027edb62858549890972f6a166cd0
Signed-off-by: Adeel Kazmi <adeel.kazmi@samsung.com>
6 years ago[4.0] ImageVisual Set default to ReleasePolicy::Destroyed 42/158542/1
Agnelo Vaz [Wed, 18 Oct 2017 12:34:53 +0000 (13:34 +0100)]
[4.0] ImageVisual Set default to ReleasePolicy::Destroyed

Change-Id: If7aac9c786cd852136e14e31653fddd62652204f
Signed-off-by: Adeel Kazmi <adeel.kazmi@samsung.com>
6 years ago[4.0] ImageVisual Release policy 41/158541/1
Agnelo Vaz [Tue, 26 Sep 2017 19:19:51 +0000 (20:19 +0100)]
[4.0] ImageVisual Release policy

ImageVisual can be created with a PropertyMap that inserts a release policy.
Depending on release policy the image lifetime in the texture cache will change.
Can be used for images that are often put on and taken off stage to reduce re-loading time.

Change-Id: If275630f236174ebbea3fde4cefae015b8db3a0f
Signed-off-by: Adeel Kazmi <adeel.kazmi@samsung.com>
6 years agoMerge "[4.0] Support to reset the image in ImageView" into tizen_4.0
Heeyong Song [Mon, 30 Oct 2017 23:09:13 +0000 (23:09 +0000)]
Merge "[4.0] Support to reset the image in ImageView" into tizen_4.0

6 years agoMerge "[4.0] Update common test util" into tizen_4.0
Heeyong Song [Mon, 30 Oct 2017 23:09:04 +0000 (23:09 +0000)]
Merge "[4.0] Update common test util" into tizen_4.0

6 years agoMerge "[4.0] propagate unhandled key( DALI_KEY_SEARCH )" into tizen_4.0
minho.sun [Fri, 27 Oct 2017 07:43:41 +0000 (07:43 +0000)]
Merge "[4.0] propagate unhandled key( DALI_KEY_SEARCH )" into tizen_4.0

6 years ago[4.0] Support to reset the image in ImageView 89/157989/1
Heeyong Song [Tue, 24 Oct 2017 06:24:31 +0000 (15:24 +0900)]
[4.0] Support to reset the image in ImageView

Change-Id: Ifdd57a09c6ecf3639558ee3ce80af666aa6108e8

6 years ago[4.0] Update common test util 88/157988/1
Heeyong Song [Thu, 19 Oct 2017 07:37:28 +0000 (16:37 +0900)]
[4.0] Update common test util

Change-Id: I56ade51a5143bb887deb81df25362a4c7294b1e7

6 years ago[4.0] Changed constraint to PropertyNotification for updating position/size 44/157144/3
taeyoon0.lee [Mon, 16 Oct 2017 13:45:23 +0000 (22:45 +0900)]
[4.0] Changed constraint to PropertyNotification for updating position/size

Change-Id: Id688eebcc2ac0b6ef4520b207d36b225a5379135

6 years ago[4.0] Fixed VideoView SVACE 75/156975/1 accepted/tizen/4.0/unified/20171023.120637 submit/tizen_4.0/20171023.071729 tizen_4.0.m2_release
taeyoon0.lee [Mon, 23 Oct 2017 03:12:11 +0000 (12:12 +0900)]
[4.0] Fixed VideoView SVACE

Change-Id: I8810d9387991fad42519e7a00de670a2673124fb

6 years ago[4.0] propagate unhandled key( DALI_KEY_SEARCH ) 23/156623/1
minho.sun [Thu, 19 Oct 2017 07:23:23 +0000 (16:23 +0900)]
[4.0] propagate unhandled key( DALI_KEY_SEARCH )

DALI_KEY_SEARCH is not handled in TextEditor/TextField.
Return false(say unconsumed) when this key is comming.

Change-Id: Id52cc8b67150d63d0f22b7e51fb81e6750c353d5
Signed-off-by: minho.sun <minho.sun@samsung.com>
6 years ago[4.0] Fix SVACE issue 60/156560/1
Seoyeon Kim [Wed, 18 Oct 2017 06:26:59 +0000 (15:26 +0900)]
[4.0] Fix SVACE issue

- Expression 'y' and 'x' have type 'unsigned int',
 so they're never less than zero in text-typesetter.cpp

Change-Id: Ia8e54bc18192f6e5eacde7fe899e9ca2978d81a9
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
6 years agoRevert "[4.0] Removed DEPRECATION WARNING by ImageView::New( image ) and SetImage... 19/156219/1 accepted/tizen/4.0/unified/20171017.212917 submit/tizen_4.0/20171017.144330 submit/tizen_4.0/20171017.145254
taeyoon0.lee [Tue, 17 Oct 2017 12:19:08 +0000 (21:19 +0900)]
Revert "[4.0] Removed DEPRECATION WARNING by ImageView::New( image ) and SetImage( image )"

This reverts commit c05798e54f2417f2113ca3de180edebd822cf70b.

Change-Id: I9ed37c5de02b985e63a31f5e2fbdef76d1ad66c0

6 years agoMerge "[4.0] Fix doc and comment for Native API Reference page" into tizen_4.0
minho.sun [Tue, 17 Oct 2017 11:06:45 +0000 (11:06 +0000)]
Merge "[4.0] Fix doc and comment for Native API Reference page" into tizen_4.0

6 years ago[4.0] Fix doc and comment for Native API Reference page 87/156187/1
minho.sun [Tue, 17 Oct 2017 09:45:24 +0000 (18:45 +0900)]
[4.0] Fix doc and comment for Native API Reference page

Change-Id: I6a46a65fd99f9b191df03b03898ec66fe21fb468
Signed-off-by: minho.sun <minho.sun@samsung.com>
6 years ago[4.0] Placeholder properties as enums 75/156175/2
Agnelo Vaz [Fri, 6 Oct 2017 15:34:52 +0000 (16:34 +0100)]
[4.0] Placeholder properties as enums

TextField and TextEditor uses Property::Index (enums) to set the Map for PLACEHOLDER.

return type is a MAP of Property Index keys with corresponding values regardless of setting type.

Change-Id: I70127d906ccb42085ce4ba3215888176ee1720d3

6 years ago[4.0] Add MARGIN and PADDING property in Control 23/155923/1
Seoyeon Kim [Wed, 20 Sep 2017 05:32:08 +0000 (14:32 +0900)]
[4.0] Add MARGIN and PADDING property in Control

- Added MARGIN property in Control
- Added PADDING property in Control

Change-Id: Ib3c023e0851af4eae8efce30335de1a5c5b6c05c
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
6 years ago[4.0] Fix the text visual shader which makes text lighter while containing emoji 85/155885/1
Richard Huang [Fri, 13 Oct 2017 16:22:55 +0000 (17:22 +0100)]
[4.0] Fix the text visual shader which makes text lighter while containing emoji

Change-Id: I883054b333fe5d2759fe2e101857cb985285bd80

6 years ago[4.0] Fix the text artifact (i.e. vertical lines below the text) while scrolling 84/155884/1
Richard Huang [Fri, 13 Oct 2017 10:39:12 +0000 (11:39 +0100)]
[4.0] Fix the text artifact (i.e. vertical lines below the text) while scrolling

Change-Id: Ia9af286cbf5e4dbd551cee73bd1c41dd3674cd4d

6 years ago[4.0] Fixed a problem where text size exceeds maximum texture size. 83/155883/1
Jinho, Lee [Fri, 22 Sep 2017 05:10:03 +0000 (14:10 +0900)]
[4.0] Fixed a problem where text size exceeds maximum texture size.

   - Adjusts the length of the text to the maximum texture size.
   - Dropped text will be shown as ellipsis.

Change-Id: Ie342327fcb8cb1ba0827b3943101ce2b141ac17d

6 years ago[4.0] Added underlay property 97/155797/1
Seoyeon Kim [Mon, 16 Oct 2017 07:13:56 +0000 (16:13 +0900)]
[4.0] Added underlay property

This reverts commit 66a8491c1cb90c19ee0080c1962a7e51ca3c1fc3.

Change-Id: Ic6333bb82117a22c3d937bb8ee2d42403fa8c88e

6 years ago[4.0] Support custom fonts registration 29/155729/1
Seoyeon Kim [Mon, 16 Oct 2017 04:56:34 +0000 (13:56 +0900)]
[4.0] Support custom fonts registration

This reverts commit e015012ba5080c5f600c4cbbab8c3a475ecd01a0.

Change-Id: I950246a65627f938c926fd92af65ab982d8f4f0f

6 years ago[4.0] Removed DEPRECATION WARNING by ImageView::New( image ) and SetImage( image ) 28/155728/1
Seoyeon Kim [Mon, 16 Oct 2017 04:56:19 +0000 (13:56 +0900)]
[4.0] Removed DEPRECATION WARNING by ImageView::New( image ) and SetImage( image )

This reverts commit 3d1f5e52b6997a4eb6950ca5c251065d453a563f.

Change-Id: Icb80cb92ad057137d1be8adf797e6ccf0192a5ef

6 years ago[4.0] Implement WebViewLite interface 27/155727/1
Seoyeon Kim [Mon, 16 Oct 2017 04:56:01 +0000 (13:56 +0900)]
[4.0] Implement WebViewLite interface

This reverts commit 7be31fe9f04fb9d718af9f9e1e7d1f1646922c12.

Change-Id: If0811579e66ede39c7348104f9cf119cb10dee66

6 years ago[4.0] Restore behavior of Uploaded and LoadingFinished signal 26/155726/1
Seoyeon Kim [Mon, 16 Oct 2017 04:55:45 +0000 (13:55 +0900)]
[4.0] Restore behavior of Uploaded and LoadingFinished signal

This reverts commit ddc8c65eb5c1d5ea3a22d48582f6fd0fed306bf2.

Change-Id: Ib9e407bb7d2645fc240113de7618e19e579aad6c

6 years agoMerge branch 'devel/master' into tizen_4.0 25/155725/1
Seoyeon Kim [Mon, 16 Oct 2017 04:54:39 +0000 (13:54 +0900)]
Merge branch 'devel/master' into tizen_4.0

Change-Id: Ibe67a6e65c2e90d1df86930e4e7043bcb3167b3a

6 years agoRevert "[4.0] Restore behavior of Uploaded and LoadingFinished signal" 24/155724/1
Seoyeon Kim [Mon, 16 Oct 2017 04:54:07 +0000 (13:54 +0900)]
Revert "[4.0] Restore behavior of Uploaded and LoadingFinished signal"

This reverts commit 1672f64946f3f6ed5bbf5e5317e46e541eabc9a5.

Change-Id: I40cf1801ec12df6ff1ff4e2a5ce0def2c40dd875

6 years agoRevert "[4.0] Implement WebViewLite interface" 23/155723/1
Seoyeon Kim [Mon, 16 Oct 2017 04:53:48 +0000 (13:53 +0900)]
Revert "[4.0] Implement WebViewLite interface"

This reverts commit 3d068e7c63f15edc498af44006f8d947d30b7038.

Change-Id: I4fb8cb9fc1e473972c514d9153fe85cf0a6b3de3

6 years agoRevert "[4.0] Removed DEPRECATION WARNING by ImageView::New( image ) and SetImage... 92/155692/1
Seoyeon Kim [Mon, 16 Oct 2017 02:52:46 +0000 (11:52 +0900)]
Revert "[4.0] Removed DEPRECATION WARNING by ImageView::New( image ) and SetImage( image )"

This reverts commit c8f393d8896751425de2e81fc55f445b1d7b4832.

Change-Id: I568f77f260eaca4cc9381a2de94d2acdd96568ab

6 years agoRevert "[4.0] Support custom fonts registration" 91/155691/1
Seoyeon Kim [Mon, 16 Oct 2017 02:52:19 +0000 (11:52 +0900)]
Revert "[4.0] Support custom fonts registration"

This reverts commit 8419e3b84588eb5c0a775b9011beeb9227c96d06.

Change-Id: I2da2c0d76bbb1ef13e776bfe781d9c17ae5d7553

6 years agoRevert "[4.0] Enable premultiplied alpha in text visual" 90/155690/1
Seoyeon Kim [Mon, 16 Oct 2017 02:51:53 +0000 (11:51 +0900)]
Revert "[4.0] Enable premultiplied alpha in text visual"

This reverts commit 81f76cb4a89acfaf0f4e0bd2037196fa6e2bc213.

Change-Id: Ieaea42904112413ccda7ecf44b28dc333da88267

6 years agoRevert "[4.0] Added underlay property" 88/155688/1
Seoyeon Kim [Mon, 16 Oct 2017 02:51:13 +0000 (11:51 +0900)]
Revert "[4.0] Added underlay property"

This reverts commit d783477596ed639777b73b1698523d6a2a348f2b.

Change-Id: I99288097d61e42bd16288dd6e6dfd58f41c7ed5a

6 years agoDALi Version 1.2.61 65/155565/1 dali_1.2.61
greynaga [Fri, 13 Oct 2017 13:59:46 +0000 (14:59 +0100)]
DALi Version 1.2.61

Change-Id: I1b3797d81ab142f8293fd59547da9cd4587288ee

6 years ago[4.0] Added underlay property 80/155380/3 submit/tizen_4.0/20171013.122021 submit/tizen_4.0/20171014.001058
taeyoon0.lee [Tue, 19 Sep 2017 15:11:51 +0000 (00:11 +0900)]
[4.0] Added underlay property

 default is underlay video rendering

Change-Id: I2b9656b3ded88bfd2306bd05bea734add74df503

6 years ago[4.0] Enable premultiplied alpha in text visual 31/154831/1 accepted/tizen/4.0/unified/20171012.230025 submit/tizen_4.0/20171012.085532 submit/tizen_4.0/20171012.091159 tizen_4.0.IoT.p1_release
taeyoon0.lee [Wed, 11 Oct 2017 09:16:49 +0000 (18:16 +0900)]
[4.0] Enable premultiplied alpha in text visual

This reverts commit 54e710c6d19b9732556f1a8ef7a8fe2bbb2ef3ef.

Change-Id: Ib3dcfcd670dc50746f44586cb08df1524aca0aa2

6 years ago[4.0] Support custom fonts registration 30/154830/1
taeyoon0.lee [Wed, 11 Oct 2017 09:15:25 +0000 (18:15 +0900)]
[4.0] Support custom fonts registration

This reverts commit 1ccb7aaa44a36b39f4591fc4cd9673637c91a675.

Change-Id: I4bbda02028e9f97050f01cba68b378e8a40c26d2

6 years ago[4.0] Removed DEPRECATION WARNING by ImageView::New( image ) and SetImage( image ) 29/154829/1
taeyoon0.lee [Wed, 11 Oct 2017 09:14:03 +0000 (18:14 +0900)]
[4.0] Removed DEPRECATION WARNING by ImageView::New( image ) and SetImage( image )

This reverts commit 8300ae1ef61d944d22abfb5260b00ff0866bb3f0.

Change-Id: Icb717ceffbfb79bdc1bcfdb5a25ab6d2418743e2

6 years ago[4.0] Implement WebViewLite interface 28/154828/1
taeyoon0.lee [Wed, 11 Oct 2017 09:13:20 +0000 (18:13 +0900)]
[4.0] Implement WebViewLite interface

This reverts commit 49ab501ce0874313c9eb27f33cf261ab2d482c2b.

Change-Id: I96231cfbcdf0888485b8ed3beeca880a36de1c29

6 years ago[4.0] Restore behavior of Uploaded and LoadingFinished signal 27/154827/1
taeyoon0.lee [Wed, 11 Oct 2017 09:11:25 +0000 (18:11 +0900)]
[4.0] Restore behavior of Uploaded and LoadingFinished signal

This reverts commit 8af08369ee34d382e735ee71496dd8d7423f2a9a.

Change-Id: If5984b2c9d2400944ccc97664ef62b460590a90e

6 years agoMerge branch 'devel/master(1.2.60)' into tizen_4.0 26/154826/1
taeyoon0.lee [Wed, 11 Oct 2017 09:10:19 +0000 (18:10 +0900)]
Merge branch 'devel/master(1.2.60)' into tizen_4.0

Change-Id: I8b30382d535f9ea3eca8952f7eacd0425f5f9b78

6 years agoRevert "[4.0] Restore behavior of Uploaded and LoadingFinished signal" 25/154825/1
taeyoon0.lee [Wed, 11 Oct 2017 09:09:23 +0000 (18:09 +0900)]
Revert "[4.0] Restore behavior of Uploaded and LoadingFinished signal"

This reverts commit 1eb285aca1d75034a578c900ffe414ed279976b8.

Change-Id: I441d523866fc9870648552f7891aa4509c8592fc

6 years agoRevert "[4.0] make same as LineWrap mode for TextLabel and TextEditor" 24/154824/1
taeyoon0.lee [Wed, 11 Oct 2017 09:08:53 +0000 (18:08 +0900)]
Revert "[4.0] make same as LineWrap mode for TextLabel and TextEditor"

This reverts commit 0a95b2081e95d20050ac3dd3938948b7b120cb90.

Change-Id: Ia2cf74eb79b64a5ea714ff56ac10bad07c3a73e5

6 years agoRevert "[4.0] fix LineWrap GET error" 23/154823/1
taeyoon0.lee [Wed, 11 Oct 2017 09:08:28 +0000 (18:08 +0900)]
Revert "[4.0] fix LineWrap GET error"

This reverts commit 85978f019f7f4b4bf4a49db7ccd926fec2486696.

Change-Id: I5253686ccedaff8ed180890c19e28643f8046edf

6 years agoRevert "[4.0] Implement WebViewLite interface" 22/154822/1
taeyoon0.lee [Wed, 11 Oct 2017 09:08:04 +0000 (18:08 +0900)]
Revert "[4.0] Implement WebViewLite interface"

This reverts commit 044b9a8497cf4507240c608662a0607cf5ca8694.

Change-Id: I561dd97aff2819c349c03ff46530f0b47331113a

6 years agoRevert "[4.0] Removed DEPRECATION WARNING by ImageView::New( image ) and SetImage... 21/154821/1
taeyoon0.lee [Wed, 11 Oct 2017 09:07:39 +0000 (18:07 +0900)]
Revert "[4.0] Removed DEPRECATION WARNING by ImageView::New( image ) and SetImage( image )"

This reverts commit c08de1cb98250054dffa83b07dfef29e6486e28d.

Change-Id: Ib024f382f0a1aa37c35a8394d29bbc1c4f9ad700

6 years agoRevert "[4.0] Supported XHTML entitites(Named & Numeric(hex/decimal)) in Markup Langu... 20/154820/1
taeyoon0.lee [Wed, 11 Oct 2017 09:07:10 +0000 (18:07 +0900)]
Revert "[4.0] Supported XHTML entitites(Named & Numeric(hex/decimal)) in Markup Language."

This reverts commit 7ac7999a95c2c44bffbaae309f04871c57f016ba.

Change-Id: I2023a4bd5facb05470196c9dfe1b51049b4bc1aa

6 years agoRevert "[4.0] Add support for Texture url in ImageVisual" 19/154819/1
taeyoon0.lee [Wed, 11 Oct 2017 09:06:47 +0000 (18:06 +0900)]
Revert "[4.0] Add support for Texture url in ImageVisual"

This reverts commit a79d49f2492b7e2ef14720b6bcbcdd02b6aed3b1.

Change-Id: I40cbf1f3a943e186c4fa58c81ab8f7b0f05b546e

6 years agoRevert "[4.0] Add support for Imagevisual to use External Texture as input through... 18/154818/1
taeyoon0.lee [Wed, 11 Oct 2017 09:06:20 +0000 (18:06 +0900)]
Revert "[4.0] Add support for Imagevisual to use External Texture as input through Url"

This reverts commit a240967b70f0acbe009318ec98ee9a6c338399f6.

Change-Id: Ifa94801d7f90d09d09ba22d43d3909df112c7520

6 years agoRevert "[4.0] Fast bounding-box clipping feature" 17/154817/1
taeyoon0.lee [Wed, 11 Oct 2017 09:05:56 +0000 (18:05 +0900)]
Revert "[4.0] Fast bounding-box clipping feature"

This reverts commit 99a35a3c51003271ea8a106f85fb09a8587c3a8a.

Change-Id: Ie63757d8ffe5ca7930d7422cbc4bed36aa234502