[NUI] Add Transition Animation Effects (#2006)
authorhuiyueun <35286162+huiyueun@users.noreply.github.com>
Mon, 21 Sep 2020 05:26:12 +0000 (14:26 +0900)
committerGitHub <noreply@github.com>
Mon, 21 Sep 2020 05:26:12 +0000 (14:26 +0900)
commitedf8f7a084180f573f03e4343a72f663d5d34cd5
tree86e45ab7f7636ad78ea649fa5384495a17e1ac99
parent67de10f18574ca5e9ed49b268f3c80961d757998
[NUI] Add Transition Animation Effects (#2006)

* [NUI] Add Seamless transition

Add NUIFrameBroker & NUIFrameProvider

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

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* modify to provider interface

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

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* Modify FrameBroker error code type

Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
* Update FrameBrokerBaseErrorFactory.cs

* Update SafeFrameBrokerHandle.cs

* Update FrameProviderErrorFactory.cs

* Update Interop.FrameBroker.cs

* Update Interop.FrameProvider.cs

* Update Interop.Libraries.cs

* Update SafeFrameProviderHandle.cs

* Update and rename DefaultAnimationBroker.cs to DefaultFrameBroker.cs

* Update TransitionOptions.cs

* Update NUIApplication.cs

* Update TransitionOptions.cs

* Update TransitionOptions.cs

Co-authored-by: dongsug-song <35130733+dongsug-song@users.noreply.github.com>
24 files changed:
src/Tizen.NUI/src/internal/FrameBroker/DefaultFrameBroker.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/FrameBroker/FrameBrokerBase.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/FrameBroker/FrameBrokerBaseErrorFactory.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/FrameBroker/FrameBrokerBaseResult.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/FrameBroker/FrameData.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/FrameBroker/FrameError.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/FrameBroker/SafeFrameBrokerHandle.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/FrameProvider/FrameProvider.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/FrameProvider/FrameProviderErrorFactory.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/FrameProvider/SafeFrameProviderHandle.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/Interop/Interop.FrameBroker.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/Interop/Interop.FrameProvider.cs [new file with mode: 0755]
src/Tizen.NUI/src/internal/Interop/Interop.Libraries.cs [new file with mode: 0755]
src/Tizen.NUI/src/public/NUIApplication.cs
src/Tizen.NUI/src/public/TransitionAnimations/TransitionAnimations.cs [new file with mode: 0755]
src/Tizen.NUI/src/public/TransitionOptions/TransitionOptions.cs [new file with mode: 0755]
test/Tizen.NUI.Seamless/NUISimpleCallee/NUISimpleCallee.cs [new file with mode: 0755]
test/Tizen.NUI.Seamless/NUISimpleCallee/NUISimpleCallee.csproj [new file with mode: 0755]
test/Tizen.NUI.Seamless/NUISimpleCallee/shared/res/NUISimpleCallee.png [new file with mode: 0755]
test/Tizen.NUI.Seamless/NUISimpleCallee/tizen-manifest.xml [new file with mode: 0755]
test/Tizen.NUI.Seamless/NUISimpleCaller/NUISimpleCaller.cs [new file with mode: 0755]
test/Tizen.NUI.Seamless/NUISimpleCaller/NUISimpleCaller.csproj [new file with mode: 0755]
test/Tizen.NUI.Seamless/NUISimpleCaller/shared/res/NUISimpleCaller.png [new file with mode: 0755]
test/Tizen.NUI.Seamless/NUISimpleCaller/tizen-manifest.xml [new file with mode: 0755]