platform/core/uifw/dali-toolkit.git
3 years ago[Tizen] Restore behavior of Uploaded and LoadingFinished signal
Heeyong Song [Thu, 7 May 2020 05:41:55 +0000 (14:41 +0900)]
[Tizen] Restore behavior of Uploaded and LoadingFinished signal

Change-Id: Ic05ce50a812ed5198ee38efffd0a2224764c5b64

3 years agoMerge branch 'devel/master' into tizen
Heeyong Song [Thu, 7 May 2020 05:37:55 +0000 (14:37 +0900)]
Merge branch 'devel/master' into tizen

Change-Id: Ia4480f68853d0cc95c20fcceb3a01c2529b2b927

3 years agoRevert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
Heeyong Song [Thu, 7 May 2020 05:36:49 +0000 (14:36 +0900)]
Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"

This reverts commit 506594128324e7a0e3b8793f1a3da2dc71b7d249.

Change-Id: Ic42dc06aa6013d1e554c536df19c3e191a319a7f

3 years agoRevert "[Tizen] Add AutofillContainer class and autofill implementation"
Heeyong Song [Thu, 7 May 2020 05:36:40 +0000 (14:36 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"

This reverts commit d6c840efea857e4e14115940a6f14821a23c81fd.

Change-Id: Ibd730557841370279ef52cd3be14626820c5dad3

3 years agoMerge "Libraries & RPM renamed to provide DALi 2" into devel/master
Adeel Kazmi [Mon, 4 May 2020 19:27:54 +0000 (19:27 +0000)]
Merge "Libraries & RPM renamed to provide DALi 2" into devel/master

3 years agoMerge "Add support to unselect text And Get_SelectedText" into devel/master
joogab yun [Mon, 4 May 2020 06:49:05 +0000 (06:49 +0000)]
Merge "Add support to unselect text And Get_SelectedText" into devel/master

3 years agoDALi Version 1.9.10 46/232346/1 dali_1.9.10
György Straub [Fri, 1 May 2020 11:01:18 +0000 (12:01 +0100)]
DALi Version 1.9.10

Change-Id: I411e023c92053c5c8caadb82669e6ce36f1b75e7

3 years agoLibraries & RPM renamed to provide DALi 2 52/232152/1
Adeel Kazmi [Tue, 28 Apr 2020 16:20:34 +0000 (17:20 +0100)]
Libraries & RPM renamed to provide DALi 2

Change-Id: Ibb3809dd605fa6718e0c7838a2f8b5da89eb1b12

4 years agoAdd support to unselect text And Get_SelectedText 24/231224/4
Ali [Mon, 20 Apr 2020 07:51:54 +0000 (10:51 +0300)]
Add support to unselect text And Get_SelectedText

This patch add two kind of support for TextField
1- SelectNone function: this will unselect text in textfield Programmatically by user.
2- Selected_Text property: this is readonly to return string for selected text.

After this patch approve, I will create other one for dali-csharp-bindings

Change-Id: If93ed6df44a41ff00f772a0abcfc9e2401c41480

4 years agoMerge "DALi Version 1.9.9" into devel/master
Adeel Kazmi [Fri, 24 Apr 2020 15:02:42 +0000 (15:02 +0000)]
Merge "DALi Version 1.9.9" into devel/master

4 years agoDALi Version 1.9.9 78/231878/1 dali_1.9.9
greynaga [Fri, 24 Apr 2020 15:00:47 +0000 (16:00 +0100)]
DALi Version 1.9.9

Change-Id: I5858046599cf88685961114230a623157956df78

4 years agotext tiling 78/230578/38
Joogab Yun [Mon, 13 Apr 2020 01:04:47 +0000 (10:04 +0900)]
text tiling

If the length of text is very long and exceeds maxTextureSize,
it cannot be displayed on the screen.

So tiling is required.
I implement tiling by attaching multiple renderers.

And the MAX_TEXT_LENGTH limit is removed.

sample)

    std::ifstream file;
    file.open(PATH[0]);
    std::stringstream ss;
    ss << file.rdbuf();
    file.close();

    ScrollView scroller = ScrollView::New();
    scroller.SetPosition( 100.f, 100.f);
    scroller.SetSize(500.f, 1000.f);
    scroller.SetAnchorPoint(AnchorPoint::TOP_LEFT);
    scroller.SetParentOrigin(ParentOrigin::TOP_LEFT);
    scroller.SetAxisAutoLock(true);

    TextLabel textLabel = TextLabel::New( );
    textLabel.SetProperty( TextLabel::Property::TEXT,  ss.str() );
    textLabel.SetAnchorPoint( AnchorPoint::TOP_LEFT );
    textLabel.SetParentOrigin(ParentOrigin::TOP_LEFT);
    textLabel.SetProperty( TextLabel::Property::VERTICAL_ALIGNMENT, "TOP" );
    textLabel.SetProperty( TextLabel::Property::MULTI_LINE, true );
    textLabel.SetProperty( TextLabel::Property::ELLIPSIS, false );
    textLabel.SetProperty( TextLabel::Property::ENABLE_MARKUP, true );
    textLabel.SetProperty( TextLabel::Property::POINT_SIZE, 16);
    textLabel.SetProperty( Toolkit::TextLabel::Property::TEXT_COLOR, Color::BLUE );

    scroller.Add( textLabel );
    stage.Add( scroller );

Change-Id: I65082244a801ba697fd9ab0b598c82e702c2a948

4 years ago[Tizen] Add AutofillContainer class and autofill implementation accepted/tizen/unified/20200423.054446 submit/tizen/20200422.063336
Jiyun Yang [Wed, 22 Apr 2020 06:15:00 +0000 (15:15 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation

This reverts commit 6a5866a40500fc520ead034e75f41ffc08dba8fe.

Change-Id: I59879446f64e098c1b26c2ef94acc867ed6c665c

4 years ago[Tizen] Restore behavior of Uploaded and LoadingFinished signal
Jiyun Yang [Wed, 22 Apr 2020 06:14:57 +0000 (15:14 +0900)]
[Tizen] Restore behavior of Uploaded and LoadingFinished signal

This reverts commit b6687a35f727a2224b25fb21677cb694e864e107.

Change-Id: I92b95e068b8d8bccb282ab064484c48920416eeb

4 years agoMerge branch 'devel/tizen' into tizen
Jiyun Yang [Wed, 22 Apr 2020 06:14:50 +0000 (15:14 +0900)]
Merge branch 'devel/tizen' into tizen

4 years agoRevert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
Jiyun Yang [Wed, 22 Apr 2020 06:14:42 +0000 (15:14 +0900)]
Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"

This reverts commit dd198f7916a2ce6929fd9e84e34199a6729aab86.

4 years agoRevert "[Tizen] Add AutofillContainer class and autofill implementation"
Jiyun Yang [Wed, 22 Apr 2020 06:14:34 +0000 (15:14 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"

This reverts commit 487f0514bba467d76bcb59883dadc0aa7485287b.

4 years agoDALi Version 1.5.8 65/231465/1 devel/tizen dali_1.5.8
Jiyun Yang [Wed, 22 Apr 2020 05:40:30 +0000 (14:40 +0900)]
DALi Version 1.5.8

Change-Id: I4af8631c1d3eeae9ccc4f13919699b679ae24732
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
4 years agoFix corner radius shader of the ImageVisual 80/230780/3
Heeyong Song [Tue, 14 Apr 2020 06:31:07 +0000 (15:31 +0900)]
Fix corner radius shader of the ImageVisual

It didn't work for premultiplied-alpha images.

Change-Id: I69d612112cb0f1ef132979ce830c8466a639c6f7

4 years agoMerge "Add Pixel format for depth and stencil" into devel/master
Seungho BAEK [Wed, 22 Apr 2020 04:33:41 +0000 (04:33 +0000)]
Merge "Add Pixel format for depth and stencil" into devel/master

4 years agoIntroduce new visual transform property : EXTRA_SIZE 71/230671/7
Jiyun Yang [Mon, 13 Apr 2020 09:28:06 +0000 (18:28 +0900)]
Introduce new visual transform property : EXTRA_SIZE

The EXTRA_SIZE can increase/decrease the computed visual size.

The property can be used when a user want to set a visual size
as a combined value of `absolute` and `relative`: ControlSize * a + b

For example, when a user want to set a visual size to (ControlSize * 2 + 10),
The transform map will be,

transformMap.Add( Transform::Property::SIZE, Vector2( 2.0f, 2.0f ) )
            .Add( Transform::Property::SIZE_POLICY, Vector2( Transform::Policy::Relative, Transform::Policy::Relative ) )
            .Add( Transform::Property::EXTRA_SIZE, Vector2( 10.0f, 10.0f ) );

Change-Id: Ibd1b7667a96900f216f7a9a14ea6813636161b48
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
4 years agoIntroduce new visual transform property : EXTRA_SIZE 92/231192/2
Jiyun Yang [Mon, 13 Apr 2020 09:28:06 +0000 (18:28 +0900)]
Introduce new visual transform property : EXTRA_SIZE

The EXTRA_SIZE can increase/decrease the computed visual size.

The property can be used when a user want to set a visual size
as a combined value of `absolute` and `relative`: ControlSize * a + b

For example, when a user want to set a visual size to (ControlSize * 2 + 10),
The transform map will be,

transformMap.Add( Transform::Property::SIZE, Vector2( 2.0f, 2.0f ) )
            .Add( Transform::Property::SIZE_POLICY, Vector2( Transform::Policy::Relative, Transform::Policy::Relative ) )
            .Add( Transform::Property::EXTRA_SIZE, Vector2( 10.0f, 10.0f ) );

Change-Id: Ibd1b7667a96900f216f7a9a14ea6813636161b48
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
4 years agoAdd Pixel format for depth and stencil 07/230907/3
Seungho, Baek [Thu, 16 Apr 2020 03:47:47 +0000 (12:47 +0900)]
Add Pixel format for depth and stencil

 - add cases on the switch to control pixel enum

Change-Id: Ib9c88d92926263e24fbd18c9bbed17ee76559a71
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoFix VCPKG CMake build issue. 57/231157/1
Victor Cebollada [Thu, 16 Apr 2020 16:07:13 +0000 (17:07 +0100)]
Fix VCPKG CMake build issue.

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

4 years agoMerge "Fix VCPKG CMake build issue." into devel/master
Adeel Kazmi [Fri, 17 Apr 2020 10:51:27 +0000 (10:51 +0000)]
Merge "Fix VCPKG CMake build issue." into devel/master

4 years agoDALi Version 1.9.8 15/231115/1 dali_1.9.8
Cheng-Shiun Tsai [Fri, 17 Apr 2020 09:07:09 +0000 (10:07 +0100)]
DALi Version 1.9.8

Change-Id: I1df33883ddd2136037f17dcf6871aa531fa02bfd

4 years agoFix VCPKG CMake build issue. 18/231018/1
Victor Cebollada [Thu, 16 Apr 2020 16:07:13 +0000 (17:07 +0100)]
Fix VCPKG CMake build issue.

Change-Id: Ife6103e8fea70ffc2759ef292e3c82838e719cac
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
4 years agoCMake for MS Windows command line 62/230962/1
Victor Cebollada [Thu, 6 Feb 2020 09:23:27 +0000 (09:23 +0000)]
CMake for MS Windows command line

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

4 years agoFix a crash of the TextureManager 66/230766/3
Heeyong Song [Tue, 14 Apr 2020 05:30:18 +0000 (14:30 +0900)]
Fix a crash of the TextureManager

The observer may be deleted during the UploadComplete callback.
So disconnect the signal and erase the object from the list first.

Change-Id: I614008c9a93025aef973dc8fcf38e1b578f8f35c

4 years agoFix a crash of the TextureManager 05/230905/1
Heeyong Song [Tue, 14 Apr 2020 05:30:18 +0000 (14:30 +0900)]
Fix a crash of the TextureManager

The observer may be deleted during the UploadComplete callback.
So disconnect the signal and erase the object from the list first.

Change-Id: I614008c9a93025aef973dc8fcf38e1b578f8f35c

4 years agoCMake for MS Windows command line 56/224156/11
Victor Cebollada [Thu, 6 Feb 2020 09:23:27 +0000 (09:23 +0000)]
CMake for MS Windows command line

Change-Id: I177976b075d26ddc520c772a801179b5871bad84
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
4 years agoUpdate 360x360 default stylesheet 87/230687/1
Seoyeon Kim [Mon, 13 Apr 2020 10:00:11 +0000 (19:00 +0900)]
Update 360x360 default stylesheet

Change-Id: If57afc8b8339dd6d7c2d9513d5336ab4d285b2be
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
4 years agoUpdate 360x360 default stylesheet 75/230675/1
Seoyeon Kim [Mon, 13 Apr 2020 10:00:11 +0000 (19:00 +0900)]
Update 360x360 default stylesheet

Change-Id: If57afc8b8339dd6d7c2d9513d5336ab4d285b2be
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
4 years ago[Tizen] Add AutofillContainer class and autofill implementation accepted/tizen/unified/20200413.222028 submit/tizen/20200413.083031
Seoyeon Kim [Mon, 13 Apr 2020 08:08:49 +0000 (17:08 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation

This reverts commit f3ea2bdc5952936d35a00322557e3279c168c857.

Change-Id: Ie2f4d28f9267006b430f23e1fd9d0950d5ae4c7f

4 years ago[Tizen] Restore behavior of Uploaded and LoadingFinished signal
Seoyeon Kim [Mon, 13 Apr 2020 08:08:35 +0000 (17:08 +0900)]
[Tizen] Restore behavior of Uploaded and LoadingFinished signal

This reverts commit 2488cae2c28b93e1534062fc20de85a1e0cd4cff.

Change-Id: Ibd242c23761fd07efb526d8cc1c8639f8c14f70e

4 years agoMerge branch 'devel/tizen' into tizen
Seoyeon Kim [Mon, 13 Apr 2020 08:08:22 +0000 (17:08 +0900)]
Merge branch 'devel/tizen' into tizen

Change-Id: I9de09c0e19f7c5bcdb5503651b7580b01578fbfe

4 years agoRevert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
Seoyeon Kim [Mon, 13 Apr 2020 08:07:58 +0000 (17:07 +0900)]
Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"

This reverts commit 39780d39a87d424887f7ee79e422360e1b25a610.

Change-Id: I469500b2438d2856046e8cbdc5b65520ff5daeb7

4 years agoRevert "[Tizen] Add AutofillContainer class and autofill implementation"
Seoyeon Kim [Mon, 13 Apr 2020 08:07:56 +0000 (17:07 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"

This reverts commit d3a8faf19ff131b13076ae9718235b9440e83f92.

4 years agoDALi Version 1.5.7 16/230616/1 dali_1.5.7
Seoyeon Kim [Mon, 13 Apr 2020 04:33:43 +0000 (13:33 +0900)]
DALi Version 1.5.7

Change-Id: I666eda7d9ebfa87a5492afa7cdfc7215fa583731
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
4 years agoAssetManager - Comments added to the code. 15/230615/1
Victor Cebollada [Thu, 9 Apr 2020 08:25:37 +0000 (09:25 +0100)]
AssetManager - Comments added to the code.

* Doxygen comments added to the interface.
* Comments added to clarify the logic.

Change-Id: Ic707e12b4a479014bfdb9907b094a16fc33a734c
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
4 years agoMerge "DALi Version 1.9.7" into devel/master
Adeel Kazmi [Thu, 9 Apr 2020 14:48:43 +0000 (14:48 +0000)]
Merge "DALi Version 1.9.7" into devel/master

4 years agoDALi Version 1.9.7 68/230368/1 dali_1.9.7
Anton Obzhirov [Thu, 9 Apr 2020 14:48:23 +0000 (15:48 +0100)]
DALi Version 1.9.7

Change-Id: I067800b2dfc87df280172caa4f22695877a4653b

4 years agoMerge "AssetManager - Comments added to the code." into devel/master
Adeel Kazmi [Thu, 9 Apr 2020 08:48:11 +0000 (08:48 +0000)]
Merge "AssetManager - Comments added to the code." into devel/master

4 years agoAssetManager - Comments added to the code. 21/230321/1
Victor Cebollada [Thu, 9 Apr 2020 08:25:37 +0000 (09:25 +0100)]
AssetManager - Comments added to the code.

* Doxygen comments added to the interface.
* Comments added to clarify the logic.

Change-Id: Ic707e12b4a479014bfdb9907b094a16fc33a734c
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
4 years ago[Tizen] Add AutofillContainer class and autofill implementation accepted/tizen/unified/20200409.083651 dali_1.5.6 submit/tizen/20200407.014802 submit/tizen/20200408.061309
Sunghyun Kim [Tue, 7 Apr 2020 01:14:48 +0000 (10:14 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation

This reverts commit 43c1e5d7354913d7291aa88d99e90be53d048865.

Change-Id: I91dfb9cd1cf6f4a12e6e654f113a34968b985fdf

4 years ago[Tizen] Restore behavior of Uploaded and LoadingFinished signal
Sunghyun Kim [Tue, 7 Apr 2020 01:14:29 +0000 (10:14 +0900)]
[Tizen] Restore behavior of Uploaded and LoadingFinished signal

This reverts commit 5582094468fc50ad6812284313fa6e5fe0f067d3.

Change-Id: I822dfafecaa7dbbd93d1d52b21875ec5db848fed

4 years agoMerge branch 'devel/tizen' into tizen
Sunghyun Kim [Tue, 7 Apr 2020 01:14:16 +0000 (10:14 +0900)]
Merge branch 'devel/tizen' into tizen

Change-Id: Ic33ee435ed1fecc191c0399168355091e642f069

4 years agoRevert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
Sunghyun Kim [Tue, 7 Apr 2020 01:13:40 +0000 (10:13 +0900)]
Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"

This reverts commit 07b60b549b89ba06432d9b2251d5da30549d1bb3.

Change-Id: Icb98fe561066e4caaed33d6849871666bdc3077b

4 years agoRevert "[Tizen] Add AutofillContainer class and autofill implementation"
Sunghyun Kim [Tue, 7 Apr 2020 01:13:28 +0000 (10:13 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"

This reverts commit 3f2e3272b76c0072a1dc85894007515a176a39fc.

Change-Id: I68863c10c89b650c4217ee9521ff3e8d6ba8ba44

4 years agoDALi Version 1.5.6 75/229875/1
Sunghyun Kim [Mon, 6 Apr 2020 07:16:20 +0000 (16:16 +0900)]
DALi Version 1.5.6

Change-Id: Icec80f88023f6e0cec68bffc668e33a1c1dda519

4 years agoMerge "DALi Version 1.9.6" into devel/master
Adeel Kazmi [Fri, 3 Apr 2020 08:13:29 +0000 (08:13 +0000)]
Merge "DALi Version 1.9.6" into devel/master

4 years ago[dali_1.9.6] Merge branch 'devel/master' 68/229768/1
Adeel Kazmi [Fri, 3 Apr 2020 07:39:02 +0000 (08:39 +0100)]
[dali_1.9.6] Merge branch 'devel/master'

Change-Id: I98c515fe5baff5d83bff8e4d8ea325962c5d7142

4 years agoDALi Version 1.9.6 62/229762/1 dali_1.9.6
Adeel Kazmi [Fri, 3 Apr 2020 07:38:23 +0000 (08:38 +0100)]
DALi Version 1.9.6

Change-Id: I2bc552e51a1724050b431e43d4a8fa44b7381acd

4 years agofixed align problems when whitespaces are included 08/229708/1
Joogab Yun [Tue, 31 Mar 2020 01:30:13 +0000 (10:30 +0900)]
fixed align problems when whitespaces are included

    TextLabel ellipsisTest = TextLabel::New( "abcde abced                                ");
    ellipsisTest.SetAnchorPoint( AnchorPoint::TOP_LEFT );
    ellipsisTest.SetProperty(TextLabel::Property::POINT_SIZE, 34.f);
    ellipsisTest.SetPosition(100.f, 600.f);
    ellipsisTest.SetSize( 344.f, 100.f);
    ellipsisTest.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, "CENTER");
    stage.Add( ellipsisTest );

Change-Id: I1641df673a9407e085da8645737f292d73fc8f0f

4 years agoMerge "fixed align problems when whitespaces are included" into devel/master
joogab yun [Fri, 3 Apr 2020 03:16:53 +0000 (03:16 +0000)]
Merge "fixed align problems when whitespaces are included" into devel/master

4 years agoExport Builder::TreeNode::ConstIterator symbols. 82/229682/1
Victor Cebollada [Wed, 29 Jan 2020 07:15:40 +0000 (07:15 +0000)]
Export Builder::TreeNode::ConstIterator symbols.

* These symbols were not exported and failed to link
  on a MS Windows app that uses them.

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

4 years agoExport Builder::TreeNode::ConstIterator symbols. 52/224152/8
Victor Cebollada [Wed, 29 Jan 2020 07:15:40 +0000 (07:15 +0000)]
Export Builder::TreeNode::ConstIterator symbols.

* These symbols were not exported and failed to link
  on a MS Windows app that uses them.

Change-Id: I655bad09c14611205ebe0b9ae7d9a17c17fe8b17
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
4 years agoCMake - Option added to define the default toolkit resource path. 81/229681/1
Victor Cebollada [Thu, 5 Mar 2020 07:07:46 +0000 (07:07 +0000)]
CMake - Option added to define the default toolkit resource path.

* Currently the resources folder is harcoded in compile time.
  This works on devices where applications are always installed
  in specific folders but doesn't work in other platforms like
  MS Windows where the user can install the application in any
  folder.

* An option has been added to the CMakeLists.txt file. By default
  the resource folder is hardcoded. This behaviour can be disabled
  by setting the option -DUSE_DEFAULT_RESOURCE_DIR=OFF and setting
  environment variables in installation time for DALI_IMAGE_DIR,
  DALI_SOUND_DIR, DALI_STYLE_DIR, DALI_STYLE_IMAGE_DIR and
  DALI_DATA_READ_ONLY_DIR.

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

4 years agoMerge "CMake - Option added to define the default toolkit resource path." into devel...
Adeel Kazmi [Thu, 2 Apr 2020 14:46:48 +0000 (14:46 +0000)]
Merge "CMake - Option added to define the default toolkit resource path." into devel/master

4 years agoAdd ArcVisual 61/229461/1
Heeyong Song [Thu, 5 Mar 2020 06:03:46 +0000 (15:03 +0900)]
Add ArcVisual

Change-Id: I6a1838fc5db66d253bb1c41915e7d571387d968e

4 years ago[Tizen] Add AutofillContainer class and autofill implementation accepted/tizen/unified/20200403.034521 submit/tizen/20200402.012345
Seungho, Baek [Wed, 1 Apr 2020 06:10:38 +0000 (15:10 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation

This reverts commit 419dcf8c77748ac22af7ad8c479ec4a85ffd0482.

4 years ago[Tizen] Restore behavior of Uploaded and LoadingFinished signal
Seungho, Baek [Wed, 1 Apr 2020 06:10:24 +0000 (15:10 +0900)]
[Tizen] Restore behavior of Uploaded and LoadingFinished signal

This reverts commit 28b392150c80a75681e07dbe4c289e02fecf82e3.

4 years agoMerge branch 'devel/tizen' into tizen
Seungho, Baek [Wed, 1 Apr 2020 06:10:18 +0000 (15:10 +0900)]
Merge branch 'devel/tizen' into tizen

4 years agoRevert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
Seungho, Baek [Wed, 1 Apr 2020 06:10:08 +0000 (15:10 +0900)]
Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"

This reverts commit dffd2ea7f2a9ad1ac4293aa5436e23b99e4ed526.

4 years agoRevert "[Tizen] Add AutofillContainer class and autofill implementation"
Seungho, Baek [Wed, 1 Apr 2020 06:10:04 +0000 (15:10 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"

This reverts commit 7f16935a222889a548984896b0c2f9731d16ac44.

4 years agoDALi Version 1.5.5 36/229436/1 dali_1.5.5
Seungho, Baek [Wed, 1 Apr 2020 05:22:36 +0000 (14:22 +0900)]
DALi Version 1.5.5

Change-Id: Iae6d4e156b014d77a9ee976a1443c8a7f475bd65
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoMerge "Do not set resources if there isn't mRenderer in nPatch-visual." into devel...
Seungho BAEK [Wed, 1 Apr 2020 05:14:29 +0000 (05:14 +0000)]
Merge "Do not set resources if there isn't mRenderer in nPatch-visual." into devel/tizen

4 years agoMerge "Add Jump_to frame and StopBehavior of Animated-image-visual(agif)" into devel...
Seungho BAEK [Wed, 1 Apr 2020 05:14:21 +0000 (05:14 +0000)]
Merge "Add Jump_to frame and StopBehavior of Animated-image-visual(agif)" into devel/tizen

4 years agoMerge "Fix issue, agif to play a number of times of loopcount." into devel/tizen
Seungho BAEK [Wed, 1 Apr 2020 05:14:14 +0000 (05:14 +0000)]
Merge "Fix issue, agif to play a number of times of loopcount." into devel/tizen

4 years agofixed align problems when whitespaces are included 72/229272/5
Joogab Yun [Tue, 31 Mar 2020 01:30:13 +0000 (10:30 +0900)]
fixed align problems when whitespaces are included

    TextLabel ellipsisTest = TextLabel::New( "abcde abced                                ");
    ellipsisTest.SetAnchorPoint( AnchorPoint::TOP_LEFT );
    ellipsisTest.SetProperty(TextLabel::Property::POINT_SIZE, 34.f);
    ellipsisTest.SetPosition(100.f, 600.f);
    ellipsisTest.SetSize( 344.f, 100.f);
    ellipsisTest.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, "CENTER");
    stage.Add( ellipsisTest );

Change-Id: I1641df673a9407e085da8645737f292d73fc8f0f

4 years agoAdd ArcVisual 44/226744/7
Heeyong Song [Thu, 5 Mar 2020 06:03:46 +0000 (15:03 +0900)]
Add ArcVisual

Change-Id: I6a1838fc5db66d253bb1c41915e7d571387d968e

4 years agoCMake - Option added to define the default toolkit resource path. 83/226783/10
Victor Cebollada [Thu, 5 Mar 2020 07:07:46 +0000 (07:07 +0000)]
CMake - Option added to define the default toolkit resource path.

* Currently the resources folder is harcoded in compile time.
  This works on devices where applications are always installed
  in specific folders but doesn't work in other platforms like
  MS Windows where the user can install the application in any
  folder.

* An option has been added to the CMakeLists.txt file. By default
  the resource folder is hardcoded. This behaviour can be disabled
  by setting the option -DUSE_DEFAULT_RESOURCE_DIR=OFF and setting
  environment variables in installation time for DALI_IMAGE_DIR,
  DALI_SOUND_DIR, DALI_STYLE_DIR, DALI_STYLE_IMAGE_DIR and
  DALI_DATA_READ_ONLY_DIR.

Change-Id: I3eea313da150f577e25171f2d5fb4791209f5181
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
4 years agoRemove RenderSurface from Core 37/229337/1
Richard Huang [Thu, 5 Mar 2020 14:15:13 +0000 (14:15 +0000)]
Remove RenderSurface from Core

Change-Id: I76672f149dade2d214af6408a86e316fa4a452ca

4 years agoMerge "Do not set resources if there isn't mRenderer in nPatch-visual." into devel...
Seungho BAEK [Tue, 31 Mar 2020 07:28:03 +0000 (07:28 +0000)]
Merge "Do not set resources if there isn't mRenderer in nPatch-visual." into devel/master

4 years agoDo not set resources if there isn't mRenderer in nPatch-visual. 28/229328/1
Seungho, Baek [Wed, 25 Mar 2020 04:57:03 +0000 (13:57 +0900)]
Do not set resources if there isn't mRenderer in nPatch-visual.

 - If LoadComplete is called after off-stage, it makes error.

Change-Id: I05338190e8db46faac4eb2a08eaaab3316dd3d2e
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoAdd Jump_to frame and StopBehavior of Animated-image-visual(agif) 26/229326/1
Seungho, Baek [Thu, 12 Mar 2020 07:39:50 +0000 (16:39 +0900)]
Add Jump_to frame and StopBehavior of Animated-image-visual(agif)

 - Added Jump_to action. To directly go to a frame.
 - Added StopBehavior to stop agif at the first, current, and last frame

Change-Id: I76fe813fd694df89e8cc8748cc2a82b69ed7a613
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoFix issue, agif to play a number of times of loopcount. 25/229325/1
Seungho, Baek [Fri, 27 Mar 2020 04:38:44 +0000 (13:38 +0900)]
Fix issue, agif to play a number of times of loopcount.

Change-Id: Ifc213ed03f3b5f1c0340d24e406781fcc2ce356f
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoAdd Jump_to frame and StopBehavior of Animated-image-visual(agif) 22/227522/16
Seungho, Baek [Thu, 12 Mar 2020 07:39:50 +0000 (16:39 +0900)]
Add Jump_to frame and StopBehavior of Animated-image-visual(agif)

 - Added Jump_to action. To directly go to a frame.
 - Added StopBehavior to stop agif at the first, current, and last frame

Change-Id: I76fe813fd694df89e8cc8748cc2a82b69ed7a613
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoDo not set resources if there isn't mRenderer in nPatch-visual. 30/228730/3
Seungho, Baek [Wed, 25 Mar 2020 04:57:03 +0000 (13:57 +0900)]
Do not set resources if there isn't mRenderer in nPatch-visual.

 - If LoadComplete is called after off-stage, it makes error.

Change-Id: I05338190e8db46faac4eb2a08eaaab3316dd3d2e
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoMerge "Fix issue, agif to play a number of times of loopcount." into devel/master
Adeel Kazmi [Mon, 30 Mar 2020 18:24:00 +0000 (18:24 +0000)]
Merge "Fix issue, agif to play a number of times of loopcount." into devel/master

4 years agoMerge "Remove RenderSurface from Core" into devel/master
Adeel Kazmi [Mon, 30 Mar 2020 14:41:01 +0000 (14:41 +0000)]
Merge "Remove RenderSurface from Core" into devel/master

4 years ago[dali_1.9.5] Merge branch 'devel/master' 77/229077/1
adam.b [Fri, 27 Mar 2020 13:29:53 +0000 (13:29 +0000)]
[dali_1.9.5] Merge branch 'devel/master'

Change-Id: I75797d7687e357e31811a849f773211916cdd990

4 years agoDALi Version 1.9.5 72/229072/1 dali_1.9.5
adam.b [Fri, 27 Mar 2020 13:28:58 +0000 (13:28 +0000)]
DALi Version 1.9.5

Change-Id: I2ba43ab7a0895c8d878389cdbf05a98d8d9f0326

4 years agoFix issue, agif to play a number of times of loopcount. 05/229005/2
Seungho, Baek [Fri, 27 Mar 2020 04:38:44 +0000 (13:38 +0900)]
Fix issue, agif to play a number of times of loopcount.

Change-Id: Ifc213ed03f3b5f1c0340d24e406781fcc2ce356f
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoUnparents internalRoot actor when gaussian-blur-view is deactived. 30/229030/1
Seungho, Baek [Mon, 16 Mar 2020 07:33:20 +0000 (16:33 +0900)]
Unparents internalRoot actor when gaussian-blur-view is deactived.

 - After gaussian-blur-view is once activated, Renderers of internalRoot actor are remained.
   When the gaussian-blur-view become deactived, internalRoot is still child of the View,
   and, the renderers of internalRoot will be renderered.
 - So, to add the internalRoot to gaussian-blur-view when it is actived and
   to unparent the internalRoot when the view become deactived, make the renderers do not affect rendering results.

Change-Id: If147583d008662335c539b0e016abeb67e0a9679
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
4 years agoSupport the blur radius of the ColorVisual 95/228995/1
Heeyong Song [Thu, 20 Feb 2020 01:19:31 +0000 (10:19 +0900)]
Support the blur radius of the ColorVisual

Change-Id: Iaee00d74e327372c040b5137e0ce1666b5a0b59b

4 years agoRemove RenderSurface from Core 13/226813/4
Richard Huang [Thu, 5 Mar 2020 14:15:13 +0000 (14:15 +0000)]
Remove RenderSurface from Core

Change-Id: I76672f149dade2d214af6408a86e316fa4a452ca

4 years agoSupport the blur radius of the ColorVisual 27/225427/9
Heeyong Song [Thu, 20 Feb 2020 01:19:31 +0000 (10:19 +0900)]
Support the blur radius of the ColorVisual

Change-Id: Iaee00d74e327372c040b5137e0ce1666b5a0b59b

4 years agoMerge "Unparents internalRoot actor when gaussian-blur-view is deactived." into devel...
Seungho BAEK [Wed, 25 Mar 2020 00:43:52 +0000 (00:43 +0000)]
Merge "Unparents internalRoot actor when gaussian-blur-view is deactived." into devel/master

4 years ago[Tizen] Add AutofillContainer class and autofill implementation submit/tizen/20200323.113128
neostom432 [Mon, 23 Mar 2020 09:42:44 +0000 (18:42 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation

This reverts commit 7317df76fd980845c777dd066cdf0d219a1d8107.

4 years ago[Tizen] Restore behavior of Uploaded and LoadingFinished signal
neostom432 [Mon, 23 Mar 2020 09:42:26 +0000 (18:42 +0900)]
[Tizen] Restore behavior of Uploaded and LoadingFinished signal

This reverts commit 776bd91af65b23f49ea8dd04abddf8a075c2d9b1.

4 years agoMerge branch 'devel/tizen' into tizen
neostom432 [Mon, 23 Mar 2020 09:42:16 +0000 (18:42 +0900)]
Merge branch 'devel/tizen' into tizen

4 years agoRevert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
neostom432 [Mon, 23 Mar 2020 09:42:04 +0000 (18:42 +0900)]
Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"

This reverts commit 013de76f2957c8a18942e87d5859a34a30800210.

4 years agoRevert "[Tizen] Add AutofillContainer class and autofill implementation"
neostom432 [Mon, 23 Mar 2020 09:42:01 +0000 (18:42 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"

This reverts commit f8fc935724b6773c7cf3a866c23623617112d50f.

4 years agoDALi Version 1.5.4 dali_1.5.4
neostom432 [Mon, 23 Mar 2020 09:08:14 +0000 (18:08 +0900)]
DALi Version 1.5.4

4 years agoDoxygen script update
adam.b [Wed, 18 Mar 2020 10:02:06 +0000 (10:02 +0000)]
Doxygen script update

Change-Id: I470f8aa95222cdcd663cbec19eb2b82933098829

4 years agoMerge "Doxygen script update" into devel/master
Adeel Kazmi [Fri, 20 Mar 2020 18:17:59 +0000 (18:17 +0000)]
Merge "Doxygen script update" into devel/master

4 years agoDoxygen script update 45/228045/4
adam.b [Wed, 18 Mar 2020 10:02:06 +0000 (10:02 +0000)]
Doxygen script update

Change-Id: I470f8aa95222cdcd663cbec19eb2b82933098829

4 years agoMerge "DALi Version 1.9.4" into devel/master
Adeel Kazmi [Fri, 20 Mar 2020 08:23:28 +0000 (08:23 +0000)]
Merge "DALi Version 1.9.4" into devel/master

4 years ago[dali_1.9.4] Merge branch 'devel/master' 22/228322/1
Victor Cebollada [Fri, 20 Mar 2020 07:51:50 +0000 (07:51 +0000)]
[dali_1.9.4] Merge branch 'devel/master'

Change-Id: Ib9055b85bd8580ceaf4b4798aac7598ba3b402c9