platform/core/csapi/tizenfx.git
6 months agoRelease 10.0.0.17782 accepted/tizen/7.0/unified/20231107.145944 submit/tizen_7.0/20231107.050833
TizenAPI-Bot [Tue, 7 Nov 2023 05:08:33 +0000 (05:08 +0000)]
Release 10.0.0.17782

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Tue, 7 Nov 2023 05:08:33 +0000 (05:08 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

6 months ago[NUI] revert 'Make DaliAccessibilityDetachAccessibleObject called at main thread...
dongsug.song [Tue, 7 Nov 2023 04:15:01 +0000 (13:15 +0900)]
[NUI] revert 'Make DaliAccessibilityDetachAccessibleObject called at main thread' and check native object

6 months ago[System] Add power internal APIs
Yunhee Seo [Thu, 2 Nov 2023 12:53:34 +0000 (21:53 +0900)]
[System] Add power internal APIs

Allows using native power internal APIs.

These are newly added to System/Device/Power
- public static void ConfirmWaitCallback(UInt64 wait_callback_id)
-> It informs the deviced that it is okay to take actual action to change state.
- public static void CancelWaitCallback(UInt64 wait_callback_id)
-> It informs the deviced of that it needs to undo the current transition.
- public static int ChangeState(PowerState state, int timeout_sec)
-> It Sends a request for changing power state asynchronously with timeout sec.
- public static int CheckRebootAllowed()
-> It checks if reboot is possible on the current device state.
- public static PowerTransitionReason GetWakeupReason()
-> It returns power wake up reason.
- public static PowerLockState GetLockState(PowerLock type)
-> It returns the status of power lock(locked/unlocked).

To notify callback event, 4 types EventHandler is added.
- public static event EventHandler<PowerStateChangeRequestEventArgs> StartStateChangeRequestCallback
- public static event EventHandler<PowerStateChangeRequestEventArgs> NormalStateChangeRequestCallback
- public static event EventHandler<PowerStateChangeRequestEventArgs> SleepStateChangeRequestCallback
- public static event EventHandler<PowerStateChangeRequestEventArgs> PoweroffStateChangeRequestCallback
- public static event EventHandler<PowerStateChangeRequestEventArgs> RebootStateChangeRequestCallback
- public static event EventHandler<PowerStateChangeRequestEventArgs> ExitStateChangeRequestCallback
-> With this eventhandler, it is possible to get event from ChangeState handling.
For example,
1. Add callback event to NormalStateChangeRequestCallback.
2. Request power state change with ChangeState(PowerState.Normal, timeout_sec)
3. After power state change request done, it returns result as invoke callback event.

- public static event EventHandler<PowerStateWaitEventArgs> StartStateWaitCallback
- public static event EventHandler<PowerStateWaitEventArgs> NormalStateWaitCallback
- public static event EventHandler<PowerStateWaitEventArgs> SleepStateWaitCallback
- public static event EventHandler<PowerStateWaitEventArgs> PoweroffStateWaitCallback
- public static event EventHandler<PowerStateWaitEventArgs> RebootStateWaitCallback
- public static event EventHandler<PowerStateWaitEventArgs> ExitStateWaitCallback
-> As adding event callback to above eventhandler, it is possible to get event
    when the power state changes to Specific Power state.
For example,
1. Add callback event to SleepStateWaitCallback.
2. When the power state changes to Sleep state, callback event will be invoked.

- public static event EventHandler<PowerTransientStateWaitEventArgs> TransientResumingEarlyStateWaitCallback
- public static event EventHandler<PowerTransientStateWaitEventArgs> TransientResumingStateWaitCallback
- public static event EventHandler<PowerTransientStateWaitEventArgs> TransientResumingLateStateWaitCallback
- public static event EventHandler<PowerTransientStateWaitEventArgs> TransientSuspendingEarlyStateWaitCallback
- public static event EventHandler<PowerTransientStateWaitEventArgs> TransientSuspendingStateWaitCallback
- public static event EventHandler<PowerTransientStateWaitEventArgs> TransientSuspendingLateStateWaitCallback
-> As adding event callback to above eventhandler, it is possible to get event
    during the power transition.
For example,
1. Add callback event to TransientResumingLateStateWaitCallback.
2. When the power transient state changes to ResumingLate state, callback event will be invoked.

- public static event EventHandler<PowerLockStateChangedEventArgs> CpuLockStateChangedCallback
- public static event EventHandler<PowerLockStateChangedEventArgs> DisplayNormalLockStateChangedCallback
- public static event EventHandler<PowerLockStateChangedEventArgs> DisplayDimLockStateChangedCallback
-> As adding event callback to above eventhandler, it is possible to get event
    when the power lock state is changed.
For example,
1. Add callback event to DisplayNormalLockStateChangedCallback.
2. When the DisplayNormal power lock state is changed, callback event will be invoked.

To use new APIs, below enumeration is also added.
- public enum PowerTransitionReason
-> It represents power transition reason
- public enum PowerState : uint
-> It represents power state.
- public enum PowerTransientState : uint
-> It represents power transient state.
- public enum PowerLockState
-> It represents power lock state locked or unlocked.

Detailed example, information is added to API/EventHandler/Enumeration definition.

Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
6 months agoRelease 10.0.0.17780 accepted/tizen/7.0/unified/20231103.165439 submit/tizen_7.0/20231102.090304
TizenAPI-Bot [Thu, 2 Nov 2023 09:03:04 +0000 (09:03 +0000)]
Release 10.0.0.17780

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Thu, 2 Nov 2023 09:03:04 +0000 (09:03 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

6 months ago[Build] Create a dotnet library dir from the post script (#5709)
JongHeonChoi [Thu, 2 Nov 2023 08:58:49 +0000 (17:58 +0900)]
[Build] Create a dotnet library dir from the post script (#5709)

6 months ago[NUI] Make DaliAccessibilityDetachAccessibleObject called at main thread
Eunki, Hong [Mon, 30 Oct 2023 04:49:51 +0000 (13:49 +0900)]
[NUI] 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>
6 months agoRelease 10.0.0.17778 accepted/tizen/7.0/unified/20231101.175652 submit/tizen_7.0/20231101.083408
TizenAPI-Bot [Wed, 1 Nov 2023 08:34:08 +0000 (08:34 +0000)]
Release 10.0.0.17778

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Wed, 1 Nov 2023 08:34:08 +0000 (08:34 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

6 months ago[Build] Fixed an error that could not find the dotnet_resolving.info file (#5700)
JongHeonChoi [Wed, 1 Nov 2023 08:29:43 +0000 (17:29 +0900)]
[Build] Fixed an error that could not find the dotnet_resolving.info file (#5700)

6 months agoRelease 10.0.0.17777 accepted/tizen/7.0/unified/20231101.053152 submit/tizen_7.0/20231031.060722
TizenAPI-Bot [Tue, 31 Oct 2023 06:07:22 +0000 (06:07 +0000)]
Release 10.0.0.17777

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Tue, 31 Oct 2023 06:07:22 +0000 (06:07 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

6 months ago[Build] Modify build error for vconf of runtime_version (#5685)
JongHeonChoi [Tue, 31 Oct 2023 05:43:36 +0000 (14:43 +0900)]
[Build] Modify build error for vconf of runtime_version (#5685)

6 months agoRelease 10.0.0.17776 submit/tizen_7.0/20231031.041915
TizenAPI-Bot [Tue, 31 Oct 2023 04:19:15 +0000 (04:19 +0000)]
Release 10.0.0.17776

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Tue, 31 Oct 2023 04:19:14 +0000 (04:19 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

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

* Change the location and value for generating vconf of runtime_version

* [Build] Create vconf related to .NET as a file in RO location

6 months agoRelease 10.0.0.17775 accepted/tizen/7.0/unified/20231030.164725 submit/tizen_7.0/20231030.060413
TizenAPI-Bot [Mon, 30 Oct 2023 06:04:13 +0000 (06:04 +0000)]
Release 10.0.0.17775

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Mon, 30 Oct 2023 06:04:13 +0000 (06:04 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

6 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.

6 months agoRelease 10.0.0.17774 accepted/tizen/7.0/unified/20231026.165739 submit/tizen_7.0/20231024.151120
TizenAPI-Bot [Tue, 24 Oct 2023 15:11:20 +0000 (15:11 +0000)]
Release 10.0.0.17774

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Tue, 24 Oct 2023 15:11:19 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

6 months ago[NUI.Scene3D][API10] Bug fix when we get ModelNode from Model
Eunki, Hong [Mon, 23 Oct 2023 02:50:27 +0000 (11:50 +0900)]
[NUI.Scene3D][API10] 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>
6 months ago[MediaController] Fix CustomCommand crash issue (#5652)
Haesu Gwon [Tue, 24 Oct 2023 07:16:00 +0000 (16:16 +0900)]
[MediaController] Fix CustomCommand crash issue (#5652)

6 months agoRelease 10.0.0.17772 accepted/tizen/7.0/unified/20231024.025403 submit/tizen_7.0/20231019.151030
TizenAPI-Bot [Thu, 19 Oct 2023 15:10:30 +0000 (15:10 +0000)]
Release 10.0.0.17772

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Thu, 19 Oct 2023 15:10:29 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

6 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>
6 months agoRelease 10.0.0.17771 submit/tizen_7.0/20231018.074708
TizenAPI-Bot [Wed, 18 Oct 2023 07:47:08 +0000 (07:47 +0000)]
Release 10.0.0.17771

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Wed, 18 Oct 2023 07:47:08 +0000 (07:47 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

6 months ago[NUI] Add widget list for keeping widget instance
sunghyun kim [Wed, 18 Oct 2023 07:14:53 +0000 (16:14 +0900)]
[NUI] Add widget list for keeping widget instance

same to this patch
https://github.com/Samsung/TizenFX/pull/5583

6 months agoRelease 10.0.0.17770 accepted/tizen/7.0/unified/20231018.172242 submit/tizen_7.0/20231016.104556
TizenAPI-Bot [Mon, 16 Oct 2023 10:45:56 +0000 (10:45 +0000)]
Release 10.0.0.17770

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Mon, 16 Oct 2023 10:45:55 +0000 (10:45 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

6 months ago[Tizen][API10] Add WebView APIs for fullscreen, text found, etc.
huayong.xu [Mon, 16 Oct 2023 02:46:38 +0000 (10:46 +0800)]
[Tizen][API10] Add WebView APIs for fullscreen, text found, etc.

6 months agoRelease 10.0.0.17769 submit/tizen_7.0/20231013.151151
TizenAPI-Bot [Fri, 13 Oct 2023 15:11:51 +0000 (15:11 +0000)]
Release 10.0.0.17769

6 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Fri, 13 Oct 2023 15:11:51 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

6 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>
7 months agoRelease 10.0.0.17768 submit/tizen_7.0/20231012.151150
TizenAPI-Bot [Thu, 12 Oct 2023 15:11:50 +0000 (15:11 +0000)]
Release 10.0.0.17768

7 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Thu, 12 Oct 2023 15:11:50 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

7 months ago[NUI][API10] Unregister callbacks when passed argument is null.
huayong.xu [Mon, 12 Jun 2023 05:51:45 +0000 (13:51 +0800)]
[NUI][API10] Unregister callbacks when passed argument is null.

This patch is merged from DevelNUI:
https://github.com/Samsung/TizenFX/pull/5329

7 months agoRelease 10.0.0.17767 accepted/tizen/7.0/unified/20230927.090513 submit/tizen_7.0/20230926.081042
TizenAPI-Bot [Tue, 26 Sep 2023 08:10:42 +0000 (08:10 +0000)]
Release 10.0.0.17767

7 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Tue, 26 Sep 2023 08:10:42 +0000 (08:10 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

7 months ago[NUI.Scene3D] CodeSync MotionData API and documents
Eunki Hong [Mon, 25 Sep 2023 16:31:44 +0000 (01:31 +0900)]
[NUI.Scene3D] CodeSync MotionData API and documents

1. Fix TCT error #5576
2. Follow some comments fix up as #5452

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
7 months agoRelease 10.0.0.17766 submit/tizen_7.0/20230915.151216
TizenAPI-Bot [Fri, 15 Sep 2023 15:12:16 +0000 (15:12 +0000)]
Release 10.0.0.17766

7 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Fri, 15 Sep 2023 15:12:15 +0000 (15:12 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

7 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>
7 months agoRelease 10.0.0.17765 accepted/tizen/7.0/unified/20230915.095430 submit/tizen_7.0/20230914.151003
TizenAPI-Bot [Thu, 14 Sep 2023 15:10:03 +0000 (15:10 +0000)]
Release 10.0.0.17765

7 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Thu, 14 Sep 2023 15:10:03 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

7 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>
7 months agoRelease 10.0.0.17764 submit/tizen_7.0/20230913.151010
TizenAPI-Bot [Wed, 13 Sep 2023 15:10:10 +0000 (15:10 +0000)]
Release 10.0.0.17764

7 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Wed, 13 Sep 2023 15:10:10 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

7 months ago[NUI.Scene3D] Add Shadow for a Directional Light
seungho baek [Wed, 30 Aug 2023 12:46:22 +0000 (21:46 +0900)]
[NUI.Scene3D] Add Shadow for a Directional Light

Signed-off-by: seungho baek <sbsh.baek@samsung.com>
8 months agoRelease 10.0.0.17763 submit/tizen_7.0/20230907.151131
TizenAPI-Bot [Thu, 7 Sep 2023 15:11:31 +0000 (15:11 +0000)]
Release 10.0.0.17763

8 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Thu, 7 Sep 2023 15:11:31 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

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[Tts] Add new internal API for TTS synthesized PCM (#5526)
Suyeon Hwang [Thu, 7 Sep 2023 03:51:43 +0000 (12:51 +0900)]
[Tts] Add new internal API for TTS synthesized PCM (#5526)

* Add new internal method for playing mode

Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
* Inherit System.EventArgs class

Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
---------

Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
8 months agoRelease 10.0.0.17761 accepted/tizen/7.0/unified/20230831.170947 submit/tizen_7.0/20230830.114806
TizenAPI-Bot [Wed, 30 Aug 2023 11:48:06 +0000 (11:48 +0000)]
Release 10.0.0.17761

8 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Wed, 30 Aug 2023 11:48:06 +0000 (11:48 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

8 months ago[NUI] Add SystemFontSizeChangedManager class
Jaehyun Cho [Mon, 28 Aug 2023 11:02:39 +0000 (20:02 +0900)]
[NUI] Add SystemFontSizeChangedManager class

SystemFontSizeChangedManager is a static class which adds user handlers
to the SystemSettings.FontSizeChanged event.

It is similar to SystemFontSizeChanged class but it is a static class
and it also provides Finished event handler invoked last after all
handlers added to the SystemSettings.FontSizeChanged event are invoked.

8 months agoRelease 10.0.0.17760 accepted/tizen/7.0/unified/20230825.185104 submit/tizen_7.0/20230823.151004
TizenAPI-Bot [Wed, 23 Aug 2023 15:10:04 +0000 (15:10 +0000)]
Release 10.0.0.17760

8 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Wed, 23 Aug 2023 15:10:04 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

8 months ago[System.Feedback] Add privilege description to internal API for multi-theme
Yunhee Seo [Mon, 21 Aug 2023 11:10:16 +0000 (20:10 +0900)]
[System.Feedback] Add privilege description to internal API for multi-theme

To call below feedback internal API, App should have accurate privilege.
Description and privilege type is added to below API.
- public void SetThemeIndexInternal(FeedbackType type, uint indexOfTheme)

Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
8 months agoRelease 10.0.0.17759 submit/tizen_7.0/20230823.071719
TizenAPI-Bot [Wed, 23 Aug 2023 07:17:19 +0000 (07:17 +0000)]
Release 10.0.0.17759

8 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Wed, 23 Aug 2023 07:17:19 +0000 (07:17 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

8 months ago[NUI.Scene3D] Make MotionData use Native API, instead of C#
Eunki, Hong [Wed, 5 Jul 2023 07:26:59 +0000 (16:26 +0900)]
[NUI.Scene3D] Make MotionData use Native API, instead of C#

Since we allow to use MotionData feature in dali-side, let we use it.

Now we can load motion data and blendshape animation from file asyncronously.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months ago[NUI.Scene3D] Deprecate direct accessor to motion value list
Eunki, Hong [Fri, 16 Jun 2023 00:38:30 +0000 (09:38 +0900)]
[NUI.Scene3D] Deprecate direct accessor to motion value list

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months ago[NUI] Add Directional Light
seungho baek [Mon, 12 Jun 2023 04:43:51 +0000 (13:43 +0900)]
[NUI] Add Directional Light

Signed-off-by: seungho baek <sbsh.baek@samsung.com>
8 months ago[NUI] Add some API for KeyFrames
Eunki, Hong [Wed, 21 Jun 2023 03:36:02 +0000 (12:36 +0900)]
[NUI] Add some API for KeyFrames

1. `GetKeyFrameCount()` to know how many keyframes are added.
2. `GetKeyFrame()` to know the information of specific index.
3. `SetKeyFrameValue()` to change the value for specific index.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months agoRelease 10.0.0.17755 accepted/tizen/7.0/unified/20230822.163526 submit/tizen_7.0/20230816.151119
TizenAPI-Bot [Wed, 16 Aug 2023 15:11:19 +0000 (15:11 +0000)]
Release 10.0.0.17755

8 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Wed, 16 Aug 2023 15:11:19 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

8 months ago[System.Feedback] Add internal APIs to support multi-theme sound conf usage
Yunhee Seo [Wed, 9 Aug 2023 07:02:05 +0000 (16:02 +0900)]
[System.Feedback] Add internal APIs to support multi-theme sound conf usage

Allows selecting one of several theme files according to feedback type.
Now, this supports only feedback type Sound.

These are newly added to System.Feedback.
- public uint GetCountOfThemeInternal(FeedbackType type)
    -> It returns count of theme which is defined conf file according to feedback type.
       This indicates how many conf files are available.
- public uint GetThemeIndexInternal(FeedbackType type)
    -> It returns index of theme which is selected as default according to feedback type.
- public void SetThemeIndexInternal(FeedbackType type, uint indexOfTheme)
    -> It sets indexOfTheme to default conf index according to feedback type.
       By calling this, feedback will use the conf file with "indexOfTheme" index.

Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
9 months agoRelease 10.0.0.17754 accepted/tizen/7.0/unified/20230811.173929 submit/tizen_7.0/20230809.151119
TizenAPI-Bot [Wed, 9 Aug 2023 15:11:19 +0000 (15:11 +0000)]
Release 10.0.0.17754

9 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Wed, 9 Aug 2023 15:11:19 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

9 months ago[NUI] Remove strong references of text components regarding events
Jiyun Yang [Tue, 8 Aug 2023 10:27:07 +0000 (19:27 +0900)]
[NUI] Remove strong references of text components regarding events

* Improve WeakEvent
  * Lazy list initialization
  * Provide count changed callback methods
  * Seperate file into WeakEvent and WeakEventProxy
* Fix TextLabel, TextField, TextEditor
  * Do not register event handler to the system event directly.
  * Instead they use WeakEventProxy to get GCed without Dispose call.

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
9 months agoRelease 10.0.0.17753 submit/tizen_7.0/20230808.151259
TizenAPI-Bot [Tue, 8 Aug 2023 15:12:59 +0000 (15:12 +0000)]
Release 10.0.0.17753

9 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Tue, 8 Aug 2023 15:12:59 +0000 (15:12 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

9 months ago[NUI.Gadget] Add a new method to load assembly (#5456)
hjhun [Tue, 8 Aug 2023 04:48:09 +0000 (13:48 +0900)]
[NUI.Gadget] Add a new method to load assembly (#5456)

The Load() method is added to load the assembly of the NUIGadget.

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
9 months ago[NUI] Add InsetsChanged event to Window
Jaehyun Cho [Thu, 14 Jul 2022 10:13:28 +0000 (19:13 +0900)]
[NUI] Add InsetsChanged event to Window

Window insets are the inner size between window content and window edge.

Window insets are required when status bar, virtual keyboard, or
clipboard appears on window to avoid window content obscured by them.

To notify the window insets changes, InsetsChanged event is added to
Window.

9 months ago[NUI] Add non-generic WeakEventProxy
Jiyun Yang [Tue, 1 Aug 2023 05:05:55 +0000 (14:05 +0900)]
[NUI] Add non-generic WeakEventProxy

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
9 months ago[NUI] Add WeakEventProxy class and improve invoke of WeakEvent
Jiyun Yang [Fri, 28 Jul 2023 05:55:30 +0000 (14:55 +0900)]
[NUI] Add WeakEventProxy class and improve invoke of WeakEvent

* WeakEventProxy : The weak event connecting to a normal event.

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
9 months agoRelease 10.0.0.17749 submit/tizen_7.0/20230720.151028
TizenAPI-Bot [Thu, 20 Jul 2023 15:10:28 +0000 (15:10 +0000)]
Release 10.0.0.17749

9 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Thu, 20 Jul 2023 15:10:28 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

9 months ago[NUI] Remove RenderTask itself from the RenderTaskList when disposed
Jiyun Yang [Thu, 20 Jul 2023 07:25:53 +0000 (16:25 +0900)]
[NUI] Remove RenderTask itself from the RenderTaskList when disposed

Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
9 months agoRelease 10.0.0.17748 accepted/tizen/7.0/unified/20230720.170116 submit/tizen_7.0/20230718.150938
TizenAPI-Bot [Tue, 18 Jul 2023 15:09:38 +0000 (15:09 +0000)]
Release 10.0.0.17748

9 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Tue, 18 Jul 2023 15:09:37 +0000 (15:09 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

9 months ago[NUI] Add VisibilityChanged event to Layer
Jaehyun Cho [Tue, 18 Jul 2023 07:16:58 +0000 (16:16 +0900)]
[NUI] Add VisibilityChanged event to Layer

To notice the visibility changes of Layer, VisibilityChanged event is
added to Layer.

9 months agoRelease 10.0.0.17747 accepted/tizen/7.0/unified/20230719.171814 submit/tizen_7.0/20230717.151125
TizenAPI-Bot [Mon, 17 Jul 2023 15:11:25 +0000 (15:11 +0000)]
Release 10.0.0.17747

9 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Mon, 17 Jul 2023 15:11:25 +0000 (15:11 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

9 months ago[NUI] Delete the used window in widget
sunghyun kim [Mon, 19 Jun 2023 01:39:40 +0000 (10:39 +0900)]
[NUI] Delete the used window in widget

Delete the used window so that the window can be deleted normally when deleting the widget.
this is for memory leak issue.

9 months agoRelease 10.0.0.17746 accepted/tizen/7.0/unified/20230718.090147 submit/tizen_7.0/20230714.151033
TizenAPI-Bot [Fri, 14 Jul 2023 15:10:33 +0000 (15:10 +0000)]
Release 10.0.0.17746

9 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Fri, 14 Jul 2023 15:10:33 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

9 months ago[NUI] Update Font size scale again based on the updated guide
Seoyeon Kim [Thu, 13 Jul 2023 12:56:34 +0000 (21:56 +0900)]
[NUI] Update Font size scale again based on the updated guide

- The font size scales are changed according to the latest GUI guide.
- Five stages of Font size scale
 : 87% -> 100% -> 113% -> 126% -> 140 %

Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
10 months agoRelease 10.0.0.17745 submit/tizen_7.0/20230712.151014
TizenAPI-Bot [Wed, 12 Jul 2023 15:10:14 +0000 (15:10 +0000)]
Release 10.0.0.17745

10 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Wed, 12 Jul 2023 15:10:14 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

10 months ago[NUI][AT-SPI] Set focus in OnAccessibilityActivated()
Artur Świgoń [Tue, 11 Jul 2023 13:51:00 +0000 (15:51 +0200)]
[NUI][AT-SPI] Set focus in OnAccessibilityActivated()

This aligns the behaviour of Components (derived from CustomView), and other controls, with that
of BaseComponents (and other controls with ViewAccessibilityMode.Default, backed by the C++
accessibility implementation), which set the keyboard focus on activation. Please note that in the
latter case, the implementation of View.OnAccessibilityActivated is unused, and the unrelated method
(albeit bearing the same name) Toolkit::Control::OnAccessibilityActivated is called:

bool Control::OnAccessibilityActivated()
{
  if(Toolkit::KeyboardFocusManager::Get().SetCurrentFocusActor(Self()))
  {
    return OnKeyboardEnter();
  }
  return false;
}

So, in other words, this patch makes C# controls behave in a similar manner, i.e. set the keyboard
focus on accessibility activation.

10 months agoRelease 10.0.0.17744 submit/tizen_7.0/20230711.151008
TizenAPI-Bot [Tue, 11 Jul 2023 15:10:08 +0000 (15:10 +0000)]
Release 10.0.0.17744

10 months agoMerge remote-tracking branch 'origin/API10' into tizen_7.0
TizenAPI-Bot [Tue, 11 Jul 2023 15:10:08 +0000 (15:10 +0000)]
Merge remote-tracking branch 'origin/API10' into tizen_7.0

10 months ago[NUI] Register OrientationChanged for BorderWindow.
joogab.yun [Mon, 10 Jul 2023 10:50:03 +0000 (19:50 +0900)]
[NUI] Register OrientationChanged for BorderWindow.

Because if the window is rotated, we need to resize the window by recalculating the border area.

10 months ago[NUI] Binding IsFloatingModeEnabled()
joogab.yun [Mon, 10 Jul 2023 05:45:56 +0000 (14:45 +0900)]
[NUI] Binding IsFloatingModeEnabled()

refer :

https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/295565/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-adaptor/+/295566/

10 months ago[NUI] Fix not to propagate gesture from scrim
Jaehyun Cho [Mon, 10 Jul 2023 07:53:15 +0000 (16:53 +0900)]
[NUI] Fix not to propagate gesture from scrim

Scrim should block all touch and gesture events.
Therefore, gesture is also not propagated from scrim.

10 months agoRelease 10.0.0.17741 submit/tizen_7.0/20230706.151019
TizenAPI-Bot [Thu, 6 Jul 2023 15:10:19 +0000 (15:10 +0000)]
Release 10.0.0.17741