-
Notifications
You must be signed in to change notification settings - Fork 267
SetVisibleBounds #7259
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
Closed
Closed
SetVisibleBounds #7259
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: Eunki, Hong <[email protected]>
In dali-csharp-binder, API is CSharp_Dali_Model_MeshHitSignal_Disconnect, while in csharp interop, API is CSharp_Dali_MotionData_MeshHitSignal_Disconnect.
To resolve ABI break, let we revert AddRenderable return uint, instead of void Signed-off-by: Eunki, Hong <[email protected]>
This reverts commit 6a91806.
Signed-off-by: Jiyun Yang <[email protected]>
- Update version and create PR - Rebase main to DevelNUI - Rebase DevelNUI to main
…ung#6989) * [NUI] Add TargetMaskOnce, SourceMaskOnce Property to MaskEffect and Add Mask Effect Sample. * [NUI] Add mask alignment note and one-time render flag to Maskeffect And removed unused images. --------- Co-authored-by: ANZ1217 <[email protected]>
Signed-off-by: jmm <[email protected]>
Signed-off-by: jmm <[email protected]>
Signed-off-by: jmm <[email protected]>
Signed-off-by: Bowon Ryu <[email protected]>
"<br>", "<br/>", "<br />" Signed-off-by: Bowon Ryu <[email protected]>
If a view's LayoutDirection is changed, then its all descendants which follow the view's LayoutDirection should update layout.
To enable overriding behavior of Raise* and Lower* methods, the following protected virtual hooks are added. - OnRaiseToTop - OnLowerToBottom - OnRaise - OnLower - OnRaiseAbove - OnLowerBelow
DALi has a bug that setting Size property with 0 does not work. However, setting SizeWidth or SizeHeight property with 0 works. So in NUI Layout, size is updated by setting SizeWidth and SizeHeight properties.
UpdateLayout calculates sizes and positions of views in all layers if the view's layout is required to be updated. e.g. RequestLayout() is called for the view. Since UpdateLayout calculates sizes and positions of views manually right now, do not abuse calling it.
Signed-off-by: Jiyun Yang <[email protected]>
Signed-off-by: Jiyun Yang <[email protected]>
### Description of Change ### Introduce SetMaskEffect to TextLabel Now we can apply mask directly to textlabel! DALi patch: https://review.tizen.org/gerrit/c/platform/core/uifw/dali-csharp-binder/+/326700
Add CommonStyle.ItemPadding: Adds cell padding to the layout of the Markdown document. This provides more consistent and predictable behavior than the previous CommonStyle.Margin. Removing CommonStyle.Margin because it is obsolete due to ItemPadding. If in the future we need separate Margins for each UI blocks, we will add separate Styles. (like ThematicBreakStyle.Margin) Add Top and Bottom margins to ListStyle and Item. This also provides more consistent spacing than the previous behavior. Signed-off-by: Bowon Ryu <[email protected]>
….Custom to speed up ctor time
1.Add the ShaderHinkt to support custom shader file caching : When creating shader using ShaderHint.FileCaching, this shader is saved to custom shader folder and it can be used in other proccess without compile 2.Add PrecompileShader sample : For test precompilng shader, i added one sample in Tizen.NUI.Sample Related patches: https://review.tizen.org/gerrit/c/platform/core/uifw/dali-core/+/326718 https://review.tizen.org/gerrit/c/platform/core/uifw/dali-adaptor/+/326629 https://review.tizen.org/gerrit/c/platform/core/uifw/dali-toolkit/+/326721
### Description of Change ### Add Visuals.GradientVisual Class
Signed-off-by: Jiyun Yang <[email protected]>
Signed-off-by: Jiyun Yang <[email protected]>
Signed-off-by: Jiyun Yang <[email protected]>
Expose MarkdownParser as a static class. Add static method to convert Markdown to plain text. Signed-off-by: Bowon Ryu <[email protected]>
… RenderEffect refernce at View Let we add the parameter whether we dispose effect automatically or not. Usually user didn't want to keep the effects what they added to the view. To support dispose the RenderEffect who set the effect as instance case, Let we make new API for dispose instance RenderEffect. ClearRenderEffect(bool disposeEffect = false) Signed-off-by: Eunki, Hong <[email protected]>
…Gadget Signed-off-by: Hyeon-Uk <[email protected]>
Signed-off-by: Hyeon-Uk <[email protected]>
Signed-off-by: Hyeon-Uk <[email protected]>
to OneShotServiceLifecycleChanged Signed-off-by: Hyeon-Uk <[email protected]>
Signed-off-by: Juyeon Lee <[email protected]> Co-authored-by: Juyeon Lee <[email protected]>
Use converted locale instead of constructor param locale string Signed-off-by: Hyeon-Uk <[email protected]>
before : service-run -> OnPreCreate after : OnPreCreate -> service.run Reason : It can make it easier for developers to initialize OneShorService's variables in `NUIGadget.OnPreCreate()` Signed-off-by: Hyeon-Uk <[email protected]> Co-authored-by: hjhun <[email protected]>
If the 'serviceFactory' is null, the constructor of the NUIGadget throws the ArgumentNullException. Signed-off-by: Hwankyu Jhun <[email protected]>
Signed-off-by: Changgyu Choi <[email protected]>
Signed-off-by: Changgyu Choi <[email protected]>
Signed-off-by: Eunki, Hong <[email protected]>
The GSourceManager uses ConcurrentQueue to manage events. After this patch is applied, the event loop processes only one event at a time. Signed-off-by: Hwankyu Jhun <[email protected]>
…SetChangedEvent Update example code for UnsetChangedEvent and SetChangedEvent functions. Signed-off-by: Unsung Lee <[email protected]>
Privilege format is just like web address, but it is not the real address. Signed-off-by: Unsung Lee <[email protected]>
In Run method, TizenCore.Spawn can return null value. Therefore, check if the _task value is null before _task.Post() Signed-off-by: Hyeon-Uk <[email protected]>
* Implement NUIGadgetManager.Refresh function Refresh() method will remount gadget path of caller app. Caller should unload all the gadgets before use the method. This method allow an application to load updated resource package without restarting the application process. * Fix Coding Rule Remove Blank Line Repositioning Braces
* [NUI.Gadget] Fix NUIGadgetManager.Refresh - Force caller to check gadget's unload state - Calling GC in Refresh, not Unload * [NUI.Gadget] Fix NUIGadgetManager.Refresh error behavior - InvalidOperationException: Thrown if any of gadgets is still loaded - IOException: Thrown if internal request fail.
…Initialized (Samsung#7249) Co-authored-by: Raunak Bhalotia <[email protected]>
Allow empty string input to change to default user Initialization of Applications.Current.DirectoryInfo managed by static because the value of DirectoryInfo may change after RemountSubsession Signed-off-by: Ilho Kim <[email protected]> Co-authored-by: hjhun <[email protected]>
Signed-off-by: Jaehyun Kim <[email protected]> Co-authored-by: Dohyun Pyun <[email protected]>
Collaborator
Build Error: |
7fc2cc7 to
fbc1772
Compare
Collaborator
Build Error: |
Contributor
|
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days |
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
API Changes