-
Notifications
You must be signed in to change notification settings - Fork 258
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
[NUI] Add Internal RequestLayout and OnReqeustLayout virtual method #6588
base: DevelNUI
Are you sure you want to change the base?
Conversation
Internal API ChangedAdded: 1, Removed: 0, Changed: 0Added+ /// <since_tizen>none</since_tizen
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ System.Void Tizen.NUI.LayoutItem::OnRequestLayout()
|
Internal API ChangedAdded: 1, Removed: 0, Changed: 0Added+ /// <since_tizen>none</since_tizen
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ System.Void Tizen.NUI.LayoutItem::OnRequestLayout(Tizen.NUI.LayoutItem)
|
c9eda11
to
772cc29
Compare
Hello, There was a diff and conflict between DevelNUI and main, causing difficulties in integrating NUI. Therefore, a hard reset was performed on DevelNUI. As a result, the pull requests (https://github.com/Samsung/TizenFX/pulls) in DevelNUI are now conflicting. To resolve this, you can go to the specific PR, where you will see an error indicating a conflict. You can then use the command line to resolve the conflict.
I'm sorry for the inconvenience. |
…ung#6609) Co-authored-by: Xiaohui Fang <[email protected]>
When owner class modified and layout need to be changed, RequestLayout will be called, but there are no way to notify and perform specific actions on derived Layouts. Now RequestLayout intenrally pass the requester item and invoke OnRequestLayout method. Use this virtual function by overriding will solve this request.
Internal API ChangedAdded: 1, Removed: 0, Changed: 0Added+ /// <since_tizen>none</since_tizen
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ System.Void Tizen.NUI.LayoutItem::OnRequestLayout(Tizen.NUI.LayoutItem)
|
Hello, There was a diff and conflict between DevelNUI and main, causing difficulties in integrating NUI. Therefore, a hard reset was performed on DevelNUI. As a result, the pull requests (https://github.com/Samsung/TizenFX/pulls) in DevelNUI are now conflicting. To resolve this, you can go to the specific PR, where you will see an error indicating a conflict. You can then use the command line to resolve the conflict. git fetch upstream I'm sorry for the inconvenience. |
When owner class modified and layout need to be changed, RequestLayout will be called, but there are no way to notify and perform specific actions on derived Layouts.
Use this virtual function by overriding will solve this request.
Description of Change
API Changes