platform/core/csapi/tizenfx.git
2 months ago[NUI] Unified native singleton class instance getter
Eunki Hong [Tue, 20 Feb 2024 16:30:12 +0000 (01:30 +0900)]
[NUI] Unified native singleton class instance getter

There was 2 way to get sigleton class - `Get()` method and `Instance` proeprty.

After merge #5683 PR, some singleton class' `Get()` method register registry at that moment.
If someone call `Instance` after `Get()` call, the singleton class become GC, due to unknown reason.

To avoid this cases, let we make `Get()` method also use `Instance` property internally, and deprecate
that method.

For watch the trends after change the singletone pattern, let we just print error log if some
NUI developer implement wrong way in future.

+

Furthermore, there was some issue when we get Instance and call Dispose().
This is strance behavior. So let we just print error log and don't allow Dispose it.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
2 months ago[NUI] Make DisposeRecursively() full search of children list even if Disposed
Eunki Hong [Wed, 21 Feb 2024 16:05:10 +0000 (01:05 +0900)]
[NUI] Make DisposeRecursively() full search of children list even if Disposed

There was guad code when we traversal children list.
There was some bugs when we traversal disposed item. But now, this bug is not happend.

To make the behavior match with comment, let we recursive the tree even if self is disposed.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
2 months ago[NUI] Do not remove once event when we dispose
Eunki, Hong [Tue, 27 Feb 2024 05:05:49 +0000 (14:05 +0900)]
[NUI] Do not remove once event when we dispose

Remove event from global static handler is heavy operation.

