platform/core/csapi/tizenfx.git
3 years agoFix warnings about CA2000 of NUI.Components. (#2157)
guowei.wang [Mon, 9 Nov 2020 05:42:51 +0000 (13:42 +0800)]
Fix warnings about CA2000 of NUI.Components. (#2157)

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years agoRelease 8.0.0.15672 submit/tizen_6.0/20201107.005230
admin [Fri, 6 Nov 2020 15:52:30 +0000 (15:52 +0000)]
Release 8.0.0.15672

3 years agoMerge remote-tracking branch 'origin/API8' into tizen_6.0
admin [Fri, 6 Nov 2020 15:52:30 +0000 (15:52 +0000)]
Merge remote-tracking branch 'origin/API8' into tizen_6.0

3 years ago[NUI] Do not make error message when the profile theme file is not found (#2188)
Jiyun Yang [Fri, 6 Nov 2020 09:44:03 +0000 (18:44 +0900)]
[NUI] Do not make error message when the profile theme file is not found (#2188)

In some profile, not all 3 theme files exists.
So the patch checks file existance not to make error messages.

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] Introduce ThemeResource (#2176)
YeongJong Lee [Fri, 6 Nov 2020 07:42:50 +0000 (16:42 +0900)]
[NUI] Introduce ThemeResource (#2176)

You can define resources(e.g. color, image etc.) of theme in seperate files.
ThemeResource can be changed in runtime without changing theme file.

3 years ago[NUI] Fix recursion when the view sets KeyboardNavigationSupport to true (#2100)
Jiyun Yang [Fri, 6 Nov 2020 07:09:35 +0000 (16:09 +0900)]
[NUI] Fix recursion when the view sets KeyboardNavigationSupport to true (#2100)

In Dali code, the method GetNextKeyboardFocuableActor should return
an empty actor (= the base handle without a referenced object)
if there is no actor can be focused.

The corresponding method in NUI is GetNextFocusableView.
It returned new View() (that is not an empty actor) which leads to the wrong result.
So instead returning new View, this patch returns a null IntPtr.

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] fixed build warning CS1574 (#2191)
JoogabYun [Fri, 6 Nov 2020 06:27:02 +0000 (15:27 +0900)]
[NUI] fixed build warning CS1574 (#2191)

3 years agoFix static analysis issues (#2193)
hjhun [Fri, 6 Nov 2020 05:57:02 +0000 (14:57 +0900)]
Fix static analysis issues (#2193)

Issues:
 - NO_LOCK.STAT

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
3 years agoRemove API9 files temporary
Wonyoung Choi [Fri, 6 Nov 2020 04:10:13 +0000 (13:10 +0900)]
Remove API9 files temporary

Change-Id: I5ab081edfa786f7ab8859a856d5c1aa29cf8a2c0

3 years agoRelease 8.0.0.15671 submit/tizen_6.0/20201106.005219
admin [Thu, 5 Nov 2020 15:52:19 +0000 (15:52 +0000)]
Release 8.0.0.15671

3 years agoMerge remote-tracking branch 'origin/API8' into tizen_6.0
admin [Thu, 5 Nov 2020 15:52:19 +0000 (15:52 +0000)]
Merge remote-tracking branch 'origin/API8' into tizen_6.0

3 years ago[NUI] No need to do Registry.GetManagedBaseHandleFromNativePtr().
Joogab Yun [Thu, 5 Nov 2020 02:26:47 +0000 (11:26 +0900)]
[NUI] No need to do Registry.GetManagedBaseHandleFromNativePtr().

3 years ago[NUI] No need to do Registry.GetManagedBaseHandleFromNativePtr().
Joogab Yun [Thu, 5 Nov 2020 02:26:47 +0000 (11:26 +0900)]
[NUI] No need to do Registry.GetManagedBaseHandleFromNativePtr().

3 years ago[NUI] change Column, Row default value from -1 to AutoColumn, AutoRow
Yeongjong Lee [Tue, 3 Nov 2020 08:57:57 +0000 (17:57 +0900)]
[NUI] change Column, Row default value from -1 to AutoColumn, AutoRow

ArgumentException will be thrown when column,row is a negative value
other than AutoColumn/AutoRow.

3 years agoRevert "[NUI] Add TouchArea property. (#2105)" (#2166)
JoogabYun [Tue, 3 Nov 2020 06:34:37 +0000 (15:34 +0900)]
Revert "[NUI] Add TouchArea property. (#2105)" (#2166)

This reverts commit 4a36f8f08fe9d580b35d740b8462a9a75fabd401.

3 years ago[NUI] Fix default animation bug of seamless
huiyu.eun [Tue, 3 Nov 2020 02:31:05 +0000 (11:31 +0900)]
[NUI] Fix default animation bug of seamless

fix virtual to override

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
3 years ago[NUI] Add defensive code for ViewSignal Disconnect()
Dongsug Song [Mon, 5 Oct 2020 10:38:58 +0000 (19:38 +0900)]
[NUI] Add defensive code for ViewSignal Disconnect()

3 years ago[NUI] Add TouchArea property. (#2105)
JoogabYun [Tue, 3 Nov 2020 01:23:13 +0000 (10:23 +0900)]
[NUI] Add TouchArea property. (#2105)

Default touchable area is view's size.
TouchArea can reset the view's touchable area.

This is usefull when the view is small, but it should have a larger touch area.

for example

      View view = new View();
      view.Size = new Size(10, 10);
      view.TouchEvent += OnTouchEvent;
      view.TouchArea = new Size2D(200, 200);

The view is small, If you want to set the touch area to a larger area,
you can use the TouchArea property.

3 years ago[NUI] Add try-catch block in New function (#2119)
huiyueun [Tue, 3 Nov 2020 01:16:33 +0000 (10:16 +0900)]
[NUI] Add try-catch block in New function (#2119)

- VD Kona : DF200922-00146
- Anlayze the log when the problem is reproduced,
 after inserting the try-catch block with log.

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
Co-authored-by: dongsug-song <35130733+dongsug-song@users.noreply.github.com>
3 years ago[WiFi] Use cloned apHandle (#2155)
chleun-moon [Tue, 3 Nov 2020 01:01:48 +0000 (10:01 +0900)]
[WiFi] Use cloned apHandle (#2155)

3 years agoUpdate README.md
WonYoung Choi [Tue, 3 Nov 2020 01:08:33 +0000 (10:08 +0900)]
Update README.md

3 years agoUpdate README.md
WonYoung Choi [Tue, 3 Nov 2020 01:07:47 +0000 (10:07 +0900)]
Update README.md

3 years ago[Build] Bump to API Level 9 (#2161)
WonYoung Choi [Tue, 3 Nov 2020 00:56:31 +0000 (09:56 +0900)]
[Build] Bump to API Level 9 (#2161)

3 years ago[Build] Add API Level 9
WonYoung Choi [Tue, 3 Nov 2020 00:30:04 +0000 (09:30 +0900)]
[Build] Add API Level 9

3 years ago[NUI] fix ScrollableBase layout issue
seungho [Mon, 2 Nov 2020 08:48:11 +0000 (17:48 +0900)]
[NUI] fix ScrollableBase layout issue

 - Rollback default ContentsContainer layout (AbsoluteLayout)
 - Set false the value of SetPositionByLayout of the AbsoluteLayout

Signed-off-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
3 years agorename cs file of testcase
huayong.xu [Mon, 2 Nov 2020 09:10:19 +0000 (17:10 +0800)]
rename cs file of testcase

3 years agoMake sure scrollable shadow is shown only when scrolled vertically
huayong.xu [Mon, 2 Nov 2020 07:58:02 +0000 (15:58 +0800)]
Make sure scrollable shadow is shown only when scrolled vertically

When the scrollable is scrolled horizontally, a background image
is shown accidentally.
This patch adds a check that scrollable shadow is shown only when
scrolled vertically.

3 years ago[NUI] Fix ScrollableBase Size Issue
seungho [Mon, 2 Nov 2020 03:27:10 +0000 (12:27 +0900)]
[NUI] Fix ScrollableBase Size Issue

 - Fix OnMeasure callback in LinearLayout.(handling margin and padding)
 - Fix to handle only layout of ContentContainer to measure and layout of scrollableBase
 - Fix LayoutGroup to do not assert when the child view has no layout in RemoveChildFromLayoutGroup method

Signed-off-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
3 years ago[Elmsharp] Add fontconfig reinit method (#2144)
shmin [Sun, 1 Nov 2020 22:00:22 +0000 (07:00 +0900)]
[Elmsharp] Add fontconfig reinit method (#2144)

Co-authored-by: Kangho Hur <rookiejava@gmail.com>
3 years agoRevert "[NUI] fix ScrollableBase wrong size issue (#2126)" (#2150)
huiyueun [Fri, 30 Oct 2020 12:25:17 +0000 (21:25 +0900)]
Revert "[NUI] fix ScrollableBase wrong size issue (#2126)" (#2150)

This reverts commit 663cf117fbee9589ef6b1eda3c26eef902641836.

3 years ago[NUI] Change type of Selector.StateValueList to IList (#2149)
Jiyun Yang [Fri, 30 Oct 2020 09:20:50 +0000 (18:20 +0900)]
[NUI] Change type of Selector.StateValueList to IList (#2149)

This is tempopary error fix to sync with fhub-nui without full build.

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[Build] Add a dependent nuget packages (#2147)
WonYoung Choi [Fri, 30 Oct 2020 06:52:36 +0000 (15:52 +0900)]
[Build] Add a dependent nuget packages (#2147)

3 years ago[NUI] TextField/TextEditor: Add enableEditing properties (#2071)
Ali-Alzyoud [Fri, 30 Oct 2020 01:26:54 +0000 (03:26 +0200)]
[NUI] TextField/TextEditor: Add enableEditing properties (#2071)

3 years ago[NUI] Handle null inputs in shadow
Jiyun Yang [Tue, 27 Oct 2020 10:11:44 +0000 (19:11 +0900)]
[NUI] Handle null inputs in shadow

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] Make Selector.StateValueList public temporarily (#2142)
YeongJong Lee [Thu, 29 Oct 2020 08:25:03 +0000 (17:25 +0900)]
[NUI] Make Selector.StateValueList public temporarily (#2142)

This will fix DA-NUI build error.
Please revert this patch after the DA build error is fixed.

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] fix ScrollableBase wrong size issue (#2126)
bshsqa [Thu, 29 Oct 2020 08:17:20 +0000 (17:17 +0900)]
[NUI] fix ScrollableBase wrong size issue (#2126)

- Fix OnMeasure callback in LinearLayout.(handling margin and padding)
 - Fix to handle only layout of ContentContainer to measure and layout of ScrollableBase.

Signed-off-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
Co-authored-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] avoid duplicated elements in Selector (#2122)
YeongJong Lee [Thu, 29 Oct 2020 07:32:13 +0000 (16:32 +0900)]
[NUI] avoid duplicated elements in Selector (#2122)

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] add ScrollOutOfBound event handler. (#2110)
huayongxu [Thu, 29 Oct 2020 07:22:49 +0000 (15:22 +0800)]
[NUI] add ScrollOutOfBound event handler. (#2110)

* add ScrollOutofBound event handler.

* add EditorBrowsableState.Never

* rename ScrollOutOfBoundEventArgs.

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] TextField/TextEditor: Add SelectedTextStart, SelectedTextEnd properties (#2066)
Ali-Alzyoud [Thu, 29 Oct 2020 07:00:12 +0000 (10:00 +0300)]
[NUI] TextField/TextEditor: Add SelectedTextStart, SelectedTextEnd properties (#2066)

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] Add DisallowInterceptTouchEvent (#2109)
JoogabYun [Thu, 29 Oct 2020 06:52:38 +0000 (15:52 +0900)]
[NUI] Add DisallowInterceptTouchEvent (#2109)

If child view doesn't want the parent's view to intercept the touch, you can set it to true.
 for example :
    parent.Add(child);
    parent.InterceptTouchEvent += OnInterceptTouchEvent;
    View view = child.GetParent() as View;
    view.DisallowInterceptTouchEvent = true;
 This prevents the parent from interceping touch.

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years agoRevert "[NUI] Fix Dispose warning error[CA1001] (#2130)"
huiyu.eun [Thu, 29 Oct 2020 06:49:17 +0000 (15:49 +0900)]
Revert "[NUI] Fix Dispose warning error[CA1001] (#2130)"

This reverts commit 00ffabd0eb3ea4f57f1172d466737d25f0bc79c9.

3 years ago[NUI] add exception docs of layout classes (#2052)
YeongJong Lee [Thu, 29 Oct 2020 06:01:13 +0000 (15:01 +0900)]
[NUI] add exception docs of layout classes (#2052)

Requested by TCT reviewr.

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] add null checking for equality operator of ControlState (#2079)
YeongJong Lee [Thu, 29 Oct 2020 05:47:21 +0000 (14:47 +0900)]
[NUI] add null checking for equality operator of ControlState (#2079)

This is patch to prevent a null reference exception in the following
code.

```cs
bool b = null == ControlState.Pressed;
```

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] remove unused exception parameters (#2089)
YeongJong Lee [Thu, 29 Oct 2020 05:00:39 +0000 (14:00 +0900)]
[NUI] remove unused exception parameters (#2089)

Fixes CS0168

Co-authored-by: Yeongjong Lee <yj34.lee@samsung.com>
Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] remove unused parameter docs tag. (#2083)
YeongJong Lee [Thu, 29 Oct 2020 04:55:53 +0000 (13:55 +0900)]
[NUI] remove unused parameter docs tag. (#2083)

Fixes CS1572

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] Add ThemeManager (#2034)
Jiyun Yang [Thu, 29 Oct 2020 03:22:42 +0000 (12:22 +0900)]
[NUI] Add ThemeManager (#2034)

* [NUI] Refactoring Theme and StyleManager

* [NUI] Fix bugs and improve ThemeManager code

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
* [NUI] Fix button bugs that come after applying ThemeManager

In the DropDown button, the IconRelativeOrientation was not working
because it is set before ApplyStyle().
Potentially, IconPadding and TextPadding had same problem.
This patch fixes it.

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 years agorename member variables.
huayong.xu [Wed, 21 Oct 2020 05:13:58 +0000 (13:13 +0800)]
rename member variables.

3 years agoupdate some comments.
huayong.xu [Tue, 20 Oct 2020 11:23:08 +0000 (19:23 +0800)]
update some comments.

3 years agoadd shadow effect for scrollablebase.
huayong.xu [Tue, 20 Oct 2020 10:44:05 +0000 (18:44 +0800)]
add shadow effect for scrollablebase.

3 years ago[NUI] Fix Dispose warning error[CA1001] (#2130)
huiyueun [Wed, 28 Oct 2020 09:45:17 +0000 (18:45 +0900)]
[NUI] Fix Dispose warning error[CA1001] (#2130)

* [NUI] Fix DisposeQueue warning error[CA1001]

CA100: Types that own disposable fields should be disposable
https://docs.microsoft.com/ko-kr/dotnet/fundamentals/code-analysis/quality-rules/ca1001

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* [NUI] Fix Accessibility build warnings

CA100: Types that own disposable fields should be disposable
https://docs.microsoft.com/ko-kr/dotnet/fundamentals/code-analysis/quality-rules/ca1001

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* [NUI] Fix build warnings- 1001

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* [NUI] Add destructor

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
Co-authored-by: WonYoung Choi <wy80.choi@samsung.com>
3 years agoRelease 8.0.0.15669 submit/tizen_6.0/20201104.005227
admin [Tue, 3 Nov 2020 15:52:27 +0000 (15:52 +0000)]
Release 8.0.0.15669

3 years agoMerge remote-tracking branch 'origin/API8' into tizen_6.0
admin [Tue, 3 Nov 2020 15:52:27 +0000 (15:52 +0000)]
Merge remote-tracking branch 'origin/API8' into tizen_6.0

3 years agoRevert "[NUI] Add TouchArea property. (#2105)" (#2167)
JoogabYun [Tue, 3 Nov 2020 06:44:12 +0000 (15:44 +0900)]
Revert "[NUI] Add TouchArea property. (#2105)" (#2167)

This reverts commit 26e21f69bc3f056e277f198833f3eba05392459c.

3 years agoRollback to 8.0.0.15663
Wonyoung Choi [Tue, 3 Nov 2020 04:27:13 +0000 (13:27 +0900)]
Rollback to 8.0.0.15663

Change-Id: I0efa907ae2f8346b12ce7a3f26a41c77de7a0faf

3 years agoRelease 9.0.0.15672 submit/tizen/20201103.124733
admin [Tue, 3 Nov 2020 03:47:33 +0000 (03:47 +0000)]
Release 9.0.0.15672

3 years agoMerge remote-tracking branch 'origin/master' into tizen
admin [Tue, 3 Nov 2020 03:47:32 +0000 (03:47 +0000)]
Merge remote-tracking branch 'origin/master' into tizen

3 years ago[NUI] Fix default animation bug of seamless
huiyu.eun [Tue, 3 Nov 2020 02:31:05 +0000 (11:31 +0900)]
[NUI] Fix default animation bug of seamless

fix virtual to override

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
3 years ago[NUI] Add defensive code for ViewSignal Disconnect()
Dongsug Song [Mon, 5 Oct 2020 10:38:58 +0000 (19:38 +0900)]
[NUI] Add defensive code for ViewSignal Disconnect()

3 years ago[NUI] Add TouchArea property. (#2105)
JoogabYun [Tue, 3 Nov 2020 01:23:13 +0000 (10:23 +0900)]
[NUI] Add TouchArea property. (#2105)

Default touchable area is view's size.
TouchArea can reset the view's touchable area.

This is usefull when the view is small, but it should have a larger touch area.

for example

      View view = new View();
      view.Size = new Size(10, 10);
      view.TouchEvent += OnTouchEvent;
      view.TouchArea = new Size2D(200, 200);

The view is small, If you want to set the touch area to a larger area,
you can use the TouchArea property.

3 years ago[NUI] Add try-catch block in New function (#2119)
huiyueun [Tue, 3 Nov 2020 01:16:33 +0000 (10:16 +0900)]
[NUI] Add try-catch block in New function (#2119)

- VD Kona : DF200922-00146
- Anlayze the log when the problem is reproduced,
 after inserting the try-catch block with log.

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
Co-authored-by: dongsug-song <35130733+dongsug-song@users.noreply.github.com>
3 years ago[WiFi] Use cloned apHandle (#2155)
chleun-moon [Tue, 3 Nov 2020 01:01:48 +0000 (10:01 +0900)]
[WiFi] Use cloned apHandle (#2155)

3 years agoRelease 8.0.0.15668 submit/tizen_6.0/20201103.124313
admin [Tue, 3 Nov 2020 03:43:13 +0000 (03:43 +0000)]
Release 8.0.0.15668

3 years agoMerge remote-tracking branch 'origin/API8' into tizen_6.0
admin [Tue, 3 Nov 2020 03:43:11 +0000 (03:43 +0000)]
Merge remote-tracking branch 'origin/API8' into tizen_6.0

3 years ago[NUI] Fix default animation bug of seamless
huiyu.eun [Tue, 3 Nov 2020 02:31:05 +0000 (11:31 +0900)]
[NUI] Fix default animation bug of seamless

fix virtual to override

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
3 years ago[NUI] Add defensive code for ViewSignal Disconnect()
Dongsug Song [Mon, 5 Oct 2020 10:38:58 +0000 (19:38 +0900)]
[NUI] Add defensive code for ViewSignal Disconnect()

3 years ago[NUI] Add TouchArea property. (#2105)
JoogabYun [Tue, 3 Nov 2020 01:23:13 +0000 (10:23 +0900)]
[NUI] Add TouchArea property. (#2105)

Default touchable area is view's size.
TouchArea can reset the view's touchable area.

This is usefull when the view is small, but it should have a larger touch area.

for example

      View view = new View();
      view.Size = new Size(10, 10);
      view.TouchEvent += OnTouchEvent;
      view.TouchArea = new Size2D(200, 200);

The view is small, If you want to set the touch area to a larger area,
you can use the TouchArea property.

3 years ago[NUI] Add try-catch block in New function (#2119)
huiyueun [Tue, 3 Nov 2020 01:16:33 +0000 (10:16 +0900)]
[NUI] Add try-catch block in New function (#2119)

- VD Kona : DF200922-00146
- Anlayze the log when the problem is reproduced,
 after inserting the try-catch block with log.

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
Co-authored-by: dongsug-song <35130733+dongsug-song@users.noreply.github.com>
3 years agoUpdate README.md
WonYoung Choi [Tue, 3 Nov 2020 01:08:33 +0000 (10:08 +0900)]
Update README.md

3 years agoUpdate README.md
WonYoung Choi [Tue, 3 Nov 2020 01:07:47 +0000 (10:07 +0900)]
Update README.md

3 years ago[WiFi] Use cloned apHandle (#2155)
chleun-moon [Tue, 3 Nov 2020 01:01:48 +0000 (10:01 +0900)]
[WiFi] Use cloned apHandle (#2155)

3 years ago[Build] Bump to API Level 9 (#2161)
WonYoung Choi [Tue, 3 Nov 2020 00:56:31 +0000 (09:56 +0900)]
[Build] Bump to API Level 9 (#2161)

3 years ago[Build] Add API Level 9
WonYoung Choi [Tue, 3 Nov 2020 00:30:04 +0000 (09:30 +0900)]
[Build] Add API Level 9

3 years agoRelease 8.0.0.15663 accepted/tizen/unified/20201103.052007 submit/tizen/20201103.005620
admin [Mon, 2 Nov 2020 15:56:20 +0000 (15:56 +0000)]
Release 8.0.0.15663

3 years agoMerge remote-tracking branch 'origin/master' into tizen
admin [Mon, 2 Nov 2020 15:56:20 +0000 (15:56 +0000)]
Merge remote-tracking branch 'origin/master' into tizen

3 years ago[NUI] fix ScrollableBase layout issue
seungho [Mon, 2 Nov 2020 08:48:11 +0000 (17:48 +0900)]
[NUI] fix ScrollableBase layout issue

 - Rollback default ContentsContainer layout (AbsoluteLayout)
 - Set false the value of SetPositionByLayout of the AbsoluteLayout

Signed-off-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
3 years agorename cs file of testcase
huayong.xu [Mon, 2 Nov 2020 09:10:19 +0000 (17:10 +0800)]
rename cs file of testcase

3 years agoMake sure scrollable shadow is shown only when scrolled vertically
huayong.xu [Mon, 2 Nov 2020 07:58:02 +0000 (15:58 +0800)]
Make sure scrollable shadow is shown only when scrolled vertically

When the scrollable is scrolled horizontally, a background image
is shown accidentally.
This patch adds a check that scrollable shadow is shown only when
scrolled vertically.

3 years agoRelease 8.0.0.15660 submit/tizen/20201102.143048
admin [Mon, 2 Nov 2020 05:30:48 +0000 (05:30 +0000)]
Release 8.0.0.15660

3 years agoMerge remote-tracking branch 'origin/master' into tizen
admin [Mon, 2 Nov 2020 05:30:48 +0000 (05:30 +0000)]
Merge remote-tracking branch 'origin/master' into tizen

3 years ago[NUI] Fix ScrollableBase Size Issue
seungho [Mon, 2 Nov 2020 03:27:10 +0000 (12:27 +0900)]
[NUI] Fix ScrollableBase Size Issue

 - Fix OnMeasure callback in LinearLayout.(handling margin and padding)
 - Fix to handle only layout of ContentContainer to measure and layout of scrollableBase
 - Fix LayoutGroup to do not assert when the child view has no layout in RemoveChildFromLayoutGroup method

Signed-off-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
3 years ago[Elmsharp] Add fontconfig reinit method (#2144)
shmin [Sun, 1 Nov 2020 22:00:22 +0000 (07:00 +0900)]
[Elmsharp] Add fontconfig reinit method (#2144)

Co-authored-by: Kangho Hur <rookiejava@gmail.com>
3 years agoRelease 8.0.0.15658 submit/tizen/20201030.161430
admin [Fri, 30 Oct 2020 12:28:12 +0000 (12:28 +0000)]
Release 8.0.0.15658

3 years agoMerge remote-tracking branch 'origin/master' into tizen
admin [Fri, 30 Oct 2020 12:28:12 +0000 (12:28 +0000)]
Merge remote-tracking branch 'origin/master' into tizen

3 years agoRevert "[NUI] fix ScrollableBase wrong size issue (#2126)" (#2150)
huiyueun [Fri, 30 Oct 2020 12:25:17 +0000 (21:25 +0900)]
Revert "[NUI] fix ScrollableBase wrong size issue (#2126)" (#2150)

This reverts commit 663cf117fbee9589ef6b1eda3c26eef902641836.

3 years agoRelease 8.0.0.15657
admin [Fri, 30 Oct 2020 10:05:13 +0000 (10:05 +0000)]
Release 8.0.0.15657

3 years agoMerge remote-tracking branch 'origin/master' into tizen
admin [Fri, 30 Oct 2020 10:05:13 +0000 (10:05 +0000)]
Merge remote-tracking branch 'origin/master' into tizen

3 years ago[NUI] Change type of Selector.StateValueList to IList (#2149)
Jiyun Yang [Fri, 30 Oct 2020 09:20:50 +0000 (18:20 +0900)]
[NUI] Change type of Selector.StateValueList to IList (#2149)

This is tempopary error fix to sync with fhub-nui without full build.

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 years agoRelease 8.0.0.15656
admin [Fri, 30 Oct 2020 07:14:30 +0000 (07:14 +0000)]
Release 8.0.0.15656

3 years agoMerge remote-tracking branch 'origin/master' into tizen
admin [Fri, 30 Oct 2020 07:14:29 +0000 (07:14 +0000)]
Merge remote-tracking branch 'origin/master' into tizen

3 years ago[Build] Add a dependent nuget packages (#2147)
WonYoung Choi [Fri, 30 Oct 2020 06:52:36 +0000 (15:52 +0900)]
[Build] Add a dependent nuget packages (#2147)

3 years ago[NUI] TextField/TextEditor: Add enableEditing properties (#2071)
Ali-Alzyoud [Fri, 30 Oct 2020 01:26:54 +0000 (03:26 +0200)]
[NUI] TextField/TextEditor: Add enableEditing properties (#2071)

3 years agoRelease 8.0.0.15654 submit/tizen/20201030.005228
admin [Thu, 29 Oct 2020 15:52:28 +0000 (15:52 +0000)]
Release 8.0.0.15654

3 years agoMerge remote-tracking branch 'origin/master' into tizen
admin [Thu, 29 Oct 2020 15:52:28 +0000 (15:52 +0000)]
Merge remote-tracking branch 'origin/master' into tizen

3 years ago[NUI] Handle null inputs in shadow
Jiyun Yang [Tue, 27 Oct 2020 10:11:44 +0000 (19:11 +0900)]
[NUI] Handle null inputs in shadow

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] Make Selector.StateValueList public temporarily (#2142)
YeongJong Lee [Thu, 29 Oct 2020 08:25:03 +0000 (17:25 +0900)]
[NUI] Make Selector.StateValueList public temporarily (#2142)

This will fix DA-NUI build error.
Please revert this patch after the DA build error is fixed.

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] fix ScrollableBase wrong size issue (#2126)
bshsqa [Thu, 29 Oct 2020 08:17:20 +0000 (17:17 +0900)]
[NUI] fix ScrollableBase wrong size issue (#2126)

- Fix OnMeasure callback in LinearLayout.(handling margin and padding)
 - Fix to handle only layout of ContentContainer to measure and layout of ScrollableBase.

Signed-off-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
Co-authored-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] avoid duplicated elements in Selector (#2122)
YeongJong Lee [Thu, 29 Oct 2020 07:32:13 +0000 (16:32 +0900)]
[NUI] avoid duplicated elements in Selector (#2122)

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] add ScrollOutOfBound event handler. (#2110)
huayongxu [Thu, 29 Oct 2020 07:22:49 +0000 (15:22 +0800)]
[NUI] add ScrollOutOfBound event handler. (#2110)

* add ScrollOutofBound event handler.

* add EditorBrowsableState.Never

* rename ScrollOutOfBoundEventArgs.

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
3 years ago[NUI] Fix build warning CA1507
Yeongjong Lee [Thu, 29 Oct 2020 02:45:03 +0000 (11:45 +0900)]
[NUI] Fix build warning CA1507

Use nameof instead of string

3 years ago[NUI] TextField/TextEditor: Add SelectedTextStart, SelectedTextEnd properties (#2066)
Ali-Alzyoud [Thu, 29 Oct 2020 07:00:12 +0000 (10:00 +0300)]
[NUI] TextField/TextEditor: Add SelectedTextStart, SelectedTextEnd properties (#2066)

Co-authored-by: Jiyun Yang <ji.yang@samsung.com>