-
Notifications
You must be signed in to change notification settings - Fork 268
[NUI] In Maximized state, overlayTimer is maintained. #7352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
JoogabYun
wants to merge
450
commits into
Samsung:DevelNUI
Choose a base branch
from
JoogabYun:BorderWindow_1127_1
base: DevelNUI
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Jiyun Yang <[email protected]>
Signed-off-by: Jiyun Yang <[email protected]>
Signed-off-by: Jiyun Yang <[email protected]>
This PR will deprecate `KeyFrames.Add` API with AlphaFunction. Their is no way to interpolate each keyframes by alpha function. Instead, we can control it by `AnimateBetween`'s intepolate enum. So the inputed alpha function didn't have any efforts. So need to remove it. Signed-off-by: Eunki, Hong <[email protected]>
* Define Extents.Zero and apply it * avoid using PropertyValue when get/set Padding and Margin Signed-off-by: Jiyun Yang <[email protected]>
Signed-off-by: jmm <[email protected]>
- EmotionAnimator.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=29 - MarkdownParser.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=151 - MarkdownUIBuilder.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=162 - ViewStyle.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2118 - PropertyValue.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2119 - ConstraintFunction.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2320 - ConstraintFunction.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2321 - ConstraintFunction.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2322 - ConstraintFunction.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2323 - ConstraintFunction.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2324 - ConstraintFunction.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2325 - ConstraintFunction.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2326 - ConstraintFunction.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2327 - ConstraintFunction.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2328 - ConstraintFunction.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=2329 - BindingExtensions.cs: https://sa.sec.samsung.net/dm/tizen10/page/review#PRJID=1&WGID=4909
Signed-off-by: Eunki, Hong <[email protected]>
Signed-off-by: Jiyun Yang <[email protected]>
Signed-off-by: Eunki, Hong <[email protected]>
ManufacturerDataLength ManufacturerData Name ServiceUuidList ServiceCount Signed-off-by: Wootak Jung <[email protected]>
Since Extents.Zero is static variable, it should not be disposed.
This reverts commit 9448fa0.
Signed-off-by: jmm <[email protected]>
Since LayoutItem implements IDisposable but it does not inherit from BaseHandle, so property Disposed is added to LayoutItem like BaseHandle.
FlexLayout requires MarkDirty if child layout's layout properties are changed. e.g. MarkDirty is required if child layout's Width/HeightSpecification is changed.
Let we allow to generate images with pre-multiplied options. Relative dali patch : - https://review.tizen.org/gerrit/c/platform/core/uifw/dali-csharp-binder/+/328075 Signed-off-by: Eunki, Hong <[email protected]>
It will throw exception when PROFILE_TV defined, and try to call Show() Hide() for CustomView. Signed-off-by: Eunki, Hong <[email protected]>
Signed-off-by: Eunki, Hong <[email protected]>
Signed-off-by: jykeon <[email protected]>
* [Applications.Common] Add KeepAlive for preventing _resControlCallback GC Signed-off-by: Changgyu Choi <[email protected]> * Add KeepAlive for preventing gc Signed-off-by: Changgyu Choi <[email protected]> --------- Signed-off-by: Changgyu Choi <[email protected]> Co-authored-by: hjhun <[email protected]>
Let we prepare to create view at preload time if native engine support it. Relative dali patch https://review.tizen.org/gerrit/c/platform/core/uifw/dali-csharp-binder/+/328221 Signed-off-by: Eunki, Hong <[email protected]>
Let we move AsyncImageLoader to public, and write some comments for it. Signed-off-by: Eunki, Hong <[email protected]>
The callstack: Process terminated. A callback was made on a garbage collected delegate of type 'Tizen.NUI!Tizen.NUI.BaseComponents.WebView+JavaScriptMessageHandler::Invoke'. at Tizen.NUI.NDalicPINVOKE.ApplicationMainLoop(System.Runtime.InteropServices.HandleRef) at Tizen.NUI.Application.MainLoop() at Tizen.NUI.NUICoreBackend.Run(System.String[]) at Tizen.Applications.CoreApplication.Run(System.String[]) at Tizen.NUI.NUIApplication.Run(System.String[]) at Tizen.TV.FLUX.FluxApplication.Run(System.String[]) at Tizen.TV.Service.CNCapsule.Program.Main(System.String[]) DotNET onSigabrt called on com.samsung.tv.cnvoice-assistant / DN_ce-assistant(20535) onSigabrt called The reason might be that a local variable is gc-ed, but it is still used in unmanaged code, according to [1] and [2]. [1] https://stackoverflow.com/questions/6193711/call-has-been-made-on-garbage-collected-delegate-in-c [2] https://learn.microsoft.com/en-us/dotnet/framework/debug-trace-profile/callbackoncollecteddelegate-mda
Window insets are the inner size between window content and window edge. Window insets are required when system UI such as status bar, virtual keyboard, or clipboard appears on window to avoid window content obscured by them. To provide the combined window insets for the specified parts of the system UI, GetInsets is added to Window. The parameter insetsFlags of GetInsets is a bitwise combination of InsetsPartFlags values specifying which window insets parts to include.
Signed-off-by: Eunki, Hong <[email protected]>
To make ensure we can call Awake(), we should initialize this instance at mainthread at least once. Signed-off-by: Eunki, Hong <[email protected]>
We should check it after `Interop.Application.PreInitialize()` called. Signed-off-by: Eunki, Hong <[email protected]>
When TryDequeue Fail, the function return without resetting '_processing' flag. To handle the case, it should not return during the loop. Also, to handle the TryDequeue fail properly, it requires some retry count. Reset retry count upon successfully handling lifecycle event
4e42b5a to
bf9e4ca
Compare
Member
|
Please note that, API13 branch is now sync to VD FET, and main branch is upgraded to API14. |
91aa1cb to
e93fa20
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of Change
In Maximized state, overlayTimer is maintained.
API Changes