neostom432 [Wed, 5 Feb 2020 01:55:08 +0000 (10:55 +0900)]
[NUI] Measure whole child in GridLayout (#1364)
Currently, GridLayout measures only first child for calculation so other child cannot layout its children.
Now, GridLayout measures whole child so they can layout its children.
Co-authored-by: agnelovaz <vaz.agnelo@gmail.com>
jh8801jung [Mon, 3 Feb 2020 01:09:24 +0000 (10:09 +0900)]
[NFC] Fix TC failed issue : the SEH exception occurs (#1328)
* [NFC] Fix TC failed issue : the SEH exception occurs
Signed-off-by: Jihoon Jung <jh8801.jung@samsung.com>
* Free IntPtr from capi
Signed-off-by: Jihoon Jung <jh8801.jung@samsung.com>
* Replace free method
Signed-off-by: Jihoon Jung <jh8801.jung@samsung.com>
dongsug-song [Fri, 31 Jan 2020 05:29:14 +0000 (14:29 +0900)]
[NUI] Fix Tizen.NUI.Samples crash error when it is terminated (#1355)
neostom432 [Thu, 30 Jan 2020 05:16:42 +0000 (14:16 +0900)]
[NUI] Add ScrollToIndex to ScrollableBase (#1351)
* [NUI] Add ScrollToIndex to ScrollableBase
Scrolls to the item at the specified index.
* [NUI] Use position instead of Size for calculating scrolling position
Co-authored-by: krown <neostom432@nate.com>
dongsug-song [Thu, 30 Jan 2020 03:19:39 +0000 (12:19 +0900)]
[NUI] Fix AlphaMaskUrl setting order problem (#1348)
neostom432 [Wed, 29 Jan 2020 11:38:04 +0000 (20:38 +0900)]
[NUI] Add GaussianBlurView (#1346)
* [NUI] Add GaussianBlurView
Add GaussianBlurView.
For now user can use this class internally, because APIs are all hidden.
* [NUI] make private function to internal in GaussianBlurView
Co-authored-by: krown <neostom432@nate.com>
huiyueun [Wed, 29 Jan 2020 03:56:25 +0000 (12:56 +0900)]
[NUI] Fix NUI svace issue (#1342)
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
dongsug-song [Wed, 22 Jan 2020 23:45:43 +0000 (08:45 +0900)]
[NUI] Add dispose checking in just a few methods of Timer class (#1339)
Jiyun Yang [Tue, 21 Jan 2020 03:49:36 +0000 (12:49 +0900)]
[NUI] Support Shadow Size Extents (#1335)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
neostom432 [Tue, 21 Jan 2020 03:10:34 +0000 (12:10 +0900)]
[NUI] Fix reparenting of Child bug (#1314) (#1333)
If a child is added to a different layout the transition finished
animation can cause it to be removed from the new parent.
Cause : The removal animation is added to the stack, the add animation is added to
the stack. Animations are run. When animations finish the itemRemovalQueue is run, this
removes the child as the removal code added it to the itemRemovalQueue.
Fix : In the case of replacement, set a flag on the child so the removal code can excluded it
from the itemRemovalQueue.
Change-Id: Ib7da9e446c990258c8415e584bbb624dae4d6fa5
Co-authored-by: agnelovaz <agnelo.vaz@samsung.com>
neostom432 [Tue, 21 Jan 2020 02:20:01 +0000 (11:20 +0900)]
[NUI] Add/change scroll event (#1330)
* [NUI] Add/change scroll event
ScrollStartDragEvent - Emitted when panning is start
ScrollEndDragEvent - Emitted when panning is end
ScrollAnimationStartEvent - Emitted when scroll animation is start
ScrollAnimationEndEvent - Emitted when scroll animation is end
* [NUI] change name of scroll event and its comment
Co-authored-by: krown <neostom432@nate.com>
Xianbing Teng [Mon, 20 Jan 2020 11:11:20 +0000 (19:11 +0800)]
[NUI.Components] Fix svace issues (#1311)
neostom432 [Mon, 20 Jan 2020 07:15:58 +0000 (16:15 +0900)]
[NUI] Fixed GridLayout scrolling issue (#1323)
When using GridLayout view with ScrollableBase, it cannot be scrolled.
It cauesd by wrong height measurement and it only happend when setting
WrapContent to layout view.
Save measurement result when using WrapContent.
Co-authored-by: krown <neostom432@nate.com>
huiyueun [Mon, 20 Jan 2020 02:18:51 +0000 (11:18 +0900)]
[NUI] Fix FittingMode bug (#1319)
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
Jiyun Yang [Fri, 17 Jan 2020 06:03:27 +0000 (15:03 +0900)]
[NUI] Control handle state `Pressed` (#1315)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
neostom432 [Wed, 15 Jan 2020 06:18:07 +0000 (15:18 +0900)]
[NUI] Remove default LayoutTransition (#1305)
Remove default LayoutTransition.
Co-authored-by: krown <neostom432@nate.com>
Jiyun Yang [Wed, 15 Jan 2020 06:08:39 +0000 (15:08 +0900)]
[NUI] Clean shadow related properties from Control and sample (#1308)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Xianbing Teng [Wed, 15 Jan 2020 05:58:58 +0000 (13:58 +0800)]
[NUI.Components] Remove InputField (#1285)
neostom432 [Mon, 13 Jan 2020 08:19:42 +0000 (17:19 +0900)]
[NUI] Add ScrollEnabled property to ScrollableBase (#1301)
* [NUI] Add ScrollEnabled property to ScrollableBase
User can disable / enable scrolling using this property.
* [NUI] Add CurrentPage property to ScrollableBase
Can get current page of ScrollableBase when using SnapToPage mode.
Co-authored-by: krown <neostom432@nate.com>
MuHong Byun [Mon, 13 Jan 2020 05:11:59 +0000 (14:11 +0900)]
[Sensor] Add auto rotation sensor (#1193)
Signed-off-by: MuHong Byun <mh.byun@samsung.com>
neostom432 [Fri, 10 Jan 2020 05:03:35 +0000 (14:03 +0900)]
[NUI] Initialize pan direction of ScrollableBase to Vertical (#1292)
Initialize pan direction to Vertical in constructor of ScrollableBase.
Co-authored-by: krown <neostom432@nate.com>
dongsug-song [Fri, 10 Jan 2020 04:25:31 +0000 (13:25 +0900)]
[NUI] Fix SetMinMaxFrameByMarker()'s not working issue in AnimatedVectorImageView (#1295)
Xianbing Teng [Thu, 9 Jan 2020 09:44:12 +0000 (17:44 +0800)]
[NUI] Fix extents issue and unified style format (#1287)
* [NUI] Fix extents issue and unified style format
* [NUI] Add null value check
* [NUI] Fix null value check issue
zhouleonlei [Thu, 9 Jan 2020 06:47:08 +0000 (14:47 +0800)]
[NUI] Implement switch's Old background API (#1290)
zhouleonlei [Wed, 8 Jan 2020 12:10:46 +0000 (20:10 +0800)]
[NUI] Fix background blank issue of Switch (#1282)
Jiyun Yang [Mon, 6 Jan 2020 09:23:26 +0000 (18:23 +0900)]
[NUI] Add Shadow properties to ViewStyle (#1277)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
zhouleonlei [Mon, 6 Jan 2020 04:22:55 +0000 (12:22 +0800)]
[NUI] Fixed the type conversion issue which cause TCT failed (#1275)
Jiyun Yang [Fri, 3 Jan 2020 08:52:16 +0000 (17:52 +0900)]
[NUI] Update Shadow property : add Clone method (#1271)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Jiyun Yang [Fri, 3 Jan 2020 08:05:19 +0000 (17:05 +0900)]
[NUI] Enable BackgroundImageBorder in View (#1268)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Jiyun Yang [Fri, 3 Jan 2020 04:59:53 +0000 (13:59 +0900)]
[NUI] Fix the issue that the property binding in View are not working properly. (#1259) (#1266)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
zhouleonlei [Fri, 3 Jan 2020 04:50:09 +0000 (12:50 +0800)]
[NUI] Implement the old API of Popup.SetButtonText for Manual.Tests failed (#1261)
Wonsik Jung [Fri, 27 Dec 2019 09:59:49 +0000 (18:59 +0900)]
[NUI] Add to get current window orientation. (#1251)
Add the API to get current window orientation.
It is to return the logical orientation
Xianbing Teng [Fri, 27 Dec 2019 08:10:32 +0000 (16:10 +0800)]
[NUI.Components] Fix Background Image not works issue (#1246) (#1248)
dongsug-song [Thu, 26 Dec 2019 07:34:11 +0000 (16:34 +0900)]
[NUI] Add SetMinMaxFrameByMarker() in LottieAnimationView (#1244)
Xianbing Teng [Thu, 26 Dec 2019 07:08:47 +0000 (15:08 +0800)]
[NUI.Components] Fix BackgroundImage doesn't works issue (#1240) (#1243)
Xianbing Teng [Tue, 24 Dec 2019 08:32:57 +0000 (16:32 +0800)]
[NUI.Components] Fix build warnings (#1233) (#1238)
Jiyun Yang [Tue, 24 Dec 2019 08:12:25 +0000 (17:12 +0900)]
[NUI] Implement shadow in View (#1236)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
neostom432 [Mon, 23 Dec 2019 10:16:32 +0000 (19:16 +0900)]
[NUI] Fix Dropdown runtime error (#1231)
Reviewed and Verified with Sample
dongsug-song [Mon, 23 Dec 2019 07:07:55 +0000 (16:07 +0900)]
[NUI] Add AnimatedImageView for AGIF and Image-Array as HiddenAPI (#1227) (#1228)
dongsug-song [Fri, 20 Dec 2019 11:24:52 +0000 (20:24 +0900)]
[NUI] NUI samples (#1225)
* [NUI] Initial upload the samples of NUI and NUI.Components (#1207)
* [NUI] Merge NUI.Samples to TizenFX (#1222)
* [NUI] Revise NUI samples (#1224)
Co-authored-by: zhouleonlei <56956725+zhouleonlei@users.noreply.github.com>
agnelovaz [Thu, 19 Dec 2019 12:40:50 +0000 (12:40 +0000)]
[NUI] Layout scroller pages api7 (#1186)
* [NUI.Components] LayoutScroller flick added
Flick support
Configurable Flick animation
Ensuring uniform duration of flick animation by removing flick multipler
Change-Id: Ib654a38cb2070c29520069a75b5782d458ab4da6
* [NUI.Components] Horizontal Scroll supported
* [NUI.Components] LayoutScroller with horizontal Pages support
Other features added:
FlickDurationModifier renamed to FlickAnimationSpeed
Defaults changed so faster.
Uses View API for Add/Remove child instead of the new dedicated API.
ScrollStart and ScrollEnd signals added
Vertical and Horizontal axis enums to set Horizontal or Vertical scrolling
Fixes:
Tap gesture doesn't stop pages scrolling mid way.
Flick in Pages should not stack pages changes. Must wait until scroll ended to flick again.
Change-Id: I8dcabff1e956b747987865ceb4272ccb2ce55061
* [NUI.Components] LayoutScroller renamed to Scrollable
Change-Id: I42805c3b240997d1921db4b3c1008b120d264cbb
* [NUI.Components] Scrollable derives from NUI.Components.Control
Change-Id: Iec6f083fe4601ceff40f74bbe1ae8de4d8da6917
* [NUI.Components] Scrollable Pages MatchParent fix
Fixed bug in which the Scrollable would be the size of it's content
even when set to MatchParent
Change-Id: I2be91b1a6f975b4e8aa2a132dc63009a21ef4b62
* [NUI] Rename component
Rename component Scrollable -> Scroll
* [NUI.Components] rename Scroll to ScrollableBase
* [NUI.Components] change PanGesture direction when scrolling direction is changed
When scrolling direction is changed, pan gesture direction should be changed.
This change makes ScrollableBase support nested list cases.
Wonsik Jung [Thu, 19 Dec 2019 09:24:31 +0000 (18:24 +0900)]
[NUI] Add NoOrientationPreference (#1220)
Add NoOrientationPreference to WindowOrientation enum.
It is used to unset the preferred orientation with SetPreferredOrientation.
Xianbing Teng [Thu, 19 Dec 2019 09:15:30 +0000 (17:15 +0800)]
[NUI] Fix textfield color issue (#1213)
neostom432 [Thu, 19 Dec 2019 06:54:46 +0000 (15:54 +0900)]
[NUI] Support adding multiple callback to gesture (#1215)
zhouleonlei [Wed, 18 Dec 2019 10:14:13 +0000 (18:14 +0800)]
[NUI] Merge master#1206 to API7 (#1209)
zhouleonlei [Wed, 18 Dec 2019 06:57:04 +0000 (14:57 +0800)]
[NUI] Merge master#1199 to API7 (#1205)
Xianbing Teng [Wed, 18 Dec 2019 06:33:54 +0000 (14:33 +0800)]
Fix components issue 1216 (#1194) (#1203)
* [NUI] Fix text field fontfamily selector and color convert issue
* [NUI.Components] Fix tab item issue
* [NUI] Rename attribute file name to style
* [NUI.Components] Make OnUpdate of Button as hidden
Xianbing Teng [Wed, 18 Dec 2019 01:24:38 +0000 (09:24 +0800)]
Refine background property of control (#1183) (#1196)
* Refine background property of control
* [NUI] Refine SelectButton control of NUI.Components
* [NUI] Remove thumb background from slider
pvschakradhar [Mon, 16 Dec 2019 06:49:04 +0000 (12:19 +0530)]
[Sensor] Addition of initial sensor values (#1153)
* addition of initial sensor values
* method name changed
* addition of ReadData() method in sensor class
* comment updated
* adding abstract method
* change in access modifier
* access modifier changed
dongsug-song [Fri, 13 Dec 2019 03:55:57 +0000 (12:55 +0900)]
[NUI] Fix ICustomFocusAlgorithm exception (#1187)
dongsug-song [Thu, 12 Dec 2019 11:01:08 +0000 (20:01 +0900)]
[NUI] Add checking if the Timer is used in main thread (#1179)
Seungkeun Lee [Thu, 12 Dec 2019 00:37:53 +0000 (09:37 +0900)]
[ElmSharp] Add internal Evas Image APIs (#1146)
zhouleonlei [Wed, 11 Dec 2019 00:23:30 +0000 (08:23 +0800)]
[NUI] Fixed TCT failed issues (#1176)
Jiyun Yang [Tue, 10 Dec 2019 11:15:40 +0000 (20:15 +0900)]
[NUI] Fix wrong API comments in xml (#1175)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Wonyoung Choi [Mon, 9 Dec 2019 07:59:34 +0000 (16:59 +0900)]
[Build] Fix build target name for API7
Xianbing Teng [Mon, 9 Dec 2019 01:43:48 +0000 (09:43 +0800)]
[NUI.Components]Fix svace issue (#1169)
Xianbing Teng [Fri, 6 Dec 2019 03:32:50 +0000 (11:32 +0800)]
[NUI.Components] Refine DropDown control (#1166)
AdunFang [Wed, 4 Dec 2019 11:21:50 +0000 (19:21 +0800)]
[NUI] To fix OSV check (#1164)
agnelovaz [Tue, 3 Dec 2019 10:47:07 +0000 (19:47 +0900)]
DropDownButton to use Layout scrolling (#1160)
Squashed:
Now uses NUI Layouting for the drop downbox
DropDown API fixes Delete/Select
LayoutScroller immediate positioning
Applied LayoutScoller updates
LayoutScroller now a CustomLayout with OnMeasure and OnLayout implemented
Velocity of flick not throttled hence can be fast.
Updates after Style refactor
Features:
Persistant selection Icon/Checkbox
Highlight for touched selection
Scrolling list
Styled using ControlStyle system.
Change-Id: I656bc978331df5f38e1885635ba50b6b5e178976
huiyueun [Tue, 3 Dec 2019 00:54:11 +0000 (09:54 +0900)]
[NUI] Binding VideoView::New with swCodec parameter (#1155)
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
AdunFang [Fri, 29 Nov 2019 08:06:52 +0000 (16:06 +0800)]
[NUI]Refactor Components (#1152)
huiyueun [Fri, 29 Nov 2019 05:25:42 +0000 (14:25 +0900)]
[NUI] Add Component Application (#1148)
* Add component
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* Change Bug
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* [NUI]Modify Last
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* Add to mange frame component
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* Change Sln file
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* Change mod
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* Change sln
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* [NUI] fix comment
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
dongsug-song [Wed, 27 Nov 2019 12:06:46 +0000 (21:06 +0900)]
[NUI] Workaround: fix CustomAlgorithmInterface crash error occurred only in emulator, will be removed later after a proper solution is found (#1144)
- fix CSharp_Dali_GetOriginalImageSize spelling error- fix CSharp_Dali_GetOriginalImageSize spelling error
- add "GetOriginalImageSizeTest.cs" as sample APP.
dongsug-song [Tue, 26 Nov 2019 11:18:39 +0000 (20:18 +0900)]
[NUI] Publish LottieAnimationView : TCSACR-293 (#1129)
agnelovaz [Mon, 25 Nov 2019 01:11:54 +0000 (01:11 +0000)]
[NUI] Prevent Height and Width specs being overwritten (#1142)
When setting the WidthSpecification or HeightSpecification with an exact value
the Size.Width or Size.Height is set but this in turns triggers a callback which
sets Size(width,height) but uses the stored height or width value which may not be
the set Width or Height Specification hence sets them to 0;
Change-Id: I80a4e1166f35e4c09c116916262ac965de54b048
agnelovaz [Mon, 25 Nov 2019 01:04:01 +0000 (01:04 +0000)]
[NUI] Padding bug in LayoutGroup fixed (#1136)
LayoutGroup measuring child without using the parent's padding.
Resulted in LinearLayout not reducing the childs size when padding applied to parent
hsgwon [Fri, 22 Nov 2019 06:42:12 +0000 (15:42 +0900)]
[Camera] Fux null reference bug (#1141)
agnelovaz [Thu, 21 Nov 2019 10:22:16 +0000 (10:22 +0000)]
[NUI] FlexLayout Interop and Undefined fixes (#1134)
Fix Interops returning IntPtrs instead of floats
Fix measured child size when natural size zero.
Add Undefined constant map WrapContent to
Change-Id: Ie661294a155fb4cf971ddb96bba30472fb80168b
Kangho Hur [Thu, 21 Nov 2019 04:13:55 +0000 (20:13 -0800)]
[ElmSharp] Adds PreloadedWindow (#1137)
Xianbing Teng [Wed, 20 Nov 2019 01:51:00 +0000 (09:51 +0800)]
[NUI] Removed unused getCPtr apis (#1125)
huiyueun [Wed, 20 Nov 2019 01:49:33 +0000 (10:49 +0900)]
[NUI] Remove ValueCheck function (#1131)
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
younghajung [Tue, 19 Nov 2019 23:12:12 +0000 (08:12 +0900)]
[WebView] Add Chromium.SetArguments (#1133)
This patch adds Chromium.SetArguments that can be used to set
Chromium's commandline switches.
Signed-off-by: yh106.jung <yh106.jung@samsung.com>
dongsug-song [Mon, 18 Nov 2019 10:34:04 +0000 (19:34 +0900)]
[NUI] Remove VectorAnimationView, Add LottieAnimationView (#1126)
Xianbing Teng [Mon, 18 Nov 2019 06:21:06 +0000 (14:21 +0800)]
[NUI] Refactor dispose pattern to reduce duplication (#1112)
* [NUI] Refactor dispose pattern to reduce duplication
* [NUI] Make ReleaseSwigCPtr as hidden api
Xianbing Teng [Mon, 18 Nov 2019 06:19:57 +0000 (14:19 +0800)]
[NUI] Refine codes to reduce code duplicaton (#1119)
dongsug-song [Thu, 14 Nov 2019 23:58:38 +0000 (08:58 +0900)]
[NUI] Fix the crash when setting MinimumSize, MaximumSize (#1124)
JinWang An [Thu, 14 Nov 2019 05:18:41 +0000 (14:18 +0900)]
[SystemSettings]Fix AutomaticTimeUpdate TC error (#1121)
Sangjung Woo [Wed, 13 Nov 2019 05:51:36 +0000 (14:51 +0900)]
[MachineLearning.Inference] NotSupportedException support (#1122)
If machine_learning.inference is false or does not exist, or NNStreamer
installed on target device, NotSupportedException occurs when calling
the C# API of MachineLearning Inference.
Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
Wonyoung Choi [Wed, 13 Nov 2019 04:40:41 +0000 (13:40 +0900)]
[Build] Add MIT License file
agnelovaz [Mon, 11 Nov 2019 06:31:37 +0000 (06:31 +0000)]
[NUI] Fix attributes crash when Padding not set (#1118)
Change-Id: I8f03e40985b58715b7f80fe2a84bb508a0346608
huayongxu [Wed, 6 Nov 2019 11:40:40 +0000 (19:40 +0800)]
[NUI] fix layout issue when flexibleview animation is canceled (#1111)
* fix layout issue when flexibleview animation is canceled
* add some comments for protected functions
Xianbing Teng [Wed, 6 Nov 2019 01:14:43 +0000 (09:14 +0800)]
[NUI] Remove ImfManager class (#1115)
dongsug-song [Tue, 5 Nov 2019 11:08:33 +0000 (20:08 +0900)]
[NUI] Add implicit conversion for Size, Size2D, Position and Position2D (#1105)
AdunFang [Tue, 5 Nov 2019 07:12:38 +0000 (15:12 +0800)]
[NUI] Use new Extents in Tizen.NUI.Compoents (#1116)
* [NUI] Use new Extents in Tizen.NUI.Compoents
* [NUI] Hide the internal used method
agnelovaz [Mon, 4 Nov 2019 06:02:44 +0000 (06:02 +0000)]
[NUI] NaturalSize returns size set instead of Zero for CustomViews (#1114)
Change-Id: I3e900c09df94d19b93d35d5bf947a99cefd5337b
agnelovaz [Mon, 4 Nov 2019 05:53:19 +0000 (05:53 +0000)]
[NUI] Layouts not restricted to parents size as default (#1106)
Do not restrict Layouts to their parent size at most unless
explictly requested to MatchParent
Needed to allow a layout to scroll within it's smaller parent.
Change-Id: Id2d84601a9b1d2956636b6d5f9334eefb5f0e9c0
WonYoung Choi [Fri, 1 Nov 2019 00:18:47 +0000 (09:18 +0900)]
Update README.md
Wonyoung Choi [Thu, 31 Oct 2019 06:39:09 +0000 (15:39 +0900)]
[Build] Setup for API7
dongsug-song [Wed, 30 Oct 2019 08:44:47 +0000 (17:44 +0900)]
[NUI] Add VectorAnimationView (#1109)
Seoyeon2Kim [Wed, 30 Oct 2019 07:41:35 +0000 (16:41 +0900)]
[NUI] Remove 'EditorBrowsable' to HeightSpecification (#1108)
- HeightSpecification of View opens public in API level 6.
- Please have a look at TCSACR-278
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
Seoyeon2Kim [Thu, 24 Oct 2019 08:11:55 +0000 (17:11 +0900)]
[NUI] Fix to use the correct Interop in AutofillContainer (#1103)
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
dongsug-song [Thu, 24 Oct 2019 01:18:45 +0000 (10:18 +0900)]
[NUI] Property setter is changed (#1097)
neostom432 [Thu, 24 Oct 2019 01:18:29 +0000 (10:18 +0900)]
NUIWidgetApplication constructor for multi widget (#1091)
Add new constructor for multi widget.
Previously, NUIWidgetApplication had constructor for single widget.
Now, we can support multi widget so add constructor for this.
nam [Wed, 23 Oct 2019 08:11:07 +0000 (17:11 +0900)]
[MediaPlayer] change the error code following the API's change (#1102)
huiyueun [Wed, 23 Oct 2019 02:14:47 +0000 (11:14 +0900)]
[NUI] Fix svace issue (#1101)
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
Seoyeon2Kim [Wed, 23 Oct 2019 00:34:09 +0000 (09:34 +0900)]
[NUI] Remove IME_F31 PredictiveString in NUI sample (#1100)
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
huayongxu [Tue, 22 Oct 2019 09:50:29 +0000 (17:50 +0800)]
revert the patch for flexibleview animation (#1099)
ilho159kim [Tue, 22 Oct 2019 08:10:49 +0000 (17:10 +0900)]
Modify_Description (#1088)
Lokesh kasana [Tue, 22 Oct 2019 05:56:56 +0000 (11:26 +0530)]
[Network.Stc] Fix exception handling (#1098)
Signed-off-by: Lokesh <l.kasana@samsung.com>
Xianbing Teng [Mon, 21 Oct 2019 22:38:55 +0000 (06:38 +0800)]
[NUI] Refine codes to reduce code duplication (#1096)