platform/core/csapi/tizenfx.git
7 months ago[NUI.WindowSystem] Add SetSecondarySelection and UnsetSecondarySelection to fix typo
Junseok Kim [Wed, 1 Nov 2023 05:27:06 +0000 (14:27 +0900)]
[NUI.WindowSystem] Add SetSecondarySelection and UnsetSecondarySelection to fix typo

Add new requests SetSecondarySelection and UnsetSecondarySelection to alternate requests
SetSecondarySelction and UnsetSecondarySelction that have typo.

After all caller that typo requests have been removed, the typo request have been removed.

7 months ago[Build] Fixed an error that could not find the dotnet_resolving.info file (#5701)
JongHeonChoi [Thu, 2 Nov 2023 01:49:52 +0000 (10:49 +0900)]
[Build] Fixed an error that could not find the dotnet_resolving.info file (#5701)

7 months agoUpdate nuspec to add net6.0 group (#5695)
Jay Cho [Thu, 2 Nov 2023 01:49:15 +0000 (10:49 +0900)]
Update nuspec to add net6.0 group (#5695)

7 months agoVersion up nui22250
Taehyub Kim [Mon, 30 Oct 2023 11:14:45 +0000 (20:14 +0900)]
Version up nui22250

7 months agoMake DaliAccessibilityDetachAccessibleObject called at main thread
Eunki, Hong [Mon, 30 Oct 2023 04:49:51 +0000 (13:49 +0900)]
Make DaliAccessibilityDetachAccessibleObject called at main thread

void Dispose(bool) can be called from worker thread, when disposing value is false.

To ensure we detach AccessibileObject in main thread, let we remove it
at Dispose(DisposeTypes), instead of Dispose(bool).

To avoid this kind of error in future, let we remove View.Dispose(bool)
and let we only use Dispose(DisposeTypes).

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoDo not register when we try to copy same handle
Eunki, Hong [Mon, 30 Oct 2023 03:21:46 +0000 (12:21 +0900)]
Do not register when we try to copy same handle

Since we register to registry by BaseObjectPtr(), it is impossible to
register duplicated handle.

So, actually, we have to deplicate copy BaseHandle constructor.
But for now, just make we don't register into registry now.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoTemperary revert exception throw at Registry.
Eunki, Hong [Mon, 30 Oct 2023 01:42:20 +0000 (10:42 +0900)]
Temperary revert exception throw at Registry.

Until resolve all kind of apps fix wrong behavior,
let we just print error without exception.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoMake it works on net6.0
Eunki Hong [Thu, 26 Oct 2023 16:48:39 +0000 (01:48 +0900)]
Make it works on net6.0

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
7 months agoResolve DisposeRecursively crashed when we dispose scrollbase
Eunki, Hong [Fri, 27 Oct 2023 09:47:55 +0000 (18:47 +0900)]
Resolve DisposeRecursively crashed when we dispose scrollbase

Due to some app's implements, ContentView can be disposed before ScrollBase
itself disposed. In this case, ContentView is not null.

So, when we try to call RemovePropertyNotification, it become crashed.

To avoid these cases, let we make DisposeRecursively API makes more safety.

And also, fix some crash issue in PerformanceTest1Page.xaml.cs what
can be problem in future.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoMake NativeImageQueue generate valid url
Eunki Hong [Thu, 26 Oct 2023 10:42:44 +0000 (19:42 +0900)]
Make NativeImageQueue generate valid url

Previously NativeImageQueue.GenerateUrl() binded to
invalid csharp API.

It will make some crash. So let we use valid bind API instead.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
7 months agoAdd KeepWidgetSize for control widget's size
sunghyun kim [Thu, 26 Oct 2023 02:30:58 +0000 (11:30 +0900)]
Add KeepWidgetSize for control widget's size

WidgetView keep widget instance's size and don't resize even if WidgetView is resized.

7 months agoVersion up nui22249
Eunki, Hong [Wed, 25 Oct 2023 07:32:47 +0000 (16:32 +0900)]
Version up nui22249

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoRemove build warning for Control.Preload()
Eunki Hong [Tue, 24 Oct 2023 14:20:08 +0000 (23:20 +0900)]
Remove build warning for Control.Preload()

We implement View.Preload() API now. So compiler can feel dizzy
which one is Control.Preload() should do.

To avoid this compilation warning, let we add 'new' keyword for it.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
7 months agoChange Accessibility.cs don't use net6.0 specific function
Eunki, Hong [Tue, 24 Oct 2023 08:26:26 +0000 (17:26 +0900)]
Change Accessibility.cs don't use net6.0 specific function

Let we minimize the net core dependency

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoSupports to set/get full screen sized window
Wonsik Jung [Tue, 24 Oct 2023 07:22:16 +0000 (16:22 +0900)]
Supports to set/get full screen sized window

To support set/get full screen sized window.
The full screen sized window means the window is resized with screen size.
In addition, this window is the z-order is the highest.

7 months agoFlush action implement for LottieAnimationView
Eunki, Hong [Tue, 24 Oct 2023 02:55:19 +0000 (11:55 +0900)]
Flush action implement for LottieAnimationView

Implement Flush action. It will be used when user
want to ensure the Lottie property changed applied sequencly.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoPreload some static values
Eunki, Hong [Tue, 24 Oct 2023 01:47:09 +0000 (10:47 +0900)]
Preload some static values

Since C# initialize static values when that namespace / class access first time,
We need to access some static values at static Preload() timing.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoBug fix when we get ModelNode from Model
Eunki, Hong [Mon, 23 Oct 2023 02:50:27 +0000 (11:50 +0900)]
Bug fix when we get ModelNode from Model

Since View constructor automatically change 'PositionUsesPivotPoint' value as false,
some logic might changed when we Register ModelNode newly.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoAdd an API to set offset for drag window
Taehyub Kim [Wed, 18 Oct 2023 11:07:38 +0000 (20:07 +0900)]
Add an API to set offset for drag window

7 months agoMake View.TooltipText return valid value
Eunki, Hong [Wed, 18 Oct 2023 07:16:27 +0000 (16:16 +0900)]
Make View.TooltipText return valid value

Let we remove useless error message + Make getter return valid setting value
for View.TooltipText property.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoMake AddFrameUpdateCallback with root view
Eunki, Hong [Wed, 18 Oct 2023 06:17:35 +0000 (15:17 +0900)]
Make AddFrameUpdateCallback with root view

Previously, we can only add the root view of FrameUpdateCallback as
root layer of window.

Now let we add some API that user can set specific view
for given FrameUpdateCallback will use.

This API will be used when we want to optimize callback behaviour.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoResolve registry issue for RenderTaskList
Eunki, Hong [Tue, 17 Oct 2023 06:24:58 +0000 (15:24 +0900)]
Resolve registry issue for RenderTaskList

After patch #5595 merged, there was some hidden bugs occured.
This PR is one of portential bug fix.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoFix the SVACE issue.
zhouhao02 [Tue, 17 Oct 2023 02:29:02 +0000 (10:29 +0800)]
Fix the SVACE issue.

7 months agoRemove build warning
Eunki Hong [Sun, 15 Oct 2023 01:13:11 +0000 (10:13 +0900)]
Remove build warning

- Add comment for public API
- Remove some unused private value/method

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
7 months agoResolve registry issue for CanvasView Gradient
Eunki, Hong [Fri, 13 Oct 2023 04:40:56 +0000 (13:40 +0900)]
Resolve registry issue for CanvasView Gradient

Since we always try to register to Registry for Gradient case,
there can make some error for Shape use case.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoResolve TextLable build warning
Eunki Hong [Thu, 12 Oct 2023 14:51:41 +0000 (23:51 +0900)]
Resolve TextLable build warning

Reference documents : https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/xmldoc/

To refer to XML elements (for example, your function processes specific XML elements that you want to describe in an XML documentation comment), you can use the standard quoting mechanism (&lt; and &gt;).

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
7 months agoFix Registry exception for custom view wrapper
Eunki Hong [Thu, 12 Oct 2023 14:24:45 +0000 (23:24 +0900)]
Fix Registry exception for custom view wrapper

1. PanGesture from Accessibility create new handle in
dali csharp side. We need to have memory ownership, but
don't need to register it on NUI side. We can ignore it.

2. For Animation and StyleManager, it is possible to use
that 'already registered' BaseHandle. But in this case,
we should not dispose it by our self.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
7 months agoFix some SVACE issues.
zhouhao02 [Wed, 11 Oct 2023 06:05:52 +0000 (14:05 +0800)]
Fix some SVACE issues.

7 months agoFix Accessibility.Say interop
Artur Świgoń [Tue, 10 Oct 2023 16:21:03 +0000 (18:21 +0200)]
Fix Accessibility.Say interop

This is one of the oldest interops and was actually problematic for
multiple reasons; the return type didn't match and the third parameter
was expected to have exactly the same value in every invocation. While
fixing these issues, parsing the status string was moved from C++ to C#
for readability.

7 months agoAdd TextFitArray
Bowon Ryu [Tue, 10 Oct 2023 02:20:47 +0000 (11:20 +0900)]
Add TextFitArray

Add a new function to satisfy the UX that
operates TextFit by considering the PointSize and MinLineSize of the text.

For example, TextFit should be able to find the one that
fits among [PointSize 24 + MinLineSize 40] or [PointSize 28 + MinLineSize 44].

But the previous TextFit only considers PointSize.

TextFitArray can solve this problem,
and this implemented it to respond to additional requirements without modifying the API.

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

Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
7 months agorevert default key construct
joogab.yun [Tue, 10 Oct 2023 07:51:35 +0000 (16:51 +0900)]
revert default key construct

refer : https://github.com/Samsung/TizenFX/pull/5589/

7 months agobug fixed about cMemoryOwn refer : https://github.com/Samsung/TizenFX/pull/5603
joogab.yun [Tue, 10 Oct 2023 05:00:31 +0000 (14:00 +0900)]
bug fixed about cMemoryOwn refer : https://github.com/Samsung/TizenFX/pull/5603

7 months agoFix some SVACE issues of null reference.
zhouhao02 [Sun, 8 Oct 2023 09:23:08 +0000 (17:23 +0800)]
Fix some SVACE issues of null reference.

7 months agoConsider WeakReference resurrection at Registry.
Eunki Hong [Sun, 8 Oct 2023 07:22:56 +0000 (16:22 +0900)]
Consider WeakReference resurrection at Registry.

Since NUI use DisposeQueue system instead of GC directly,
the lifecycle of WeakReference may need to be alive more times.

If we make trackResurrection as false, WeakReference.Target
become null when the item is in DisposeQueue.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
7 months agoBaseHandle without Registry but own memory
Eunki Hong [Sun, 8 Oct 2023 07:02:42 +0000 (16:02 +0900)]
BaseHandle without Registry but own memory

There are some usecase s.t. we have to call ReleaseSwigCPtr
but don't want register to Registry.

For example, PixelBuffer and PixelData dont need to be create
only for main thread.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
7 months agoRemove build warnings
Eunki Hong [Sun, 8 Oct 2023 07:32:54 +0000 (16:32 +0900)]
Remove build warnings

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
7 months agoFix some SVACE issues related to methods of Marshal.
zhouhao02 [Sun, 8 Oct 2023 01:21:10 +0000 (09:21 +0800)]
Fix some SVACE issues related to methods of Marshal.

7 months agoFix some SVACE issues.
zhouhao02 [Wed, 27 Sep 2023 03:03:30 +0000 (11:03 +0800)]
Fix some SVACE issues.

7 months agoLet registry throw exception at error case
Eunki, Hong [Tue, 26 Sep 2023 06:25:43 +0000 (15:25 +0900)]
Let registry throw exception at error case

Let we throw exception if same object try to register.

Moreover, let we print more useful callstack if we got unmatched case.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months ago[Nsd] Fix ASAN crash (#5694)
Seonah Moon [Tue, 31 Oct 2023 11:06:13 +0000 (20:06 +0900)]
[Nsd] Fix ASAN crash (#5694)

7 months ago[WiFi] Fix ASAN crash (#5693)
Seonah Moon [Tue, 31 Oct 2023 10:13:03 +0000 (19:13 +0900)]
[WiFi] Fix ASAN crash (#5693)

7 months ago[Build] the dotnet_resolving.info file has been renamed (#5686)
JongHeonChoi [Tue, 31 Oct 2023 05:45:04 +0000 (14:45 +0900)]
[Build] the dotnet_resolving.info file has been renamed (#5686)

7 months ago[Build] Create vconf related to .NET as a file in RO location (#5682)
JongHeonChoi [Tue, 31 Oct 2023 04:12:23 +0000 (13:12 +0900)]
[Build] Create vconf related to .NET as a file in RO location (#5682)

7 months ago[Connection] Fix ASAN crash issue (#5625)
Seonah Moon [Tue, 17 Oct 2023 07:16:24 +0000 (16:16 +0900)]
[Connection] Fix ASAN crash issue (#5625)

7 months agoDeprecating Tizen.Messaging.Messages APIs (#5593)
k-jaju [Tue, 17 Oct 2023 06:57:03 +0000 (12:27 +0530)]
Deprecating Tizen.Messaging.Messages APIs (#5593)

Signed-off-by: Krishna Kant Jaju <krishna.jaju@samsung.com>
Co-authored-by: randeepsingh01 <49635973+randeepsingh01@users.noreply.github.com>
7 months agoChange visibility of NUIGadgetResourceManager ctor (#5626)
hjhun [Tue, 17 Oct 2023 04:47:29 +0000 (13:47 +0900)]
Change visibility of NUIGadgetResourceManager ctor (#5626)

The visibility of NUIGadgetResourceManager(NUIGadgetInfo info) is
changed to public.

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
7 months agoUse Marshal.FreeHGlobal() instead of Libc.Free() (#5628)
hjhun [Tue, 17 Oct 2023 04:40:33 +0000 (13:40 +0900)]
Use Marshal.FreeHGlobal() instead of Libc.Free() (#5628)

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
7 months agoMerge branch 'API11' of http://github.com/Samsung/TizenFX into API11
Jay Cho [Mon, 30 Oct 2023 08:48:05 +0000 (17:48 +0900)]
Merge branch 'API11' of github.com/Samsung/TizenFX into API11

7 months ago[NUI][AT-SPI] Detach NUIViewAccessible in View.Dispose()
Artur Świgoń [Thu, 19 Oct 2023 15:53:40 +0000 (17:53 +0200)]
[NUI][AT-SPI] Detach NUIViewAccessible in View.Dispose()

The application may crash if the View is disposed but the Accessibility
infrastructure calls one of the View methods. Detaching the
NUIViewAccessible proxy object in View.Dispose() should prevent that.

7 months agoDeprecating Tizen.Messaging.Email APIs (#5596)
priyakohl [Mon, 16 Oct 2023 11:37:35 +0000 (17:07 +0530)]
Deprecating Tizen.Messaging.Email APIs (#5596)

* Deprecating Tizen.Messaging.Email APIs

Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
* Added using System

Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
* Modified Note

Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
---------

Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
Co-authored-by: randeepsingh01 <49635973+randeepsingh01@users.noreply.github.com>
7 months ago[Tdbc] Fix UpdateHookCallback released issue (#5528)
ChangGyu Choi [Thu, 12 Oct 2023 00:13:23 +0000 (09:13 +0900)]
[Tdbc] Fix UpdateHookCallback released issue (#5528)

The issue is that if you don't keep a reference to the UpdateHookCallback,
it may be garbage collected before it is used.

UpdateHookCallback should be referenced during used this.

Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
Co-authored-by: pjh9216 <jh9216.park@samsung.com>
7 months agoDeprecating Tizen.Location.Geofence APIs (#5598)
priyakohl [Wed, 11 Oct 2023 05:38:12 +0000 (11:08 +0530)]
Deprecating Tizen.Location.Geofence APIs (#5598)

* Deprecating Tizen.Location.Geofence APIs

Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
* Removing type

Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
* Indentation fixes

Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
* Modified Note

Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
---------

Signed-off-by: Priya Kohli <priya.kohli@samsung.com>
Co-authored-by: randeepsingh01 <49635973+randeepsingh01@users.noreply.github.com>
7 months ago[NUI] Let we don't dispose cached LastEvents
Eunki, Hong [Tue, 26 Sep 2023 02:51:06 +0000 (11:51 +0900)]
[NUI] Let we don't dispose cached LastEvents

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months ago[NUI] Implement defaut key construct
Eunki Hong [Mon, 25 Sep 2023 16:22:41 +0000 (01:22 +0900)]
[NUI] Implement defaut key construct

Let we use default key creation API if we only need to use
empty key handle.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
7 months ago[NUI] Do not registry last event items who get retrieved
Eunki, Hong [Mon, 25 Sep 2023 05:38:22 +0000 (14:38 +0900)]
[NUI] Do not registry last event items who get retrieved

Since we change BaseObject internally when we use
Interop.Window.InternalRetrievingLast~~~Event(~~) function.

This behaviour might occure some error cases when we use
Registry system.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months ago[NUI] Version Update (22245)
Jiyun Yang [Mon, 25 Sep 2023 06:21:14 +0000 (15:21 +0900)]
[NUI] Version Update (22245)

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
7 months agoAdd VisualFactory.UsePrecompiledShader()
seungho baek [Mon, 25 Sep 2023 03:16:45 +0000 (12:16 +0900)]
Add VisualFactory.UsePrecompiledShader()

Signed-off-by: seungho baek <sbsh.baek@samsung.com>
7 months ago[NUI] Add widget list for keeping widget instance
sunghyun kim [Mon, 25 Sep 2023 04:38:06 +0000 (13:38 +0900)]
[NUI] Add widget list for keeping widget instance

widget need to keep it's instance

7 months ago[NUI] Binding DispatchTouchMotion and DispatchHoverMotion
joogab.yun [Thu, 21 Sep 2023 06:25:39 +0000 (15:25 +0900)]
[NUI] Binding DispatchTouchMotion and DispatchHoverMotion

These determine whether to send touch and hover motion events or not.
This is used when the user does not want to receive motion events.

7 months ago[NUI] Add HoverEvent in Window
joogab.yun [Mon, 28 Aug 2023 06:10:16 +0000 (15:10 +0900)]
[NUI] Add HoverEvent in Window

Window window = NUIApplication.GetDefaultWindow();
window.HoverEvent += OnHover;

private void OnHover(object source, Window.HoverEventArgs e)
{
  // e.Hover.GetState(0); // PointStateType.Motion;
}

7 months ago[NUI] bug fixed about windowPointerConstraintsEventCallback
joogab.yun [Wed, 20 Sep 2023 08:10:21 +0000 (17:10 +0900)]
[NUI] bug fixed about windowPointerConstraintsEventCallback

7 months ago[NUI.WindowSystem] Add new request of KVM Service
Junseok Kim [Wed, 30 Aug 2023 07:23:02 +0000 (16:23 +0900)]
[NUI.WindowSystem] Add new request of KVM Service

Add new request of KVM Service as below:
 - ReceiveDragData: Request to get current drag data.
 - CancelDrag: Request to cancel current drag.

7 months ago[NUI.WindowSystem] Introduce the new InputGenerate feature
Junseok Kim [Thu, 14 Sep 2023 05:07:47 +0000 (14:07 +0900)]
[NUI.WindowSystem] Introduce the new InputGenerate feature

7 months ago[NUI] Public RemoveBinding and ClearBinding apis
Xianbing Teng [Tue, 17 Oct 2023 10:49:49 +0000 (18:49 +0800)]
[NUI] Public RemoveBinding and ClearBinding apis

7 months ago[System.Feedback] Add feedback theme index range description
Yunhee Seo [Thu, 19 Oct 2023 04:37:28 +0000 (13:37 +0900)]
[System.Feedback] Add feedback theme index range description

The index of sound theme range is 1 ~ N according to conf file.
This index range should be considered when using feedback theme index getter/setter.

Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
7 months ago[NUI] fix IME window crash issue
dongsug.song [Tue, 26 Sep 2023 09:39:21 +0000 (18:39 +0900)]
[NUI] fix IME window crash issue

8 months ago[System.Feedback] Add new feedback_pattern
Yunhee Seo [Thu, 12 Oct 2023 07:44:39 +0000 (16:44 +0900)]
[System.Feedback] Add new feedback_pattern

Below feedback pattern is supported by mapping feedback pattern id number.
- FEEDBACK_PATTERN_WELCOME
- FEEDBACK_PATTERN_AUTO_DOOR_OPEN

Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
8 months ago[ThumbnailExtractor] Fix VD SVACE issue - incomplete switch (#5608)
Haesu Gwon [Tue, 10 Oct 2023 08:22:25 +0000 (17:22 +0900)]
[ThumbnailExtractor] Fix VD SVACE issue - incomplete switch (#5608)

8 months ago[NUI.Scene3D] Fix MotionData TCT error
Eunki, Hong [Tue, 19 Sep 2023 13:43:45 +0000 (22:43 +0900)]
[NUI.Scene3D] Fix MotionData TCT error

Fix unmatched function binding

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months agoDragAndDrop : hide window event handler
Taehyub Kim [Mon, 18 Sep 2023 10:10:28 +0000 (19:10 +0900)]
DragAndDrop : hide window event handler

8 months ago[NUI] Version Update (22244)
Seoyeon Kim [Mon, 18 Sep 2023 08:41:18 +0000 (17:41 +0900)]
[NUI] Version Update (22244)

Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
8 months ago[NUI] DragAndDrop : Add APIs for Window
Taehyub Kim [Fri, 15 Sep 2023 04:25:05 +0000 (13:25 +0900)]
[NUI] DragAndDrop : Add APIs for Window

8 months ago[System.Feedback] Add new feedback_pattern to support general feedback patterns
Yunhee Seo [Thu, 14 Sep 2023 08:07:49 +0000 (17:07 +0900)]
[System.Feedback] Add new feedback_pattern to support general feedback patterns

To support general feedback patterns, newly patterns are added.
With these string pattern, it is possible to use mapped feedback patterns from libfeedback.

Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
8 months ago[System.Feedback] Add internal API to support feedback stop by feedback type
Yunhee Seo [Fri, 15 Sep 2023 01:47:50 +0000 (10:47 +0900)]
[System.Feedback] Add internal API to support feedback stop by feedback type

Allows feedback stop according to feedback type.

This is newly added to System.Feedback.
- public void StopTypeInternal(FeedbackType type)
    -> It stops current feedback playing according to feedback type.

Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
8 months ago[System.Feedback] Add new feedback_pattern for "da" profile
Yunhee Seo [Thu, 7 Sep 2023 02:49:21 +0000 (11:49 +0900)]
[System.Feedback] Add new feedback_pattern for "da" profile

To support using new feedback_pattern for da profile,
new pattern string and id value is added to Pattern dictionary.

Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
8 months ago[NUI] Fix ImageColor alpha not applied issue
Eunki, Hong [Wed, 13 Sep 2023 03:04:35 +0000 (12:04 +0900)]
[NUI] Fix ImageColor alpha not applied issue

Visual look at same value, Visual.MixColor's alpha and Visual.Opacity,
we need to synchronize both values.

Since we don't open Visual.Opacity property for View side
let we control this value inside of View.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months ago[NUI.Physics2D] Adding Dali/Chipmunk interop
David Steele [Mon, 11 Sep 2023 20:23:20 +0000 (21:23 +0100)]
[NUI.Physics2D] Adding Dali/Chipmunk interop

Adds Tizen.NUI.Physics2D.PhysicsAdaptor,
Tizen.NUI.Physics2D.PhysicsActor and
Tizen.NUI.Physics2D.ScopedAccessor classes.

These wrap the DALi physics classes in dali-toolkit; which run
the physics integration thread in the Update thread (using the
FrameCallback natively). They offer basic APIs for attaching
Views to Chipmunk.Body physics objects, so that they can
be rendered.

8 months ago[NUI.Physics2D] Add binding for Chipmunk2D physics engine
Richard Huang [Tue, 12 Sep 2023 09:32:17 +0000 (10:32 +0100)]
[NUI.Physics2D] Add binding for Chipmunk2D physics engine

8 months ago[NUI] Call base.Dispose(type) at derived class's Dispose.
jmm [Thu, 14 Sep 2023 05:26:16 +0000 (14:26 +0900)]
[NUI] Call base.Dispose(type) at derived class's Dispose.

8 months ago[NUI] Change RendererTexture(texture) into TextureResourceUrl(imageUrl)
jmm [Thu, 14 Sep 2023 01:58:31 +0000 (10:58 +0900)]
[NUI] Change RendererTexture(texture) into TextureResourceUrl(imageUrl)

8 months ago[NUI] Use Disposed instead of disposed.
jmm [Thu, 14 Sep 2023 01:38:49 +0000 (10:38 +0900)]
[NUI] Use Disposed instead of disposed.

8 months ago[NUI] Remove underlines in function names
jmm [Thu, 14 Sep 2023 01:29:06 +0000 (10:29 +0900)]
[NUI] Remove underlines in function names

8 months ago[NUI] Remove unused arguments and enum for AddLocalStream().
jmm [Wed, 13 Sep 2023 12:47:12 +0000 (21:47 +0900)]
[NUI] Remove unused arguments and enum for AddLocalStream().

8 months ago[NUI] Remove unsafe functions
jmm [Wed, 13 Sep 2023 12:21:56 +0000 (21:21 +0900)]
[NUI] Remove unsafe functions

8 months ago[NUI] Add Dispose()
jmm [Wed, 13 Sep 2023 07:20:43 +0000 (16:20 +0900)]
[NUI] Add Dispose()

8 months ago[NUI] Fix partial update issue
jmm [Mon, 11 Sep 2023 07:39:59 +0000 (16:39 +0900)]
[NUI] Fix partial update issue

8 months ago[NUI] Hide ParticleBlendingMode and ParticleEmitter
jmm [Mon, 11 Sep 2023 05:41:45 +0000 (14:41 +0900)]
[NUI] Hide ParticleBlendingMode and ParticleEmitter

8 months ago[NUI] Particle System binding and implementation of C# side
Adam Bialogonski [Fri, 4 Aug 2023 14:57:10 +0000 (15:57 +0100)]
[NUI] Particle System binding and implementation of C# side

ParticleSystem provides 4 classes:
ParticleEmitter - emitter of particles
ParticleSource - source of particles (spawning new particles)
ParticleModifier - controller of particles behaviour
Particle - wrapper over particle data

8 months ago[NUI] Binding GetLastHoverEvent
joogab.yun [Wed, 13 Sep 2023 07:25:19 +0000 (16:25 +0900)]
[NUI] Binding GetLastHoverEvent

Since GetLastTouchEvent returns all values ​​regardless of touch or hover, it was separated into GetLastTouchEvent and GetLastHoverEvent.

https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/298755/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-adaptor/+/298753/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-core/+/298752/

9 months ago[Tts] Make SynthesizedPcmEventArgs inherit System.EventArgs (#5540)
Suyeon Hwang [Wed, 13 Sep 2023 11:25:24 +0000 (20:25 +0900)]
[Tts] Make SynthesizedPcmEventArgs inherit System.EventArgs (#5540)

Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
9 months agoRevert "Revert "Revert "[TFM] Update TizenFX TFM to net6.0 (#5360)" (#5436)" (#5466)"
joogab.yun [Tue, 12 Sep 2023 02:10:41 +0000 (11:10 +0900)]
Revert "Revert "Revert "[TFM] Update TizenFX TFM to net6.0 (#5360)" (#5436)" (#5466)"

This reverts commit db26e7e9bb93583c447cfa5cec5dd04dfc3c4b53.

9 months ago[NUI] DALi version 2.2.43
joogab.yun [Mon, 11 Sep 2023 06:59:53 +0000 (15:59 +0900)]
[NUI] DALi version 2.2.43

9 months ago[NUI] Binding PointerConstraintsEvent
joogab.yun [Fri, 8 Sep 2023 05:11:44 +0000 (14:11 +0900)]
[NUI] Binding PointerConstraintsEvent

9 months ago[NUI] Enhance clipboard sample code
Bowon Ryu [Mon, 11 Sep 2023 02:01:42 +0000 (11:01 +0900)]
[NUI] Enhance clipboard sample code

- test/NUIClipboard
- test/NUIClipboardDataSelected

Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
9 months ago[NUI] Add DataSelected in Clipboard
Bowon Ryu [Fri, 1 Sep 2023 12:31:50 +0000 (21:31 +0900)]
[NUI] Add DataSelected in Clipboard

Add DataSelected to catch the Copy event of another process.

The process using this event must be Secondary Selection.
General apps cannot use this event usefully.

Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
9 months ago[NUI] Add missing code
Bowon Ryu [Wed, 30 Aug 2023 11:14:42 +0000 (20:14 +0900)]
[NUI] Add missing code

ref : 5ca58e74d71e2e91a9b0a8b549b3cffad232f6f9

* Make sure that Interop return type is bool
Marshal's bool is mapped to 4byte in default.
So if native-code return boolean type, the datasize is mismatched and make problems

Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
9 months ago[NUI] Fix the SVACE issue.
zhouhao02 [Wed, 6 Sep 2023 07:51:02 +0000 (15:51 +0800)]
[NUI] Fix the SVACE issue.

9 months agoRevert "Revert "[TFM] Update TizenFX TFM to net6.0 (#5360)" (#5436)" (#5466)
Jay Cho [Thu, 10 Aug 2023 01:10:11 +0000 (10:10 +0900)]
Revert "Revert "[TFM] Update TizenFX TFM to net6.0 (#5360)" (#5436)" (#5466)

This reverts commit d517215ef74fbd68d24fbfb58d11eb96be159741.

9 months ago[ComponentBased] Add TimeZoneChanged EventHandler (#5537)
hjhun [Mon, 11 Sep 2023 04:17:59 +0000 (13:17 +0900)]
[ComponentBased] Add TimeZoneChanged EventHandler (#5537)

This patch adds the TimeZoneChanged EventHandler. The component-based
application can monitors the time zone changed event using the event handler.

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
9 months ago[Applications.UI] Modify UICoreBackend for time zone event (#5542)
hjhun [Fri, 8 Sep 2023 08:09:54 +0000 (17:09 +0900)]
[Applications.UI] Modify UICoreBackend for time zone event (#5542)

This patch registers and unregister the time zone changed event.

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>