TizenAPI-Bot [Wed, 5 Apr 2023 12:19:25 +0000 (12:19 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Eunki, Hong [Wed, 5 Apr 2023 01:55:44 +0000 (10:55 +0900)]
[NUI] Add view helper API to rotate : LookAt
Add helper API to rotate View
Note that this API change View's Orientation property
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Hosang Kim [Wed, 5 Apr 2023 07:57:54 +0000 (16:57 +0900)]
[NUI] Version up 22220
Eunki, Hong [Wed, 5 Apr 2023 01:48:53 +0000 (10:48 +0900)]
[NUI.Samples] Fix visual defect for SpringAnimationSample
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki Hong [Mon, 3 Apr 2023 15:37:19 +0000 (00:37 +0900)]
[NUI.Samples] Add sample for spring like animation
Simple sample with custom alpha function
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Artur Świgoń [Mon, 3 Apr 2023 09:43:26 +0000 (11:43 +0200)]
[NUI][AT-SPI] Override ContentPage.AccessibilityGetName() (#5141)
ContentPage often serves as a default label in scenarios where Navigator is
used, so Screen Reader will ask ContentPage about the accessibility name (text
to read) when a Navigator page is pushed. Therefore, it makes sense to try to
provide the text from ContentPage.AppBar.Title (if it exists). The application
developer can always customize this by setting the AccessibilityName property
or adding an AccessibilityRelation.LabelledBy.
Co-authored-by: Artur Świgoń <a.swigon@samsung.com>
Daekwang Ryu [Thu, 23 Mar 2023 08:41:59 +0000 (17:41 +0900)]
[NUI] Introduce WindowLayoutType enum and SetLayout Method
The new `SetLayout` method allows users to easily snap windows to specific positions and sizes.
This feature is allowing users to quickly arrange their windows in a convenient and efficient manner.
Jiyun Yang [Fri, 31 Mar 2023 00:52:23 +0000 (09:52 +0900)]
[NUI] Remove regacy Interop files
* Button
* CheckBoxButton
* Popup
* ProgressBar
* PushButton
* RadioButton
* Slider
* ToggleButton
* Signals that are not removed in #5136
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
TizenAPI-Bot [Mon, 3 Apr 2023 15:11:54 +0000 (15:11 +0000)]
Release 11.0.0.17766
TizenAPI-Bot [Mon, 3 Apr 2023 15:11:54 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
akash1-kumar [Mon, 3 Apr 2023 03:58:01 +0000 (09:28 +0530)]
Add new cache APIs (#5088)
* Add new APIs for cache.
Signed-off-by: Akash Kumar <akash1.kumar@samsung.com>
* Add new APIs for cache.
Signed-off-by: Akash Kumar <akash1.kumar@samsung.com>
* Change methods to C# properties for set/get APIs.
Signed-off-by: Akash Kumar <akash1.kumar@samsung.com>
* Add class 'CacheManager' for managing cache properties.
Signed-off-by: Akash Kumar <akash1.kumar@samsung.com>
* Update documentation: Add '<feature>' tag
Signed-off-by: Akash Kumar <akash1.kumar@samsung.com>
---------
Signed-off-by: Akash Kumar <akash1.kumar@samsung.com>
TizenAPI-Bot [Fri, 31 Mar 2023 09:40:36 +0000 (09:40 +0000)]
Release 11.0.0.17765
TizenAPI-Bot [Fri, 31 Mar 2023 09:40:36 +0000 (09:40 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Jiyun Yang [Fri, 31 Mar 2023 07:14:26 +0000 (16:14 +0900)]
[NUI] Fix typo
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
TizenAPI-Bot [Fri, 31 Mar 2023 04:09:53 +0000 (04:09 +0000)]
Release 11.0.0.17764
TizenAPI-Bot [Fri, 31 Mar 2023 04:09:53 +0000 (04:09 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Jiyun Yang [Thu, 30 Mar 2023 04:26:07 +0000 (13:26 +0900)]
[NUI] Refactor Signal structure.
Previously, When NUI wanted to connect or disconnect a handler to the Signal,
it had to create a Signal instance just for it and dispose the instance right after.
Repeating this over and over again isn't cheap.
And also NUI had to declare many Signal classes with almost idential structures.
This patch provides Signal connection/disconnection pinvoke functions
to make it possible to remove redundant signal classes and instance creations.
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Jaehyun Cho [Wed, 29 Mar 2023 11:04:19 +0000 (20:04 +0900)]
[NUI] Fix size calculation for TextLabel with Margin in RelativeLayout
Previously, RelativeLayout calculated the size for TextLabel with Margin
incorrectly by calling MeasureChildWithMargins().
Because TextLabel size was decreased by its Margin size incorrectly.
Now, RelativeLayout calculates the size for TextLabel with Margin
correctly by calling MeasureChild().
Because TextLabel size is not decreased by its Margin size.
Jiyun Yang [Wed, 29 Mar 2023 10:31:03 +0000 (19:31 +0900)]
[NUI] Fix signal bugs in View and Window
* Do not try to disconnect callback unless the callback is not null.
* Ensure a signal has valid cptr before calling Connect/Disconnect.
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
SangHyeon Jade Lee [Wed, 29 Mar 2023 05:25:55 +0000 (14:25 +0900)]
[NUI] refactoring collectionView and Layouters for extended class (#5123)
* [NUI] refactoring collectionView and Layouters for extended class
to create customized collectionView and Layouters,
some properties must be extendable.
this change includes properties access modifier
which is internal or private to protected.
* [NUI] publize reyclerviewitem properties
* [NUI] fix item source getter more efficiently.
* [NUI] refactoring getter.
* [NUI] add GroupItems
* [NUI] fix build error
* [NUI] fix build error
* [NUI] change property overridable.
Bowon Ryu [Mon, 27 Mar 2023 02:12:07 +0000 (11:12 +0900)]
[NUI] Add Font PreCache API to FontClient
This patch adds a new PreCache API to enable pre-caching of fonts
and improve the runtime performance of the application.
Pre-caching default fonts and fallback lists can enhance the responsiveness performance
by minimizing the calls to FcFontSort and FcFontMatch, during the early stages of boot-up.
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
TizenAPI-Bot [Wed, 29 Mar 2023 15:20:25 +0000 (15:20 +0000)]
Release 11.0.0.17759
TizenAPI-Bot [Wed, 29 Mar 2023 15:20:25 +0000 (15:20 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Haesu Gwon [Wed, 29 Mar 2023 08:14:41 +0000 (17:14 +0900)]
[WebRTC] Change Stats enum value and add new enum value (#5117)
* [WebRTC] Change Stats enum value and add new value in WebRTCStatisticsCategory enum
TizenAPI-Bot [Tue, 28 Mar 2023 07:52:18 +0000 (07:52 +0000)]
Release 11.0.0.17758
TizenAPI-Bot [Tue, 28 Mar 2023 07:52:18 +0000 (07:52 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Woochan Lee [Tue, 28 Mar 2023 06:25:54 +0000 (15:25 +0900)]
[NUI] Version up 22219
Eunki, Hong [Tue, 28 Mar 2023 02:11:06 +0000 (11:11 +0900)]
[NUI] Register HitTest callback only if GrabTouchAfterLeave = true
Since useless HitTest checkup function make performance down for
standard cases, Let we make we use custom callback only if
GrabTouchAfterLeave case.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Mon, 27 Mar 2023 13:25:22 +0000 (22:25 +0900)]
[NUI] Add GetOverlayLayer in NUI window.
This PR is FrontPort of #4922
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Artur Świgoń [Mon, 20 Mar 2023 12:31:52 +0000 (13:31 +0100)]
[NUI][AT-SPI] Add ViewAccessibilityMode
The accessibility mode helps select the right Accessible implementation for
a given view. It does not affect controls derived from CustomView (or any of
its subclasses), e.g. Tizen.NUI.Components, which already behave in the custom
mode. The default mode is kept for Tizen.NUI.BaseComponents. However, this
patch add a possibility of opting into the custom mode for controls derived
directly from View (e.g. FluxView), and by doing so, to be able to implement
accessibility support for them in the C# language.
Jiyun Yang [Fri, 17 Mar 2023 04:53:15 +0000 (13:53 +0900)]
[NUI] Refactor ButtonExtension
* Rename some functions to better match the design intent.
* Extract Helper class to provide common methods used by multiple classes.
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Taehyub Kim [Wed, 22 Mar 2023 04:08:18 +0000 (13:08 +0900)]
[NUI] DragAndDrop : allow to control shadow view opacity
chleun-moon [Tue, 28 Mar 2023 07:23:27 +0000 (16:23 +0900)]
[Connection] Fix race condition (#5113)
* [Connection] Fix race condition
* Add locks
* Use lock objects
TizenAPI-Bot [Thu, 23 Mar 2023 15:09:33 +0000 (15:09 +0000)]
Release 11.0.0.17751
TizenAPI-Bot [Thu, 23 Mar 2023 15:09:33 +0000 (15:09 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
jeremy-jang [Thu, 23 Mar 2023 06:48:16 +0000 (15:48 +0900)]
[Packagemanager] Add APIs for internal (#4991)
* [Packagemanager] Add APIs for internal
- Tizen.PackageManager.ActivatePackage()
- Tizen.PackageManager.DeactivatePackage()
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
* [Packagemanager] Fix return type of EnablePackage/DisablePackage
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
---------
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
TizenAPI-Bot [Mon, 20 Mar 2023 11:32:39 +0000 (11:32 +0000)]
Release 11.0.0.17750
TizenAPI-Bot [Mon, 20 Mar 2023 11:32:39 +0000 (11:32 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Wonsik Jung [Mon, 20 Mar 2023 10:26:06 +0000 (19:26 +0900)]
[NUI] Version up 22218
Wonsik Jung [Fri, 17 Mar 2023 01:18:08 +0000 (10:18 +0900)]
[NUI] Add RotationCompletedAcknowledgement APIs
Add RotationCompletedAcknowledgement APIs in Window.
The APIs are SetNeedsRotationCompletedAcknowledgement and SendRotationCompletedAcknowledgement
TizenAPI-Bot [Fri, 17 Mar 2023 09:16:41 +0000 (09:16 +0000)]
Release 11.0.0.17748
TizenAPI-Bot [Fri, 17 Mar 2023 09:16:41 +0000 (09:16 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
joogab.yun [Fri, 17 Mar 2023 07:51:50 +0000 (16:51 +0900)]
[NUI] Remove unnecessary gesture events from DefaultBorder.
EverLEEst(SangHyeon Lee) [Fri, 17 Mar 2023 05:57:37 +0000 (14:57 +0900)]
[NUI] fix svace issue. check Selected item existance.
huayong.xu [Thu, 16 Mar 2023 07:31:06 +0000 (15:31 +0800)]
[NUI] Fix some SVACE issues.
Jiyun Yang [Wed, 15 Mar 2023 08:27:44 +0000 (17:27 +0900)]
[NUI] Change log info to debug in ThemeManager
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Jiyun Yang [Wed, 15 Mar 2023 07:58:12 +0000 (16:58 +0900)]
[NUI] Refactor NUI.ThemeManager
* Remove dependency: ExternalThemeManager -> ThemeManager
The NUI theme modules (ThemeManager and ExternalThemeManager) had dependencies
to each other and that did not meet "Seperation of concerns" principle.
This patch makes dependency direction one way: ThemeManager -> ExtenalThemeManager
* Add a sample application to verify functional regressions.
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Taehyub Kim [Wed, 15 Mar 2023 08:19:19 +0000 (17:19 +0900)]
[NUI] AIAgentLayer : fix animation usage issue
Eunki, Hong [Tue, 14 Mar 2023 05:06:40 +0000 (14:06 +0900)]
[NUI] Load facial blendshape animation
Load facial blendshape animation from json format.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
hjhun [Fri, 17 Mar 2023 04:29:24 +0000 (13:29 +0900)]
[NUI.Gadget] Support Internationalization (#5091)
* [NUI.Gadget] Add NUIGadgetResourceManager class
To support multilanguage, a new class is added.
Adds:
- NUIGadgetResourceManager
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [NUI.Gadget] Modify property & metadata name
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
---------
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
Jay Cho [Thu, 16 Mar 2023 06:32:02 +0000 (15:32 +0900)]
Update postback PR (#5086)
* Update postback pr
* update nightly release
TizenAPI-Bot [Mon, 13 Mar 2023 10:18:02 +0000 (10:18 +0000)]
Release 11.0.0.17739
TizenAPI-Bot [Mon, 13 Mar 2023 10:18:02 +0000 (10:18 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
sunghyun kim [Mon, 13 Mar 2023 08:01:50 +0000 (17:01 +0900)]
[NUI] Version up 22217
EverLEEst(SangHyeon Lee) [Fri, 10 Mar 2023 07:49:42 +0000 (16:49 +0900)]
[NUI] fix previous patch by coding rules
EverLEEst(SangHyeon Lee) [Fri, 10 Mar 2023 06:49:15 +0000 (15:49 +0900)]
[NUI] Fix collectionView Selection on Item.
Eunki Hong [Thu, 9 Mar 2023 02:50:58 +0000 (11:50 +0900)]
[NUI.Scene3D] Add model to test glb format (#5067)
* [NUI.Scene3D] Add model to test glb format
Check glb format file load well
+
Let this demo allow to load multiple camera
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
* Update test/Tizen.NUI.Scene3D.Sample/Scene3DSample.cs
Co-authored-by: Seoyeon2Kim <34738918+Seoyeon2Kim@users.noreply.github.com>
* Update Scene3DSample.cs
typo fix
---------
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Co-authored-by: Eunki Hong <eunkiki.hong@samsung.com>
Co-authored-by: Seoyeon2Kim <34738918+Seoyeon2Kim@users.noreply.github.com>
Eunki, Hong [Mon, 6 Mar 2023 13:25:05 +0000 (22:25 +0900)]
[NUI] Do not connect default signals when View created
Since Window.ViewAdded signal required to all common view's creation time,
It will reduce each view's creation time.
And more, ViewAdded signal only works for default windows previously.
Now we make the signal ownership from window.
And additionaly, register custom HitTest signal only if subclass required.
TODO : The role of signal conflict with View.AddedToWindow.
Can we just remove this ViewAdded signal?
TODO : Can we just skip default view constructor's signal connection?
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Jiyun Yang [Wed, 8 Mar 2023 04:31:27 +0000 (13:31 +0900)]
[NUI] Remove unsed field in View
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Jihoon Kim [Tue, 7 Mar 2023 09:09:55 +0000 (18:09 +0900)]
[NLP] Deprecated NLP APIs
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
TizenAPI-Bot [Fri, 10 Mar 2023 15:10:10 +0000 (15:10 +0000)]
Release 11.0.0.17732
TizenAPI-Bot [Fri, 10 Mar 2023 15:10:09 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Jay Cho [Fri, 10 Mar 2023 04:52:06 +0000 (13:52 +0900)]
Update deprecated actions (#5070)
TizenAPI-Bot [Wed, 8 Mar 2023 15:10:38 +0000 (15:10 +0000)]
Release 11.0.0.17731
TizenAPI-Bot [Wed, 8 Mar 2023 15:10:38 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
hjhun [Wed, 8 Mar 2023 04:11:40 +0000 (13:11 +0900)]
[NUI.Gadget] Add a new internal API (#4976)
* [NUI.Gadget] Add new internal APIs
If the UI gadget developer sets the class name, the application developer
can adds a new NUIGadget instance using the NUIGadgetInfo object.
The following APIs are added:
+ NUIGadgetManager.Add(NUIGadgetInfo gadgetInfo); [method]
+ NUIGadgetManager.GetGadgetInfos(); [method]
+ NUIGadgetInfo.ClassName; [property]
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* Change the visibility of the ClasaName property
The visibility of the NUIGadgetInfo.ClassName property is changed to internal.
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* Modify description of GetGadgets()
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* Remove Add() method
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
---------
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
Co-authored-by: Jay Cho <chojoong@gmail.com>
hjhun [Wed, 8 Mar 2023 04:02:36 +0000 (13:02 +0900)]
[NUI.Gadget] Modify NUIGadgetManager.Add() method (#5011)
When calling the CreateInstance() method, this patch modifies the set
the ignoreCase to true that the case of the className is no checked.
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
Co-authored-by: Jay Cho <chojoong@gmail.com>
Jay Cho [Wed, 8 Mar 2023 01:44:14 +0000 (10:44 +0900)]
update action script methods (#5062)
TizenAPI-Bot [Tue, 7 Mar 2023 08:51:37 +0000 (08:51 +0000)]
Release 11.0.0.17728
TizenAPI-Bot [Tue, 7 Mar 2023 08:51:36 +0000 (08:51 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Jay Cho [Tue, 7 Mar 2023 08:46:00 +0000 (17:46 +0900)]
Update github action (#5059)
Eunki, Hong [Tue, 7 Mar 2023 06:28:45 +0000 (15:28 +0900)]
[NUI] Fix layer MoveAbove/MoveBelow API change window's List
Previous MoveAbove / MoveBelow API change only native side layer order.
It didn't apply to the window who hold this layer.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Mon, 6 Mar 2023 14:20:49 +0000 (23:20 +0900)]
[NUI] Remove duplicate URL settup
When we create ImageView with url, It will create image visual twice.
To avoid this situation, make we replace internal url value for
creation time.
And also, setup some missing values when we inputed desired size.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
TizenAPI-Bot [Tue, 7 Mar 2023 01:52:01 +0000 (01:52 +0000)]
Release 11.0.0.17725
TizenAPI-Bot [Tue, 7 Mar 2023 01:52:01 +0000 (01:52 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
joogab.yun [Mon, 6 Mar 2023 09:40:34 +0000 (18:40 +0900)]
[NUI] Add getter property about WindowPositionSizeWithBorder and WindowSizeWithBorder
In the case of a border window, the size including the border area is required.
TizenAPI-Bot [Mon, 6 Mar 2023 11:20:15 +0000 (11:20 +0000)]
Release 11.0.0.17724
TizenAPI-Bot [Mon, 6 Mar 2023 11:20:15 +0000 (11:20 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
seungho baek [Mon, 6 Mar 2023 10:27:30 +0000 (19:27 +0900)]
[NUI] Version up 22216
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
Eunki, Hong [Mon, 6 Mar 2023 08:45:51 +0000 (17:45 +0900)]
[NUI] Remove duplicate size setter
When if we set View.Size, It will call WidthPolicy / HeightPolicy internal.
And then it will call SizeWidth and SizeHeight.
This patch ignore some duplicated size setting each other.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
joogab.yun [Mon, 6 Mar 2023 05:29:34 +0000 (14:29 +0900)]
[NUI] Add Dispose to LongPressGestureDetector and modify ReleaseSwigCPtr.
Wonsik Jung [Fri, 3 Mar 2023 05:41:13 +0000 (14:41 +0900)]
[NUI] Fix SetInputRegion binding
Fix SetInputRegion binding function with correct internal function.
Because previous binded with includedRegion.
Xianbing Teng [Tue, 22 Nov 2022 09:38:55 +0000 (17:38 +0800)]
[XamlBuild] Fix extents convert issue
Xianbing Teng [Thu, 2 Mar 2023 10:48:00 +0000 (18:48 +0800)]
[NUI] Fix dispose xaml elements
Eunki, Hong [Tue, 28 Feb 2023 05:53:06 +0000 (14:53 +0900)]
[NUI][Samples] Add .sln file to load projects
To make we build by Visual Studio in Windows OS,
Add some sln files that we can build it.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki Hong [Fri, 17 Feb 2023 17:00:57 +0000 (02:00 +0900)]
[NUI][Scene3D] Use Model defined camera
Make API that we can use gltf model file defined camera.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Jaehyun Cho [Thu, 23 Feb 2023 08:01:30 +0000 (17:01 +0900)]
[NUI] Fix Menu not to show Content if there is no menu item
Menu.Content is a container of menu items.
Previously, Menu.Content was displayed even if there is no menu item.
Now, Menu.Content is displayed only if menu item exists.
Taehyub Kim [Tue, 14 Feb 2023 12:28:14 +0000 (21:28 +0900)]
DragAndDrop : don't reuse drag window
TizenAPI-Bot [Tue, 21 Feb 2023 11:14:27 +0000 (11:14 +0000)]
Release 11.0.0.17714
TizenAPI-Bot [Tue, 21 Feb 2023 11:14:27 +0000 (11:14 +0000)]
Merge remote-tracking branch 'origin/master' into tizen
Eunki, Hong [Tue, 21 Feb 2023 10:32:40 +0000 (19:32 +0900)]
[NUI] Version up 22214
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Taehyub Kim [Tue, 21 Feb 2023 07:41:28 +0000 (16:41 +0900)]
[NUI] DragAndDrop : Add multi-window sample
Jaehyun Cho [Tue, 21 Feb 2023 03:06:47 +0000 (12:06 +0900)]
[NUI] Resize slider normal thumb to calculate thumb position correctly
Previously, slider thumb size for normal and pressed were different.
This caused that the thumb position was calculated incorrectly.
Now, slider thumb for normal is resized to be the same with the thumb
for pressed.
By the above, the thumb position is calculated correctly.
Jiyun Yang [Tue, 21 Feb 2023 01:02:05 +0000 (10:02 +0900)]
[NUI] Fix Pagination bug
* Bug: When user changes indicator image url, all indicators turn into unselected look.
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
EverLEEst(SangHyeon Lee) [Mon, 20 Feb 2023 11:28:45 +0000 (20:28 +0900)]
[NUI][NUITizenGallery] fix build error.
Jaehyun Cho [Mon, 20 Feb 2023 08:47:32 +0000 (17:47 +0900)]
[NUI] Fix to remove Button's min size
To support button size set by user, Button's min size is removed.
Jiyun Yang [Mon, 20 Feb 2023 05:47:18 +0000 (14:47 +0900)]
[NUI] Fix Progress and improve Loading
* Progress
Previously, the Progress did not update the distance of the indeterminate animation on resize.
* Loading
Add a property that can help to set lottie animation image url.
This is for using Theme.
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Jiyun Yang [Fri, 17 Feb 2023 08:51:57 +0000 (17:51 +0900)]
[NUI] Fix button bugs and improve switch.
* Button's IconOrientation bug
In the previous code, when the IconOrientation property changed,
the LayoutItems() was called and it created a new layout.
But in case the button was inside another layout, the behaviour
described above caused unexpect look. Therefore I fixed it
by changing orientation related properties to the existing layout
instead of creating a new layout.
* Improve switch and extension relationship
The switch extension does not register any event handler to the switch components anymore.
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Eunki, Hong [Fri, 17 Feb 2023 06:34:26 +0000 (15:34 +0900)]
[NUI.Scene3D] Change native default camera create API
Change default camera generate API as 3D engine style.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Seoyeon2Kim [Fri, 17 Feb 2023 03:57:02 +0000 (12:57 +0900)]
[NUI] Fix Slider ValueIndicatorImage and Thumb size (#5002)
- Update Slider ValueIndicatorImage / Text to change its size depending
on the content.
- Thumb size uses natural size of its image size.
- Update Slider style guide sample for ValueIndicator
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>