Seungho, Baek [Fri, 27 Mar 2020 04:38:44 +0000 (13:38 +0900)]
[Tizen] Fix issue, agif to play a number of times of loopcount.
Change-Id: Ifc213ed03f3b5f1c0340d24e406781fcc2ce356f
Signed-off-by: Seungho, Baek <sbsh.baek@samsung.com>
Joogab Yun [Wed, 26 Feb 2020 06:24:32 +0000 (15:24 +0900)]
When calculating the layout size, the problem occurs.
because it is calculated smaller when ReorderBiDiLayout() in RTL language.
For example, if layout.length is calculated as 487 in GetLineLayoutForBox()
but length is calculated as 482 in ReorderBiDiLayout()
(SetResizePolicy is USE_NATURAL_SIZE and Set MULTI_LINE)
sample)
TextLabel labe21 = TextLabel::New();
labe21.SetResizePolicy( ResizePolicy::USE_NATURAL_SIZE, Dimension::WIDTH );
labe21.SetResizePolicy( ResizePolicy::USE_NATURAL_SIZE, Dimension::HEIGHT );
labe21.SetProperty(Toolkit::DevelTextLabel::Property::BACKGROUND, backgroundMap);
labe21.SetParentOrigin(ParentOrigin::TOP_LEFT);
labe21.SetAnchorPoint(AnchorPoint::TOP_LEFT);
labe21.SetProperty(TextLabel::Property::POINT_SIZE, 34.f);
labe21.SetPosition( 145.f, 100.f);
labe21.SetProperty( TextLabel::Property::HORIZONTAL_ALIGNMENT, "END" );
labe21.SetProperty(Dali::Toolkit::TextLabel::Property::TEXT, "مرحبا بالعالم Hello world" );
Change-Id: I1c56ec9a7e54521e55e72fbf28ad8438ea9e718d
Joogab Yun [Mon, 24 Feb 2020 09:16:37 +0000 (18:16 +0900)]
Fixes a layout bug with the COMBINING GRAVE ACCENT ' ̀'
* The layout engine failed to calculate correctly the length
of the line if that character is used in the last position.
if HORIZONTAL_ALIGNMENT is END, this is a problem.
example)
Property::Map backgroundMap;
backgroundMap["color"] = Color::RED;
backgroundMap["enable"] = true;
TextLabel testLabel = TextLabel::New( "Àwọn àgbétẹ́lẹ̀");
testLabel.SetAnchorPoint( AnchorPoint::TOP_LEFT );
testLabel.SetProperty(TextLabel::Property::POINT_SIZE, 34.f);
testLabel.SetPosition(100.f, 100.f);
testLabel.SetSize( 544.f, 100.f);
testLabel.SetProperty(TextLabel::Property::HORIZONTAL_ALIGNMENT, "END");
testLabel.SetProperty(Toolkit::DevelTextLabel::Property::BACKGROUND, backgroundMap);
stage.Add( testLabel );
Change-Id: Ic66fd96cc010eada7187502b9b65e2b408eff2cd
Heeyong Song [Wed, 12 Feb 2020 06:56:20 +0000 (15:56 +0900)]
[Tizen] Add log for image file loading failure
Change-Id: If5bffc5563be5aefd9c6177fb2feaf1985aaece4
Heeyong Song [Fri, 31 Jan 2020 07:52:07 +0000 (16:52 +0900)]
[Tizen] Emit ResourceReady signal in SvgVisual in case of loading failure
Change-Id: I0f52fb5f298b5cfe1b5e13eb78c330b044d55149
Joogab Yun [Thu, 23 Jan 2020 10:03:23 +0000 (19:03 +0900)]
[Tizen] We also need to change the cursor position when the layout direction changes.
Change-Id: Ic375712defefcac598ac4d23e20f35acc46b94e5
Joogab Yun [Thu, 23 Jan 2020 07:59:52 +0000 (16:59 +0900)]
[Tizen] add ALIGN operation when changed layout direction
Change-Id: I9253b39490adaa6f7eae080b5b3829638baf23a6
Joogab Yun [Mon, 13 Jan 2020 08:17:54 +0000 (17:17 +0900)]
Add api for get the internal media player handle of the VideoView
Change-Id: I1671caaa688038c6ee15622c72317b4c90487b98
Heeyong Song [Mon, 20 Jan 2020 04:09:49 +0000 (13:09 +0900)]
[Tizen] Fix an issue not to unload alpha mask texture
ImageVisual needs the alpha mask texture id to unload the texture
Change-Id: I6fe7a1b362cfbba27cdc9eba7e9ec3b3bcee087d
Joogab Yun [Wed, 15 Jan 2020 06:11:27 +0000 (15:11 +0900)]
Ellipsis sometimes appears incorrect when mixed with RTL + LTR
sample)
textRTL = TextLabel::New("فصل 3 قسط 6 - Line of Duty");
textRTL.SetAnchorPoint( AnchorPoint::TOP_LEFT );
textRTL.SetSize( 320, 200.f);
textRTL.SetProperty( TextLabel::Property::POINT_SIZE, 20.f);
textRTL.SetPosition( 50.f, 300.f);
stage.Add( textRTL );
Change-Id: Ice8186431b6914286a99366a8c3347529dbb0c1c
Heeyong Song [Thu, 16 Jan 2020 07:54:36 +0000 (07:54 +0000)]
Merge "[Tizen] Remove the texture element from the load queue" into tizen_5.5
Heeyong Song [Thu, 16 Jan 2020 05:55:02 +0000 (14:55 +0900)]
[Tizen] Remove the texture element from the load queue
The observer can be deleted before the load queue is processed.
Remove the load element from the queue when the texture is removed.
Change-Id: Id2242a84088486827e99a78f0923bde3863deaf8
Sunghyun kim [Wed, 15 Jan 2020 09:27:23 +0000 (18:27 +0900)]
[Tizen]Change size for new visual using initialized transformMap when mVisual is not updated.
When the size was set for the new visual, there was an issue that the previous transformMap was set together.
so in order to prevent this, The new visual has been changed to use the initialized map.
Change-Id: I1ce1b735691e1b4963c3d4f3faf07d2c148ad478
sunghyun kim [Mon, 13 Jan 2020 06:58:06 +0000 (06:58 +0000)]
Merge "[Tizen]Unload AlphaMask when application set empty path" into tizen_5.5
Sunghyun kim [Mon, 13 Jan 2020 05:41:25 +0000 (14:41 +0900)]
[Tizen]Unload AlphaMask when application set empty path
If an application sets an empty path to the alpha mask, unload the alpha mask.
Change-Id: Ieeaaddd0e999e08778ff84c35e1c601dbdd8b038
Heeyong Song [Mon, 13 Jan 2020 05:05:50 +0000 (14:05 +0900)]
[Tizen](Vector) Fix memory leak
Sometimes the VectorAnimationTask was not destructed because it tried to rasterize repeatedly.
Change-Id: I308cba1d2affb6378a5419721ab225de3c312677
Joogab Yun [Sat, 11 Jan 2020 22:37:02 +0000 (07:37 +0900)]
[Tizen] TextFit : modified it work even if you change the size
// text fit test
Property::Map backgroundMap;
backgroundMap["color"] = Color::RED;
backgroundMap["enable"] = true;
Property::Map textFitMap;
textFitMap["enable"] = true;
textFitMap["minSize"] = 10.f;
textFitMap["maxSize"] = 60.f;
textFitMap["stepSize"] = 4.f;
textFitMap["fontSizeType"] = "pointSize";
width = 700;
height = 100;
textFit = TextLabel::New( "Long enough message for TextLabel!! This is a Text Fit sample text " );
textFit.SetSize( width, height );
textFit.SetParentOrigin(ParentOrigin::TOP_LEFT);
textFit.SetAnchorPoint(AnchorPoint::TOP_LEFT);
textFit.SetPosition( 100.f, 300.f);
textFit.SetProperty( Toolkit::DevelTextLabel::Property::TEXT_FIT, textFitMap );
textFit.SetProperty( Toolkit::DevelTextLabel::Property::BACKGROUND, backgroundMap );
stage.Add( textFit );
stage.KeyEventSignal().Connect( this, &HelloWorldController::OnKeyEvent );
}
void OnKeyEvent( const KeyEvent& event )
{
if( event.state == KeyEvent::Down )
{
width -= 40;
textFit.SetSize( width, height );
}
}
Change-Id: Ie7f3cd5cc5e0fa581f8e4912ccb5e88049499f31
Dongsug Song [Sat, 11 Jan 2020 05:55:20 +0000 (14:55 +0900)]
[Tizen] Fix svg image not shown problem in store(APPS)
Change-Id: I3c2ff76c4cad2dd9fdc7ee3768771677621e59bc
huiyu.eun [Fri, 10 Jan 2020 09:04:14 +0000 (18:04 +0900)]
[Tize] Change svg visual to load file using nanosvg
Change-Id: I90d469dade4237f55759f9cd8073bd9878fc805a
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
Seoyeon Kim [Thu, 2 Jan 2020 10:00:02 +0000 (19:00 +0900)]
[Tizen] Change the state of EventData to EDITING in RemoveText
- Currently, in certain cases, even if Backspace key is pressed
after cursor blink is stopped, cursor blink does not restart and
the cursor is also not shown.
- It means, after EventData is changed to INACTIVE state due to
KeyboardFocusLostEvent(), StopCursorBlink() is called.
After that, in RemoveText(), which is called in Backspace key,
EventData cannot be changed to EDITING state and StartCursorBlink() is not called.
On the other hand, when the character commits or the arrow keys are pressed,
EventData is changed to EDITING state and the cursor is displayed on screen.
- So, added 'ChangeState( EventData::EDITING )' when the state is INACTIVE.
Change-Id: Ib79dfdc6f7308d084772f62dc49918a694cfc438
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
Joogab Yun [Tue, 31 Dec 2019 05:20:09 +0000 (14:20 +0900)]
[Tizen] If matchSystemLanguageDirection is set, it must follow the direction of the stage.
Change-Id: I05d25ad67d43a2303d4902f120a026b14e1ac2e4
huiyu.eun [Thu, 2 Jan 2020 07:49:53 +0000 (16:49 +0900)]
[Tizen] Fix svg memory issue
- fix heap-buffer-overflow issue
- nsvgParse : Parses SVG file from a null terminated string.
Change-Id: I09edc74929709e3f451bd308ebff88fe1729bd87
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
Heeyong Song [Tue, 31 Dec 2019 08:17:40 +0000 (17:17 +0900)]
[Tizen](Vector) Add task even when StopAnimation is called
Change-Id: Ifc4e970a1ea64e33f8d81fe38871cd6ab7af3121
Heeyong Song [Mon, 30 Dec 2019 09:20:39 +0000 (18:20 +0900)]
[Tizen](Vector) Ignore rendered frames when the vector rendering is failed repeatedly
Change-Id: I20b94a698a882c2938c3555d7586f0af94e3d05f
huiyu.eun [Mon, 30 Dec 2019 04:23:27 +0000 (13:23 +0900)]
[Tizen] Download remote svg file
Change-Id: I115ba51843a448015b3c136de0570a3078a92ab6
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
huiyu.eun [Mon, 30 Dec 2019 03:39:00 +0000 (12:39 +0900)]
Revert "[Tizen] Download remote svg file"
This reverts commit
658c7cbfb9373e2ec8eb028b9c90d619b466326b.
Change-Id: I455420101ede8c2b85748ddcb31fedeb97c106f3
Seoyeon Kim [Fri, 27 Dec 2019 09:14:49 +0000 (09:14 +0000)]
Merge "[Tizen] Add TextField BACKGROUND property and more Preedit style options" into tizen_5.5
Joogab Yun [Fri, 27 Dec 2019 08:50:26 +0000 (17:50 +0900)]
[Tizen](Vector) Increase KeepRendering duration
This reverts commit
d024b147d20a6706eab49e746213f7c7066c5600.
Change-Id: Ib1f5113a81ed2be78f53c6f02c9f0b624004a608
Joogab Yun [Fri, 27 Dec 2019 08:49:02 +0000 (17:49 +0900)]
[Tizen](Vector) Ensure that all animation data is applied at once
This reverts commit
e739aba4e8399de7126916116b8dbbcf0595928b.
Change-Id: I5a69c9dece6ff85a3c514ef89a516a45de04a966
Joogab Yun [Fri, 27 Dec 2019 08:45:59 +0000 (17:45 +0900)]
[Tizen] Download remote svg file
This reverts commit
f34a009ccaa4160c7cbb6d770bc09b47f6fbceb9.
Change-Id: I0b70f950de1fc406738b15e2da36e5bc49f2bd23
Joogab Yun [Fri, 27 Dec 2019 08:45:42 +0000 (17:45 +0900)]
[Tizen](Vector) Stop the animation when the actor is off-stage or invisible
This reverts commit
c3253649f11657a53f9aafdc781c6456b56bcd67.
Change-Id: I95e643091bcb53b778f151058210c08c68faffbd
Joogab Yun [Fri, 27 Dec 2019 08:45:28 +0000 (17:45 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
910b01e7d683e80320b452832fd9f91a5de77e67.
Change-Id: I8ec81c21ec5c41f3d957c7c66c7b4e6c4445577e
Joogab Yun [Fri, 27 Dec 2019 08:44:07 +0000 (17:44 +0900)]
[Tizen] Add AlphaMask to synchronousLoading
This reverts commit
88d12807a2c8ca2d6936df37c39833579ce4bd82.
Change-Id: Ieda9e804e7418968453ee056175ee51d90ed2c9b
Joogab Yun [Fri, 27 Dec 2019 08:43:53 +0000 (17:43 +0900)]
[Tizen] Restore behavior of Uploaded and LoadingFinished signal
This reverts commit
9d2923b8d6cc7546491011c883a4e1f352cd3af6.
Change-Id: I61efb620f6d2750cac2e4ea0d1427068836a683c
Joogab Yun [Fri, 27 Dec 2019 08:43:43 +0000 (17:43 +0900)]
Merge branch 'devel/master' into tizen_5.5
Joogab Yun [Fri, 27 Dec 2019 08:41:45 +0000 (17:41 +0900)]
Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
This reverts commit
dfc7ee9793bf4b7b10089d1bfbf8395d38e1bdf5.
Joogab Yun [Fri, 27 Dec 2019 08:41:39 +0000 (17:41 +0900)]
Revert "[Tizen] Add AlphaMask to synchronousLoading"
This reverts commit
0f64d3e70ed8ab250e9eebdf3d1dded5eea5493d.
Joogab Yun [Fri, 27 Dec 2019 08:41:34 +0000 (17:41 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
ed4908b9a48f86fe43f4c05d636f2476f1925fe4.
Joogab Yun [Fri, 27 Dec 2019 08:41:27 +0000 (17:41 +0900)]
Revert "[Tizen](Vector) Stop the animation when the actor is off-stage or invisible"
This reverts commit
58398f4786cfda817f17b371efdda4154f12de6b.
Joogab Yun [Fri, 27 Dec 2019 08:41:23 +0000 (17:41 +0900)]
Revert "[Tizen] Download remote svg file"
This reverts commit
658c7cbfb9373e2ec8eb028b9c90d619b466326b.
Joogab Yun [Fri, 27 Dec 2019 08:41:04 +0000 (17:41 +0900)]
Revert "[Tizen](Vector) Ensure that all animation data is applied at once"
This reverts commit
175d74ab98dd2f89726ce6594a08d65e0d01056f.
Joogab Yun [Fri, 27 Dec 2019 08:40:59 +0000 (17:40 +0900)]
Revert "[Tizen](Vector) Increase KeepRendering duration"
This reverts commit
dd25665ec90039c770693d117a916a2e94ae0380.
Joogab Yun [Fri, 27 Dec 2019 08:40:54 +0000 (17:40 +0900)]
Revert "[Tizen] Merge shadow code from devel/master"
This reverts commit
9a1e1beefe823f8b7810aa1857d21e35cfc5fb40.
Joogab Yun [Fri, 27 Dec 2019 08:40:46 +0000 (17:40 +0900)]
Revert "[Tizen](Vector) Check if the renderer is valid"
This reverts commit
a36ebbd3f2118dfcac7c931ac4efc8314dee393e.
Seoyeon Kim [Wed, 27 Nov 2019 05:47:25 +0000 (14:47 +0900)]
[Tizen] Add TextField BACKGROUND property and more Preedit style options
Change-Id: Ia4ce089bbee50bac45542268ef9ddaada8c9a657
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
Joogab Yun [Fri, 27 Dec 2019 06:10:55 +0000 (15:10 +0900)]
sscanf() returns incorrect results depending on the locale.
So, to use nsvg__atof () to get the correct value.
*this patch is taken from the latest nanosvg source.
Change-Id: I157e26edc1e4a3aedec5fb86043a9beba7e71489
Heeyong Song [Fri, 27 Dec 2019 01:40:40 +0000 (10:40 +0900)]
[Tizen](Vector) Check if the renderer is valid
Change-Id: I85ed2170189a509310639cb2479508d3d33ccffd
Jiyun Yang [Wed, 18 Dec 2019 05:52:32 +0000 (14:52 +0900)]
[Tizen] Merge shadow code from devel/master
Add property SHADOW to Control
(
4d3140d11ea9df2cf933d32419f49fc5e63fa4a9)
Move shadow APIs to Internal::Control::Impl from Internal::Control
(
1061baa5912952ac998c34584b1e2e5e030e0e5f)
* The SHADOW will take a set of properties as a map type
* Same as BACKGROUND, it can be any type of visuals
Change-Id: I87588c2443d6935980f82f508ad4b1cb05fa216e
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Heeyong Song [Thu, 26 Dec 2019 08:11:10 +0000 (17:11 +0900)]
[Tizen](Vector) Increase KeepRendering duration
Change-Id: I7b83bb3bb2b0d1fb6277bd1cadcdc27b1f331a50
Heeyong Song [Thu, 19 Dec 2019 10:10:41 +0000 (19:10 +0900)]
[Tizen](Vector) Ensure that all animation data is applied at once
Change-Id: I163a8b54148b95b18a40b00b8ec9b8931d45c30f
Heeyong Song [Thu, 26 Dec 2019 08:04:24 +0000 (17:04 +0900)]
Revert "[Tizen](Vector) Increase KeepRendering duration"
This reverts commit
183badafec5e5758a48ce11657891646e141cc1b.
Change-Id: I23f423f979688635e3a17799d15e53528bd6e9e6
Heeyong Song [Thu, 26 Dec 2019 07:44:38 +0000 (16:44 +0900)]
Revert "[Tizen](Vector) Fix crash issues"
This reverts commit
e396a42c0185be1331eddb5569b84968fb1510f3.
Change-Id: I3766e5d851fa972783f429e98eae462c84109b56
huiyu.eun [Mon, 23 Dec 2019 11:14:56 +0000 (20:14 +0900)]
[Tizen] Download remote svg file
Change-Id: I39c0ea28d35dd0bb37b9181ae7d302aa3d318845
Heeyong Song [Tue, 24 Dec 2019 07:32:54 +0000 (16:32 +0900)]
[Tizen](Vector) Stop the animation when the actor is off-stage or invisible
Change-Id: I3919557bc961ed39300fc1885885cb52242680a4
Jiyun Yang [Tue, 24 Dec 2019 05:43:36 +0000 (14:43 +0900)]
Move shadow APIs to Internal::Control::Impl from Internal::Control
Change-Id: I86bef469e54996bb83fddfa3b36d07970549d227
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Heeyong Song [Wed, 18 Dec 2019 10:55:57 +0000 (19:55 +0900)]
(Vector) Ensure the current frame is not out of the play range
Change-Id: I7077b0de7133f4282b66d2c4de2a1ce6b8555256
Adeel Kazmi [Fri, 20 Dec 2019 10:46:07 +0000 (10:46 +0000)]
Merge "DALi Version 1.4.51" into devel/master
Cheng-Shiun Tsai [Fri, 20 Dec 2019 10:33:00 +0000 (10:33 +0000)]
DALi Version 1.4.51
Change-Id: I70d64760f7298bfdcb132ba9a27ee452a93b96c8
HyunJu Shin [Fri, 20 Dec 2019 09:57:27 +0000 (09:57 +0000)]
Merge "Add property SHADOW to Control" into devel/master
Heeyong Song [Wed, 18 Dec 2019 10:55:57 +0000 (19:55 +0900)]
[Tizen](Vector) Ensure the current frame is not out of the play range
Change-Id: I5dd857e3c1a63eb54b27bbcae18a793f09605668
Heeyong Song [Fri, 29 Nov 2019 08:11:30 +0000 (17:11 +0900)]
[Tizen](Vector) Fix crash issues
Change-Id: I881285162317da9b095b0e29dabba1936b8f4b31
Heeyong Song [Fri, 25 Oct 2019 07:24:24 +0000 (16:24 +0900)]
[Tizen](Vector) Increase KeepRendering duration
Change-Id: I8eb99b166c1305b34628ba8e9ccfd413fae45905
Wonsik Jung [Thu, 19 Dec 2019 03:34:43 +0000 (12:34 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
Wonsik Jung [Thu, 19 Dec 2019 03:34:12 +0000 (12:34 +0900)]
[Tizen] Add AlphaMask to synchronousLoading
Wonsik Jung [Thu, 19 Dec 2019 03:33:39 +0000 (12:33 +0900)]
[Tizen] Restore behavior of Uploaded and LoadingFinished signal
Wonsik Jung [Thu, 19 Dec 2019 03:33:27 +0000 (12:33 +0900)]
Merge branch 'devel/master' into tizen_5.5
Wonsik Jung [Thu, 19 Dec 2019 02:28:22 +0000 (11:28 +0900)]
Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
This reverts commit
203350455d3109855004e4eb239f2e2981bd7f8e.
Wonsik Jung [Thu, 19 Dec 2019 02:28:19 +0000 (11:28 +0900)]
Revert "[Tizen] Add AlphaMask to synchronousLoading"
This reverts commit
2d575e2d7a23ef6734066873da054d4d0db3d055.
Wonsik Jung [Thu, 19 Dec 2019 02:28:16 +0000 (11:28 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
0905b74ff52fde63e30ee285f09a572082d2c3f3.
Wonsik Jung [Thu, 19 Dec 2019 02:28:11 +0000 (11:28 +0900)]
Revert "[Tizen] (Vector) Increase KeepRendering duration"
This reverts commit
d1df5e4b286d364d1994ed3b85759c6183486935.
Wonsik Jung [Thu, 19 Dec 2019 02:28:08 +0000 (11:28 +0900)]
Revert "[Tizen] (Vector) Fix a crash issue"
This reverts commit
3a2c922dde6bf6eac3c20e71e8950a22d83ff69b.
Wonsik Jung [Thu, 19 Dec 2019 02:28:05 +0000 (11:28 +0900)]
Revert "[Tizen] Fix npatch loader issue"
This reverts commit
4579416645b6134b0ad6b02efa52918ed58065aa.
Wonsik Jung [Thu, 19 Dec 2019 02:28:01 +0000 (11:28 +0900)]
Revert "[Tizen](Vector) Fix crash issues"
This reverts commit
9e3b1802aa5e78915f866f65f3205a81a7171022.
Wonsik Jung [Thu, 19 Dec 2019 02:27:58 +0000 (11:27 +0900)]
Revert "[Tizen](Vector) Ensure the current frame is not out of the play range"
This reverts commit
ad314f8d50d653a269158e01ecf3f89b002d8876.
Heeyong Song [Wed, 18 Dec 2019 10:55:57 +0000 (19:55 +0900)]
[Tizen](Vector) Ensure the current frame is not out of the play range
Change-Id: I7077b0de7133f4282b66d2c4de2a1ce6b8555256
Seoyeon Kim [Wed, 18 Dec 2019 10:29:24 +0000 (19:29 +0900)]
Update tizen document URL
- According to the address change of tizen documents,
the site URL in dali-toolkit-doc.h has been updated.
Change-Id: Ief8d5b9425bf995e9171c66c37893d800aeab4e1
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
Jiyun Yang [Wed, 18 Dec 2019 05:52:32 +0000 (14:52 +0900)]
Add property SHADOW to Control
* The SHADOW will take a set of properties as a map type
* Same as BACKGROUND, it can be any type of visuals
Change-Id: I0b203929021f2c2cda01af4131a9f3f0baaa86ac
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Heeyong Song [Fri, 13 Dec 2019 05:16:06 +0000 (14:16 +0900)]
(Vector) Support marker
Change-Id: I0962a3c144d34374352c9759933448df07d00b8e
Agnelo Vaz [Fri, 13 Dec 2019 10:57:23 +0000 (10:57 +0000)]
DALi Version 1.4.50
Change-Id: I51d279df003917709cd9c117e742d077eeb4f63a
Heeyong Song [Wed, 11 Dec 2019 06:10:43 +0000 (15:10 +0900)]
[Tizen](Vector) Fix crash issues
Change-Id: I916475cdce4f0c3b30b905a4458969733a5bf8f0
Heeyong Song [Fri, 29 Nov 2019 08:12:02 +0000 (17:12 +0900)]
Fix npatch loader issue
The pixel pointer should be updated after ParseRange method.
Use reference of a pointer
Change-Id: I35b711c73faa5b7a36f5f3dc70825e6fbf4c955a
Paul Wisbey [Thu, 5 Dec 2019 16:11:32 +0000 (16:11 +0000)]
Merge "Change svg visual to load file using adaptor platform API." into devel/master
Anton Obzhirov [Thu, 5 Dec 2019 11:53:31 +0000 (11:53 +0000)]
DALi Version 1.4.49
Change-Id: I5ae98626feeaa4b7fa477bd5e3767ab4cd481502
Anton Obzhirov [Wed, 4 Dec 2019 15:22:51 +0000 (15:22 +0000)]
Change svg visual to load file using adaptor platform API.
Change-Id: I840d4064c38fe9b4622342b8f53718cbc60b4c09
Heeyong Song [Fri, 29 Nov 2019 08:12:02 +0000 (17:12 +0900)]
[Tizen] Fix npatch loader issue
The pixel pointer should be updated after ParseRange method.
Use reference of a pointer
Change-Id: I35b711c73faa5b7a36f5f3dc70825e6fbf4c955a
Heeyong Song [Fri, 29 Nov 2019 08:11:30 +0000 (17:11 +0900)]
[Tizen] (Vector) Fix a crash issue
Change-Id: I98043d28667e39ec54e2fd06020811fdc3d62edf
Wonsik Jung [Mon, 2 Dec 2019 06:59:05 +0000 (15:59 +0900)]
[Tizen] (Vector) Increase KeepRendering duration
This reverts commit
60aa6a614a68d0e43e9642e14986b4b6cfc24472.
Wonsik Jung [Mon, 2 Dec 2019 06:58:27 +0000 (15:58 +0900)]
[Tizen] Add AutofillContainer class and autofill implementation
This reverts commit
e43c55c3df87476ec56d48c11dee55f120ba36a4.
Wonsik Jung [Mon, 2 Dec 2019 06:57:13 +0000 (15:57 +0900)]
[Tizen] Add AlphaMask to synchronousLoading
This reverts commit
39b3a00e718d2d50f4391d3b6dbc781966ce1a8a.
Wonsik Jung [Mon, 2 Dec 2019 06:56:43 +0000 (15:56 +0900)]
[Tizen] Restore behavior of Uploaded and LoadingFinished signal
This reverts commit
1a782c5ebe0303d5002437001fedd564fd29bb1e.
Wonsik Jung [Mon, 2 Dec 2019 06:56:27 +0000 (15:56 +0900)]
Merge branch 'devel/master' into tizen_5.5
Wonsik Jung [Mon, 2 Dec 2019 06:56:18 +0000 (15:56 +0900)]
Revert "[Tizen] Restore behavior of Uploaded and LoadingFinished signal"
This reverts commit
4705369175903c3f15c816811d514bfe5e5a9242.
Wonsik Jung [Mon, 2 Dec 2019 06:56:15 +0000 (15:56 +0900)]
Revert "[Tizen] Hebrew language text is cutted in TextLabel"
This reverts commit
3f61ab0cee4f4bc4a9e1074917a396bc6464553d.
Wonsik Jung [Mon, 2 Dec 2019 06:56:13 +0000 (15:56 +0900)]
Revert "[Tizen] Add AlphaMask to synchronousLoading"
This reverts commit
9f91b28b3807b652f1e7066ec126d74c0185d4ed.
Wonsik Jung [Mon, 2 Dec 2019 06:56:09 +0000 (15:56 +0900)]
Revert "[Tizen] Reset Preedit variables in 'Delete All' state"
This reverts commit
1e57c00250506a95a07a12437cdef2736c905418.
Wonsik Jung [Mon, 2 Dec 2019 06:56:06 +0000 (15:56 +0900)]
Revert "[Tizen] Add AutofillContainer class and autofill implementation"
This reverts commit
32013fbde12658cf9794d985cf7c40f14afcbd97.
Wonsik Jung [Mon, 2 Dec 2019 06:56:04 +0000 (15:56 +0900)]
Revert "[Tizen] (Vector) Increase KeepRendering duration"
This reverts commit
05aca460cad93be9af0c171087e72a3a05a6f639.
Wonsik Jung [Mon, 2 Dec 2019 06:56:00 +0000 (15:56 +0900)]
Revert "[Tizen] (Vector) Call Finalize method instead of deleting VectorRenderer"
This reverts commit
f73487b61bdeb7eeec1c6908d2b3df78e87ee449.
joogab yun [Mon, 2 Dec 2019 01:20:09 +0000 (01:20 +0000)]
Merge "GetLineCount() after GetTextDirection() returns wrong value." into devel/master
Adeel Kazmi [Fri, 29 Nov 2019 17:02:22 +0000 (17:02 +0000)]
Merge "Multiple text background color support for left-to-right text only in TextField" into devel/master