We can detach whether the view is disposed or not.
So just check disposed is more chip rather than remove event callback.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
2 months agoAdd State property of NUIApplication (#5989)
huiyu [Wed, 13 Mar 2024 01:40:56 +0000 (10:40 +0900)]
Add State property of NUIApplication (#5989)

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
2 months ago[NUI.Scene3D] Add CastShadow and ReceiveShadow for Model and ModelNode (#5987)
huiyu [Wed, 13 Mar 2024 01:14:45 +0000 (10:14 +0900)]
[NUI.Scene3D] Add CastShadow and ReceiveShadow for Model and ModelNode (#5987)

- CastShadow can be used to make an object cast shadow or not.
 - ReceiveShadow can be used to make an object be not drawn any shadow on its surface.
 - Model and ModelNode have the methods.
 - If Model's method is called, it is inherited to its current child ModelNode.
 - If ModelNode's method is called, it is only affects the ModelNode itself.
 - The ModelNode's property changes do not affect its parent Model's property.

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
3 months ago[NUI] Version up 22314
Jaehyun Cho [Tue, 12 Mar 2024 06:16:45 +0000 (15:16 +0900)]
[NUI] Version up 22314

3 months ago[NUI] Version up 22313
Jiyun Yang [Wed, 6 Mar 2024 06:25:46 +0000 (15:25 +0900)]
[NUI] Version up 22313

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 months ago[NUI] Fix SVACE issue
dongsug.song [Tue, 5 Mar 2024 07:07:32 +0000 (16:07 +0900)]
[NUI] Fix SVACE issue

3 months agoAdd NUI Interop used in flux component
Jay Cho [Fri, 12 Jan 2024 06:00:03 +0000 (15:00 +0900)]
Add NUI Interop used in flux component

3 months agoAdd NUI Interops used in flux
Jay Cho [Thu, 11 Jan 2024 08:24:02 +0000 (17:24 +0900)]
Add NUI Interops used in flux

3 months agoBring back some interops
Jay Cho [Wed, 10 Jan 2024 07:03:44 +0000 (16:03 +0900)]
Bring back some interops

3 months agoRemove Not Referenced APIs
Jay Cho [Tue, 9 Jan 2024 08:24:02 +0000 (17:24 +0900)]
Remove Not Referenced APIs

3 months ago[NUI] Version up 22312
Seoyeon Kim [Tue, 27 Feb 2024 07:17:03 +0000 (16:17 +0900)]
[NUI] Version up 22312

Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
3 months ago[NUI] Fix WeakEvent bugs
Jiyun Yang [Wed, 21 Feb 2024 11:22:42 +0000 (20:22 +0900)]
[NUI] Fix WeakEvent bugs

* Checks that target object is explicitly disposed but not collected yet before invoke
* Consider list item removal/addition while traversing for invoke
* WeakHandler Equal method works well in static case
* Cleanup dead handlers not everytime

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 months ago[NUI] Add backendMode to the DirectRenderingGLView constructor.
joogab.yun [Thu, 22 Feb 2024 05:02:50 +0000 (14:02 +0900)]
[NUI] Add backendMode to the DirectRenderingGLView constructor.

refer code :
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-core/+/306186/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-adaptor/+/305990/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-toolkit/+/306191/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-demo/+/305991/

3 months ago[NUI.Components] Guard more cases when Container disposed
Eunki Hong [Wed, 21 Feb 2024 16:35:56 +0000 (01:35 +0900)]
[NUI.Components] Guard more cases when Container disposed

It might be possible if Container is disposed before ScrollBase disposed.

If then, Several logics breakdown.

Note : Since ScrollBase is time critical logics. So it is heavy to ensure the Container exist
at every Container usage.

Instead, let we just check Container is null at `OnScrollAnimationEnded` only,
which user can call immediatly by `Dispose()` API.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
3 months ago[MediaController] Remove deprecated server API (#5942)
Haesu Gwon [Tue, 27 Feb 2024 02:30:40 +0000 (11:30 +0900)]
[MediaController] Remove deprecated server API (#5942)

3 months ago[Connection] Use lock for event (#5971)
chleun-moon [Thu, 22 Feb 2024 05:34:25 +0000 (14:34 +0900)]
[Connection] Use lock for event (#5971)

3 months agoVersion up 22311
Woochan Lee [Tue, 20 Feb 2024 07:38:56 +0000 (16:38 +0900)]
Version up 22311

3 months ago[NUI] Make view-wrapper signal input as weak handle
Eunki, Hong [Thu, 1 Feb 2024 07:47:34 +0000 (16:47 +0900)]
[NUI] Make view-wrapper signal input as weak handle

Since we don't need to control the ownership of native memory at callback side,
let we just keep whole input value memory ownership as false.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
3 months ago[NUI] Support FrameUpdateCallback get world transform
Eunki, Hong [Tue, 30 Jan 2024 11:06:43 +0000 (20:06 +0900)]
[NUI] Support FrameUpdateCallback get world transform

Let we bind some more codes that UpdateProxy in dali side already supported.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
3 months ago[NUI] Allow to use null rootView for FrameUpdateCallback + Let we use null rootView...
Eunki, Hong [Mon, 29 Jan 2024 03:39:19 +0000 (12:39 +0900)]
[NUI] Allow to use null rootView for FrameUpdateCallback + Let we use null rootView if we use default API

Let we use some global view controllable frameUpdateCallback when
user skip to add RootView information.

Previously, we detach the frameUpdateCallback automatically if rootView was disposed.
But now, we will never remove callback until user call RemoveFrameUpdateCallback.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
3 months ago[NUI] Call Mashal.FreeHGlobal() what we allocated
Eunki Hong [Tue, 23 Jan 2024 12:47:43 +0000 (21:47 +0900)]
[NUI] Call Mashal.FreeHGlobal() what we allocated

Let we free allocated heap memory by Mashal.

It might cause memory leak issue if user try to use VertexBuffer.

And also, let we also fix FrameBrokerBase implementation
that might be the guideline who want to use custom Geometry class.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
3 months ago[NUI.Sample] Resolve memory leak for DisposeTest sample
Eunki Hong [Sun, 21 Jan 2024 04:38:43 +0000 (13:38 +0900)]
[NUI.Sample] Resolve memory leak for DisposeTest sample

There was leak issue since we don't call FreeHGlobal after AllocHGlobal.

And also, let we Dispose Renderer / Geometry / Shader / TextureSet what NUI create.
Those classes memory might give confuse when we test the memory.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
3 months ago[NUI] Fix error if LottieAnimationView set BackgroundData before set URL
Eunki, Hong [Thu, 15 Feb 2024 06:23:23 +0000 (15:23 +0900)]
[NUI] Fix error if LottieAnimationView set BackgroundData before set URL

Since LottieAnimationView.URL property change whole Visual property by itself,
CornerRadius / Borderline properties become ignored when we set URL.

To avoid this case, let we ensure to set CornerRadius / Borderline if we set URL

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
3 months ago[MediaContent] Add missing deprecation description (#5957)
Haesu Gwon [Tue, 20 Feb 2024 05:10:41 +0000 (14:10 +0900)]
[MediaContent] Add missing deprecation description (#5957)

* [MediaContent] Add missing deprecation description

* [MediaContent] Add other missing deprecation description

3 months ago[Camera] Fix CameraDeviceManager bug (#5959)
Haesu Gwon [Tue, 20 Feb 2024 04:38:10 +0000 (13:38 +0900)]
[Camera] Fix CameraDeviceManager bug (#5959)

3 months ago[ImageUtil] Remove deprecated API and change native pinvoke APIs (#5950)
Haesu Gwon [Tue, 20 Feb 2024 01:54:47 +0000 (10:54 +0900)]
[ImageUtil] Remove deprecated API and change native pinvoke APIs (#5950)

4 months ago[MediaContent] Deprecate meaningless media group enum (#5939)
Haesu Gwon [Wed, 14 Feb 2024 08:31:48 +0000 (17:31 +0900)]
[MediaContent] Deprecate meaningless media group enum (#5939)

* [MediaContent] Deprecate meaningless media group enum

4 months agoVersion up 22310
joogab.yun [Tue, 13 Feb 2024 06:47:14 +0000 (15:47 +0900)]
Version up 22310

4 months ago[NUI] Enable relayout only when layout is set for the layer.
joogab.yun [Tue, 6 Feb 2024 07:02:08 +0000 (16:02 +0900)]
[NUI] Enable relayout only when layout is set for the layer.

If you do not check this, all views on layers that do not have a layout set will be searched unnecessarily.

4 months ago[Camera] Add new Camera constructor for camera device internal selection (#5941)
Haesu Gwon [Tue, 6 Feb 2024 07:51:51 +0000 (16:51 +0900)]
[Camera] Add new Camera constructor for camera device internal selection (#5941)

4 months ago[MediaContent] Deprecate infrequent meta fields (#5915)
Haesu Gwon [Mon, 5 Feb 2024 07:09:50 +0000 (16:09 +0900)]
[MediaContent] Deprecate infrequent meta fields (#5915)

4 months ago[NUI.WindowSystem] Add new API GetSourceMimetypes of KVMService
Junseok Kim [Fri, 26 Jan 2024 13:35:11 +0000 (22:35 +0900)]
[NUI.WindowSystem] Add new API GetSourceMimetypes of KVMService

KVMService.GetSourceMimetypes() returns mimetype list that current drag source offered.

4 months agoVersion up 22308
ANZ1217 [Wed, 31 Jan 2024 07:40:20 +0000 (16:40 +0900)]
Version up 22308

4 months ago[NUI] Add methods to modify base theme for fhub and fix bugs
Jiyun Yang [Tue, 30 Jan 2024 05:02:50 +0000 (14:02 +0900)]
[NUI] Add methods to modify base theme for fhub and fix bugs

* Add ThemeManager.AppendBaseTheme : It enables outer package to modify base theme
* Add SharedResourcePathExtension for xaml supporting
* Fix the bug that broken images in a theme always overwrite existing settings
* Fix the bug that cloning a view style losts SolidNull information.

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
4 months agoFix CollectionView LinearLayout move overlapped issue
EverLEEst(SangHyeon Lee) [Wed, 24 Jan 2024 11:51:15 +0000 (20:51 +0900)]
Fix CollectionView LinearLayout move overlapped issue

4 months ago[NUI] Fix LinearLayout to update its child's MeasuredSizeHeight 0 correctly
Jaehyun Cho [Wed, 24 Jan 2024 09:44:22 +0000 (18:44 +0900)]
[NUI] Fix LinearLayout to update its child's MeasuredSizeHeight 0 correctly

LinearLayout updates its child's MeasuredSizeWidth 0 correctly but it
does not update its child's MeasuredSizeHeight 0 due to the range typo.

The range typo has been fixed so child's MeasuredSizeHeight 0 is also
handled correctly.

4 months ago[Packagemanager] Fix SetPackageManagerEventStatus (#5928)
ilho159kim [Wed, 31 Jan 2024 11:02:47 +0000 (20:02 +0900)]
[Packagemanager] Fix SetPackageManagerEventStatus (#5928)

Since native API internally unregister event and register event
so fix it to actually set event only when necessary

Signed-off-by: Ilho Kim <ilho159.kim@samsung.com>
4 months ago[Multimedia] Add a new constructor of Display to remove dependency of UI frameworks...
Seungkeun Lee [Mon, 29 Jan 2024 06:52:04 +0000 (15:52 +0900)]
[Multimedia] Add a new constructor of Display to remove dependency of UI frameworks (#5738)

* Add a new constructor of Display to remove depenendcy of UI frameworks

* Rename property

* Apply review comment

---------

Co-authored-by: Jay Cho <chojoong@gmail.com>
4 months ago[NUI.Gadget] Remove Unload() method (#5918)
hjhun [Fri, 26 Jan 2024 05:35:22 +0000 (14:35 +0900)]
[NUI.Gadget] Remove Unload() method (#5918)

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
4 months ago[NUI.Gadget] Change assembly load mothod (#5914)
hjhun [Fri, 26 Jan 2024 00:12:44 +0000 (09:12 +0900)]
[NUI.Gadget] Change assembly load mothod (#5914)

- Use LoadFromNativeImagePath() instead of LoadFromStream()

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
4 months ago[NUI.Gadget] Modify NUIGadget implementation (#5912)
hjhun [Thu, 25 Jan 2024 04:03:33 +0000 (13:03 +0900)]
[NUI.Gadget] Modify NUIGadget implementation (#5912)

The mount path is changed to the directory path of the executable file.
The environment variable related to resource package IDs is changed to
"GADGET_PKGIDS".

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
4 months ago[NUI] Version up 22307
Bowon Ryu [Wed, 24 Jan 2024 06:25:54 +0000 (15:25 +0900)]
[NUI] Version up 22307

Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
4 months ago[NUI] Do not check theme applied flag when set ThemeChangeSensitive
Jiyun Yang [Thu, 18 Jan 2024 06:58:36 +0000 (15:58 +0900)]
[NUI] Do not check theme applied flag when set ThemeChangeSensitive

New theme can affect to the views that were not affected by previous theme.

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
4 months ago[NUI] Add some remarks at BaseHandle class about Dispose
Eunki Hong [Fri, 19 Jan 2024 04:04:36 +0000 (13:04 +0900)]
[NUI] Add some remarks at BaseHandle class about Dispose

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
4 months ago[NUI] Fix some incorrect implements when we get Texture relative items
Eunki Hong [Fri, 19 Jan 2024 01:28:11 +0000 (10:28 +0900)]
[NUI] Fix some incorrect implements when we get Texture relative items

Since now we have a unified pattern to avoid memory leak problem
between NUI and Native side handle count problem,
Let we change some mis-implementated codes relative with Texture.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
4 months ago[NUI.Gadget] Implement Unload() method (#5897)
hjhun [Wed, 24 Jan 2024 04:25:35 +0000 (13:25 +0900)]
[NUI.Gadget] Implement Unload() method (#5897)

To unload the loaded assembly, NUIGadgetManager.Unload() method is
added.

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
4 months ago[Packagemanager] Throw an exception when failed to add event listener (#5886)
jeremy-jang [Tue, 23 Jan 2024 06:41:48 +0000 (15:41 +0900)]
[Packagemanager] Throw an exception when failed to add event listener (#5886)

* [Packagemanager] Throw an exception when failed to add event listener

Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
* Fix doxygen comment

Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
---------

Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
4 months ago[StreamRecorder] Remove module (#5881)
Haesu Gwon [Fri, 19 Jan 2024 06:08:42 +0000 (15:08 +0900)]
[StreamRecorder] Remove module (#5881)

4 months ago[ACR-564] deprecate unused API
dongsug.song [Mon, 11 Dec 2023 12:07:14 +0000 (21:07 +0900)]
[ACR-564] deprecate unused API

5 months ago[NUI] Version up 22306 (#5883)
Wonsik Jung [Tue, 16 Jan 2024 01:08:47 +0000 (10:08 +0900)]
[NUI] Version up 22306 (#5883)

5 months ago[NUI] Allow to call FrameUpdate callback return value
Eunki, Hong [Mon, 8 Jan 2024 09:01:41 +0000 (18:01 +0900)]
[NUI] Allow to call FrameUpdate callback return value

DALi's FrameUpdateCallback have interface whether we need to update scene or not.
Previously, we always return it as false.
It might make some render / update timing issue when App is paused.

To make ensure whether we need to update scene or not,
Let we override the new API that app can control the return value.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
5 months ago[NUI] Add test for PropertyMap
Jay Cho [Fri, 5 Jan 2024 07:12:15 +0000 (16:12 +0900)]
[NUI] Add test for PropertyMap

5 months ago[Tizen.WebView][TCSACR-568] Remove Tizen.WebView (#5832)
Young [Thu, 11 Jan 2024 01:55:52 +0000 (10:55 +0900)]
[Tizen.WebView][TCSACR-568] Remove Tizen.WebView (#5832)

Tizen.WebView was deprecated since API Level 10, so it is removed in API
Level 12.

Signed-off-by: yh106.jung <yh106.jung@samsung.com>
5 months ago[Actions] Update deploy packages (#5879)
sung-su.kim [Wed, 10 Jan 2024 01:23:29 +0000 (10:23 +0900)]
[Actions] Update deploy packages (#5879)

5 months ago[NUI] Version up 22305.
jykeon [Tue, 9 Jan 2024 06:07:34 +0000 (15:07 +0900)]
[NUI] Version up 22305.

Signed-off-by: jykeon <jykeon@samsung.com>
5 months ago[NUI] Fix some SVACE issues.
zhouhao [Fri, 5 Jan 2024 07:46:33 +0000 (15:46 +0800)]
[NUI] Fix some SVACE issues.

5 months ago[NUI] Do not recreate visual when we change ImageColor only
Eunki Hong [Wed, 3 Jan 2024 16:44:02 +0000 (01:44 +0900)]
[NUI] Do not recreate visual when we change ImageColor only

Since we don't need to re-create the visual if we only chage the ImageColor property,
let we use UpdateProperty Action.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
5 months ago[NUI] Initialize C# items if required
Eunki, Hong [Thu, 14 Dec 2023 02:44:43 +0000 (11:44 +0900)]
[NUI] Initialize C# items if required

We have create ProcessorController constructor without initalize as default.

If NUI core want to change this policy, we can initialize at constructor time.
But this case code has some error. It didn't create C# side objects and only create
native side.

Let we make constructor with initialize works well now.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
5 months ago[NUI] Support NativeImageQueue creation with queue count
Eunki Hong [Sun, 31 Dec 2023 01:35:16 +0000 (10:35 +0900)]
[NUI] Support NativeImageQueue creation with queue count

Let we allow to create NativeImageQueue with queue count.
Previously, we only allow to create the NativeImageQueue based on the environment value "DALI_TBM_SURFACE_QUEUE_SIZE".
(This value is 3 as default)

It will be useful if some user want to reduce the queue count for some cases, not for whole queue.

relative DALi patches :

https://review.tizen.org/gerrit/c/platform/core/uifw/dali-adaptor/+/303523
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-csharp-binder/+/303524

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
5 months ago[NUI] Fix svace issue of Marshal.Copy
Xianbing Teng [Mon, 18 Dec 2023 12:03:31 +0000 (20:03 +0800)]
[NUI] Fix svace issue of Marshal.Copy

5 months ago[NUI] Fix text padding issue
Bowon Ryu [Fri, 29 Dec 2023 06:06:24 +0000 (15:06 +0900)]
[NUI] Fix text padding issue

This patch solves the problem that text with padding does not work in nui layout.

For text components, the control's padding is used to calculatie size in native,
so it should not be set to zero value.

This avoids setting padding to zero when it comes to text layout.

Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
5 months ago[Tizen.Network.WiFi] Add APIs for multi-scanning (#5872)
akash1-kumar [Tue, 9 Jan 2024 07:20:21 +0000 (12:50 +0530)]
[Tizen.Network.WiFi] Add APIs for multi-scanning (#5872)

Signed-off-by: Akash Kumar <akash1.kumar@samsung.com>
5 months ago[MediaContent] Deprecate underutilized fields (#5850)
Haesu Gwon [Mon, 8 Jan 2024 06:20:21 +0000 (15:20 +0900)]
[MediaContent] Deprecate underutilized fields (#5850)

5 months ago[Metadata] Deprecate MetadataEditor module (#5837)
Haesu Gwon [Thu, 4 Jan 2024 01:42:40 +0000 (10:42 +0900)]
[Metadata] Deprecate MetadataEditor module (#5837)

* [Metadata] Deprecate MetadataEditor module

5 months ago[NUI] Add EnableFrameCache in LottieAnimationView
sunghyun kim [Thu, 30 Nov 2023 03:48:29 +0000 (12:48 +0900)]
[NUI] Add EnableFrameCache in LottieAnimationView

5 months ago[MediaVision] Change feature key of inference face recognition (#5802)
Haesu Gwon [Tue, 2 Jan 2024 05:55:38 +0000 (14:55 +0900)]
[MediaVision] Change feature key of inference face recognition (#5802)

* [MediaVision] Change feature key of inference face recognition

5 months ago[MediaController] Add new API to check Response request (#5672)
Haesu Gwon [Tue, 2 Jan 2024 01:17:58 +0000 (10:17 +0900)]
[MediaController] Add new API to check Response request (#5672)

* [MediaController] Add new API to check Response request

5 months ago[NUI] Version Update (22304)
sunghyun kim [Wed, 27 Dec 2023 07:32:37 +0000 (16:32 +0900)]
[NUI] Version Update (22304)

5 months ago[NUI] Fix Navigator to support Page with Transitions
Jaehyun Cho [Wed, 27 Dec 2023 04:15:30 +0000 (13:15 +0900)]
[NUI] Fix Navigator to support Page with Transitions

Previously, PushWithTransition and PopWithTransition did not support
Page. It supported either ContentPage or DialogPage.

Now, PushWithTransition and PopWithTransition supports Page as well.

5 months ago[NUI] Add DepthIndex in Material
seungho baek [Wed, 6 Dec 2023 06:33:49 +0000 (15:33 +0900)]
[NUI] Add DepthIndex in Material

Signed-off-by: seungho baek <sbsh.baek@samsung.com>
5 months ago[NUI] Add AnchorColor Property
Bowon Ryu [Mon, 18 Dec 2023 10:27:33 +0000 (19:27 +0900)]
[NUI] Add AnchorColor Property

AnchorColor(or AnchorClickedColor) property is
used as the default color of the markup anchor tag.

If there is a color attribute in the markup anchor tag,
the markup attribute takes precedence.

https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-toolkit/+/302984/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/302985/

Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
5 months ago[NUI] Revert dispose synchronously logic when APP is not started
Eunki Hong [Mon, 18 Dec 2023 07:23:21 +0000 (16:23 +0900)]
[NUI] Revert dispose synchronously logic when APP is not started

We add some logic to dispose items when application created & disposed
before application initialized.

But some app just have some issue when some thread dependency items disposed
before application started.

To avoid this cases, let we block dispose sync logic and revert we always
dispose queue ensure in main thread.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
5 months ago[NUI] Version Update (22303)
jmm [Mon, 18 Dec 2023 07:13:45 +0000 (16:13 +0900)]
[NUI] Version Update (22303)

5 months ago[NUI] DragAndDrop : Allow to get mimetype for Enter and Move events
Taehyub Kim [Tue, 12 Dec 2023 09:48:48 +0000 (18:48 +0900)]
[NUI] DragAndDrop : Allow to get mimetype for Enter and Move events

6 months ago[NUI] Version Update (22302)
seungho baek [Mon, 11 Dec 2023 06:12:41 +0000 (15:12 +0900)]
[NUI] Version Update (22302)

Signed-off-by: seungho baek <sbsh.baek@samsung.com>
6 months ago[NUI] Add API for ProcessController without Initialize
Eunki, Hong [Mon, 11 Dec 2023 04:21:42 +0000 (13:21 +0900)]
[NUI] Add API for ProcessController without Initialize

To keep the backword stability, let we use previous API (CSharp_Dali_new_ProcessorController) call Initialize internally
and new API (CSharp_Dali_new_ProcessorController_Without_Initialize) will not call this.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
6 months ago[NUI] Make we flush DisposeQueue before app start
Eunki, Hong [Mon, 11 Dec 2023 03:09:39 +0000 (12:09 +0900)]
[NUI] Make we flush DisposeQueue before app start

If we don't call DisposeQueue.Instance.Initialize(), it might not flush
the dispose queue.

Before #5806 and until currently, we didn't allow to call ProcessDisposables()
before Initialize(). It might occure memory leak if app try to create & dispose
unlimitly before Application start.

To make ensure it, let we make ProcessDisposables() API can be called even if
DisposeQueue is not initialized.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
6 months ago[NUI] Skip text getter when Text never setted before
Eunki Hong [Thu, 7 Dec 2023 16:59:37 +0000 (01:59 +0900)]
[NUI] Skip text getter when Text never setted before

If we never set text into TextLabel before, the result of Text propert getter is always empty.
To avoid useless C# - native network, let we just ignore text getter function if we can assume that previous text was empty.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
6 months ago[NUI] Make ensure ImageView._resourceUrl is latest
Eunki Hong [Thu, 7 Dec 2023 16:59:37 +0000 (01:59 +0900)]
[NUI] Make ensure ImageView._resourceUrl is latest

Previous code didn't assume that _resourceUrl value of ImageView was not a latest.

 - If we set ImageView by ```Image``` property, the _resourceUrl was updated when cached map updating.
 - When we try to get ResourceUrl gettor, we ask to cached map always.

But PropertyValue.Get(out string) might spend long time if the URL length is long.
It will make useless string copy, what we can reduce.

Now We make every logic make ensure that _resourceUrl stored valid resource url.
If this is validated, we can reduce some C# - Native networking.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
6 months ago[NUI] Dispose queue incrementally
Eunki Hong [Wed, 6 Dec 2023 16:12:33 +0000 (01:12 +0900)]
[NUI] Dispose queue incrementally

Let we dispose IDisposable incrementally, not immediately.

It will reduce the main thread blocking during Dispose by GC.

To make the behavior didn't changed as before, let we make
FullGC as defalt. And turn on incremental GC feature if someone need.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
6 months ago[NUI.Scene3D] Remove build warning
Eunki Hong [Wed, 6 Dec 2023 17:36:44 +0000 (02:36 +0900)]
[NUI.Scene3D] Remove build warning

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
6 months ago[Build] Update docker image version (#5808)
shmin [Thu, 7 Dec 2023 03:22:14 +0000 (12:22 +0900)]
[Build] Update docker image version (#5808)

6 months agoUpdate docker image version (#5801)
shmin [Tue, 5 Dec 2023 10:23:50 +0000 (19:23 +0900)]
Update docker image version (#5801)

6 months ago[NoACR][MachineLearning.Inference] Fix bug using wrong handle
Yelin Jeong [Tue, 5 Dec 2023 08:04:19 +0000 (17:04 +0900)]
[NoACR][MachineLearning.Inference] Fix bug using wrong handle

This patch fixes the bug which use wrong handle.
GetTensorsCount should use TensorsInfo handle instead of TensorsData handle.

Signed-off-by: Yelin Jeong <yelini.jeong@samsung.com>
6 months ago[NUI] version update (22301)
Bowon Ryu [Tue, 5 Dec 2023 07:24:13 +0000 (16:24 +0900)]
[NUI] version update (22301)

Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
6 months ago[NUI] Add log for ClearFocus
joogab.yun [Tue, 5 Dec 2023 06:14:52 +0000 (15:14 +0900)]
[NUI] Add log for ClearFocus

6 months ago[NUI] Support RootTranslationOnly option for motion capture data
seungho baek [Tue, 21 Nov 2023 07:27:01 +0000 (16:27 +0900)]
[NUI] Support RootTranslationOnly option for motion capture data

Signed-off-by: seungho baek <sbsh.baek@samsung.com>
6 months ago[NUI] Fix some SVACE issues.
zhouhao02 [Fri, 1 Dec 2023 06:07:21 +0000 (14:07 +0800)]
[NUI] Fix some SVACE issues.

6 months ago[NUI] Add SetResolution method to SceneView
seungho baek [Thu, 30 Nov 2023 02:18:55 +0000 (11:18 +0900)]
[NUI] Add SetResolution method to SceneView

Signed-off-by: seungho baek <sbsh.baek@samsung.com>
6 months ago[NUI] Added collider mesh support (#5782)
huiyu [Fri, 1 Dec 2023 07:16:30 +0000 (16:16 +0900)]
[NUI] Added collider mesh support (#5782)

* [NUI] Added collider mesh support

Model.SetColliderMesh() function allows creating and setting a collider mesh on the node of model.

Node of model is selected by name (string).
Collider mesh data consists:
List<Vector3> - list of vertices
List<int> - list of indices (3 indices are a triangle face)

* Modify issue

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
---------

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
Co-authored-by: Adam Bialogonski <adam.b@samsung.com>
6 months ago[Packagemanager] Fix Tizen.Applications.Package for performance (#5778)
jeremy-jang [Tue, 5 Dec 2023 02:22:50 +0000 (11:22 +0900)]
[Packagemanager] Fix Tizen.Applications.Package for performance (#5778)

Adjust lazy initialization on DependencyFrom, Certificate property.
These properties need additional IPC platform internally, so make these
property initialized lazily for performance.

Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
Co-authored-by: pjh9216 <jh9216.park@samsung.com>
6 months ago[Bluetooth] Fix BluetoothProfileType enum mismatch issue (#5785)
Wootak Jung [Mon, 4 Dec 2023 23:51:57 +0000 (08:51 +0900)]
[Bluetooth] Fix BluetoothProfileType enum mismatch issue (#5785)

BluetoothProfileType enum does not match native bt_profile_e enum.

Signed-off-by: Wootak Jung <wootak.jung@samsung.com>
6 months agoFix defect that is detected by static analisys tool
wn.jang [Mon, 4 Dec 2023 09:40:12 +0000 (18:40 +0900)]
Fix defect that is detected by static analisys tool

There is a portential problem with the code involving the variable 'e.OldItems'.
This variable is the result of a method invocation, and the tool is warning that the method
might return a null value, which can cause deferencing a null reference.
It might cause to crash or behave unpredictably.

Therefore, to prevent this, the variable 'e.OldItems' should be checked if it is null or not before use.

6 months agoDeprecating Attach Panel APIs (#5768) accepted/tizen/unified/20231205.024657
tarunkumarmahay1999 [Thu, 30 Nov 2023 02:41:23 +0000 (08:11 +0530)]
Deprecating Attach Panel APIs (#5768)

Co-authored-by: Jay Cho <chojoong@gmail.com>
6 months agoNUI version 22300 (#5779)
huiyu [Wed, 29 Nov 2023 05:38:24 +0000 (14:38 +0900)]
NUI version 22300 (#5779)

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
6 months ago[NUI] Add DispatchWheelEvents and DispatchPrentWheelEvents
joogab.yun [Mon, 27 Nov 2023 04:24:01 +0000 (13:24 +0900)]
[NUI] Add DispatchWheelEvents and DispatchPrentWheelEvents

If DispatchWheelEvents sets false, view will not receive any WheelEvent including own.
If DispatchPrentWheelEvents sets false, the parent view does not receive WheelEvent.

6 months ago[NUI.Scene3D] Attach matched interop linker for RemoveModelPrimitive
Eunki, Hong [Fri, 24 Nov 2023 07:06:53 +0000 (16:06 +0900)]
[NUI.Scene3D] Attach matched interop linker for RemoveModelPrimitive

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
6 months ago[NUI] version update (22253)
EverLEEst(SangHyeon Lee) [Wed, 22 Nov 2023 07:06:08 +0000 (16:06 +0900)]
[NUI] version update (22253)