huayong.xu [Mon, 7 Apr 2025 08:41:02 +0000 (16:41 +0800)]
[NUI] Fix more CA2000 warnings in NUI.
After this patch, about 87 CA2000 warnings are remaining in VS.
huayong.xu [Thu, 3 Apr 2025 07:58:13 +0000 (15:58 +0800)]
[NUI] Fix some CA2000 warnings in NUI
Some directives '#pragma warning disable CA2000' are removed too.
Eunki, Hong [Wed, 16 Apr 2025 10:24:42 +0000 (19:24 +0900)]
[NUI][DirectRenderingGLView] Add RenderCallbackInput include WorldColor
Let we include `RenderCallbackInput` world color infomation.
It will be useful when DRGLView itself (or it's parent's) opacity changed.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Wed, 16 Apr 2025 08:50:03 +0000 (17:50 +0900)]
[NUI] Catch exception when Tizen.System.SystemSettings throw excpetion
There was some exception throwing at some targets s.t. SystemSettings not supported.
If then, we should not do anything after those exception occured.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Thu, 17 Apr 2025 01:17:56 +0000 (10:17 +0900)]
[NUI] Bump Ubuntu version in github action to 24.04
Add missing jobs #6848
Also, bump-up the version as 24.04, not 22.04
(24.04 is latest)
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Tue, 15 Apr 2025 07:34:45 +0000 (16:34 +0900)]
[NUI.Samples] Change corner radius source name as "ViewCornerRadius"
Their was conflict issue in dali side, both DecoratedVisualRenderer and
Control has same name as animatable.
To fix this issue, we should seperate the name as unique.
After now, we sould access to View's CornerRadius by string "viewCornerRadius".
Relative dali patch:
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-toolkit/+/322738
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Jiyun Yang [Wed, 16 Apr 2025 05:03:22 +0000 (14:03 +0900)]
[NUI] Remove Default field from UI structs except UIColor
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
everLEEst(SangHyeon Lee) [Tue, 15 Apr 2025 08:12:01 +0000 (17:12 +0900)]
[NUI] Fix layout sibiling order changes by RaiseToTop and LowerToBottom
Eunki, Hong [Wed, 26 Mar 2025 04:07:36 +0000 (13:07 +0900)]
[NUI] Bind Constraint with custom function
Let we bind custom constraints generate API.
Relative dali patch :
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-toolkit/+/322672 (To make CornerRadius as constraint input)
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-csharp-binder/+/322068
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
joogab.yun [Wed, 9 Apr 2025 06:59:53 +0000 (15:59 +0900)]
[NUI](GestureOptions) Add missing comments.
Eunki, Hong [Thu, 10 Apr 2025 01:40:42 +0000 (10:40 +0900)]
[NUI] Implement Rotation.Assign + Call Constraint.Remove at Dispose + Minor cleanup
Prepare to implement NUI Constraint feature.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
shmin [Wed, 16 Apr 2025 08:12:09 +0000 (17:12 +0900)]
Bump Ubuntu version in github action to 22.04 (#6848)
dongsug.song [Mon, 14 Apr 2025 04:20:28 +0000 (13:20 +0900)]
Revert "[NUI] Rewrite LowerFirstLetter"
This reverts commit
b61e9111329191dc5ab0f28412e3fc21b2231134.
akash1-kumar [Fri, 11 Apr 2025 04:35:27 +0000 (10:05 +0530)]
[Tizen.Network.WiFiDirect] Add VSIE and connection related APIs (#6755)
* [Tizen.Network.WiFiDirect] Add new wifi-direct API signature
Signed-off-by: Akash Kumar <akash1.kumar@.samsung.com>
* Implement newly added wifi-direct apis
Signed-off-by: Akash Kumar <akash1.kumar@.samsung.com>
* Apply review comments
Signed-off-by: Akash Kumar <akash1.kumar@.samsung.com>
* Update description
Signed-off-by: Akash Kumar <akash1.kumar@.samsung.com>
* Apply review comment
Signed-off-by: Akash Kumar <akash1.kumar@.samsung.com>
---------
Signed-off-by: Akash Kumar <akash1.kumar@.samsung.com>
Co-authored-by: Akash Kumar <akash1.kumar@.samsung.com>
newb1e-kim [Wed, 9 Apr 2025 04:54:09 +0000 (13:54 +0900)]
[Applications.Common] Add internal API to toggle watchdog
Add internal APIs to handling watchdog timer
Implement WatchdogTimer, for application to request related operation
dongsug.song [Tue, 8 Apr 2025 13:22:03 +0000 (22:22 +0900)]
[NUI] version up to 22413
dongsug.song [Fri, 4 Apr 2025 07:57:44 +0000 (16:57 +0900)]
[NUI] Update and sync all the latest patches related to WebView that have been modified so far
- Add SetVideoHole() for EFL window
- Fix WebView delegate GC error
- Add WebView DeviceListGet,SetDefaultAudio
- Add FeedMouseWheel as hidden api
- Add some logs in NUICoreBackend.Exit() by request from GBM
joogab.yun [Mon, 7 Apr 2025 07:15:24 +0000 (16:15 +0900)]
[NUI] Add SetPanGestureMinimumTouchesRequired and SetPanGestureMaximumTouchesRequired() to GestureOptions.
This sets MinimumTouchesRequired and MaximumTouchesRequired when creating a PanGesture.
Eunki Hong [Fri, 4 Apr 2025 17:50:36 +0000 (02:50 +0900)]
[NUI] Keep DRGLView delegate at least 1 frame rendering
Since DRGLView's rendering callback invoked at render thread,
we need to keep those delegate at least 1 frame until those
delegate will never be called at native side.
We have good internal class for this case, named `RenderThreadObjectHolder`.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
jmm [Tue, 25 Feb 2025 08:45:39 +0000 (17:45 +0900)]
[NUI] Bind corner radius properties
Signed-off-by: jmm <j0064423.lee@samsung.com>
Bowon Ryu [Wed, 2 Apr 2025 06:03:31 +0000 (15:03 +0900)]
[NUI] Remove text build warning CA1031
https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1031
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
Jiyun Yang [Wed, 2 Apr 2025 06:48:08 +0000 (15:48 +0900)]
[NUI] Fix wrong disposal bug
Previously BackgroundExtraData did dispose its disposable members which can be also used outside of this view. So it caused problems, for example it could dispose static color member such as Color.Black
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Jiyun Yang [Wed, 2 Apr 2025 02:13:53 +0000 (11:13 +0900)]
[NUI] Remove unused NUI extension
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Eunki Hong [Tue, 1 Apr 2025 15:17:13 +0000 (00:17 +0900)]
[NUI] Reduce build warning CA1805 (Deprecated, BaseComponents, etc)
Phase 2 of #6805.
Build warning counts : 1521 -> 1424 (Reduce 97)
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki Hong [Tue, 1 Apr 2025 12:50:09 +0000 (21:50 +0900)]
[NUI] Reduce more build warnings : CA1707, CA2211, CA1815, CA1720
- CA1707: Remove the underscores from member name
- CA2211: Non-constant fields should not be visible
- CA1815: {Strut} should override the equality (==) and inequality (!=) operators
- CA1720: Identifier 'Double' contains type namew
Build warning counts 1524 -> 1426 (Reduce 98)
Build command : dotnet build /p:NuiRoslynAnalysis=true
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki Hong [Tue, 1 Apr 2025 15:46:05 +0000 (00:46 +0900)]
[NUI] Apply Global.ruleset what TizenFX using
Let we use `analyzers.props` what `Global.ruleset` defined already.
For NUI csproj hijack, let we don't import duplicated property settings
Build warning : 1523 -> 1407 (Reduce 116)
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Jiyun Yang [Wed, 2 Apr 2025 02:06:30 +0000 (11:06 +0900)]
[NUI] Fix wrong equality check of UICorner
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Leee [Thu, 3 Apr 2025 06:56:26 +0000 (15:56 +0900)]
[NUI] Rewrite LowerFirstLetter
Reduce string creation.
- Prune unnecessary case
- Unsafe char[] access to avoid string creation
Jaehyun Cho [Tue, 1 Apr 2025 11:02:44 +0000 (20:02 +0900)]
[NUI] version up 22412
Bowon Ryu [Tue, 1 Apr 2025 09:45:38 +0000 (18:45 +0900)]
[NUI] Fix height calculation of TextLabelLayout
When the label's HeightSpecification is wrap content,
the result of GetHeightForWidth() is used to calculate the text height.
The previous behavior simply used NaturalSize,
so it could not guarantee the behavior of the case below.
```
var label = new TextLabel
{
Text = "Something long long text...",
WidthSpecification = LayoutParamPolicies.WrapContent,
HeightSpecification = LayoutParamPolicies.WrapContent,
MaximumSize = new Size(400, 400),
Padding = new Extents(25, 25, 10, 10),
MultiLine = true,
};
```
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
Jiyun Yang [Tue, 1 Apr 2025 05:12:55 +0000 (14:12 +0900)]
[NUI] Implement IEquatable for primitive structures and make them immutable
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
Eunki, Hong [Tue, 1 Apr 2025 08:39:24 +0000 (17:39 +0900)]
[NUI.Samples] Make NUI Samples use Renderable instead Renderer
Let we use latest `Renderable` class, instead of `Renderer`.
Furthermore, Let we implement some missing property for Renderable : UpdateArea
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Seungho Baek [Wed, 11 Dec 2024 10:16:28 +0000 (19:16 +0900)]
[NUI] Refactoring of Rendering Directory
Signed-off-by: Seungho Baek <sbsh.baek@samsung.com>
Eunki Hong [Mon, 31 Mar 2025 14:01:58 +0000 (23:01 +0900)]
[NUI.UIColor] Explain more constant colors
Let we follow all colors from https://www.w3.org/TR/css-color-3 X11 colors.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki Hong [Mon, 31 Mar 2025 15:05:59 +0000 (00:05 +0900)]
[NUI] Reduce build warning CA1805: Do not initialize unnecessarily (Phase Internal/Devel/some public)
https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1805
Let we don't initialize known values as default.
warning messages
```
TizenFX/src/Tizen.NUI/src/devel/Lite/UIRect.cs(66,35): warning CA1805: Member 'Zero' is explicitly initialized to its default value
TizenFX/src/Tizen.NUI/src/internal/Application/Application.cs(369,55): warning CA1805: Member 'rootIdleCallback' is explicitly initialized to its default value
...
```
For now, just resolve this errors for internal and devel and some non-touched public recently.
Warning counts 1817 -> 1519 (reduce 298 warnings)
Remained warnings for CA1805 : `BaseComponents`, `Color`, `Renderer`.
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki Hong [Mon, 31 Mar 2025 14:23:31 +0000 (23:23 +0900)]
[NUI] Remove build warnings
- Fix comments error at UIVector3
- Make Alignment's Padding getter and setter name as `GetAlignmentPaddng()` / `SetAlignmentPadding()`. (It was same name with `UIExtents GetPadding()`
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Mon, 31 Mar 2025 05:25:28 +0000 (14:25 +0900)]
[NUI.Palette] Make Palette.GenerateAsync() thread safe
Until now, We use some static pointer at `ColorCutQuantizer` class.
Since we could create that class at worker thread freely, we should not access
static pointer without any locking points.
And also, those static values should not be static.
To fix this issue, let we make `ColorCutQuantizer.Vbox` hold it's parent,
and remove static keyword.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Mon, 31 Mar 2025 06:00:01 +0000 (15:00 +0900)]
[NUI] Define constant color values at seperated files
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Jiyun Yang [Fri, 14 Mar 2025 07:34:55 +0000 (16:34 +0900)]
[NUI] Remove UIColor constructor with vector4 and etc.
* Remove UIColor constructor with vector4 type.
* Add predefined colors: Yellow, Cyan, Magenta, Gray
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
huayong.xu [Wed, 26 Mar 2025 01:25:32 +0000 (09:25 +0800)]
[NUI] Remove code about boxing/unboxing in Layouting.
Junkyeong Kim [Fri, 21 Mar 2025 08:42:57 +0000 (17:42 +0900)]
[NUI] Add SetGestureGrabMode to InputGesture
Eunki, Hong [Thu, 27 Mar 2025 12:04:14 +0000 (21:04 +0900)]
[NUI.Samples] Make AsyncLoaderSample use Palette.
Add some case that using Palette feature.
Let make user could use Palette's color picking system by this demo
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
everLEEst(SangHyeon Lee) [Tue, 4 Feb 2025 11:13:09 +0000 (20:13 +0900)]
[NUI] Exclude layouting on invisible children
Bowon Ryu [Tue, 25 Mar 2025 05:12:29 +0000 (14:12 +0900)]
[NUI] Clean up system manager code
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
jmm [Tue, 25 Mar 2025 09:31:31 +0000 (18:31 +0900)]
[NUI] Add background blur effect option: blur once
Junkyeong Kim [Fri, 28 Mar 2025 04:09:49 +0000 (13:09 +0900)]
[NUI] Add SetGestureGrabMode to InputGesture
Changgyu Choi [Fri, 28 Mar 2025 01:32:53 +0000 (10:32 +0900)]
[Applications.Common] Update libiniparser so version
libiniparser has been updated to version 4.
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
kilig [Thu, 27 Mar 2025 05:45:15 +0000 (14:45 +0900)]
[Applications.Common] Add some properties for RecentApplicationInfo (#6767)
Signed-off-by: kilig <inkyun.kil@samsung.com>
Co-authored-by: hjhun <36876573+hjhun@users.noreply.github.com>
Jaehyun Cho [Wed, 26 Mar 2025 05:34:15 +0000 (14:34 +0900)]
[NUI] Fix to check IsPaddingHandledByNative for Padding getter
If a view.Layout.IsPaddingHandledByNative is true, then the
view.Padding setter sets view.Padding instead of view.Layout.Padding.
Because the padding is applied by DALi instead of NUI Layout.
In the same way, view.Padding getter gets view.Padding instead of
view.Layout.Padding if view.Layout.IsPaddingHandledByNative is true.
Jaehyun Cho [Wed, 26 Mar 2025 02:09:49 +0000 (11:09 +0900)]
[NUI] Fix AbsoluteLayout typo in calculating Padding size
Typo of padding top + end is fixed to top + bottom.
Jaehyun Cho [Tue, 25 Mar 2025 12:27:00 +0000 (21:27 +0900)]
[NUI] Fix SetSize of ExcludeLayouting with LayoutWidth/Height
Previously, ExcludeLayouting case sets layout size only if
Width/HeightSpecification is negative value.
If Width/HeightSpecification is negative value, then it is either
MatchParent or WrapContent instead of fixed size value.
Therefore, calculated layout size should be set to view size.
Now, LayoutWidth/Height is used instead of Width/HeightSpecification.
Width/HeightSpecification sets view size if it is fixed size value.
Unlike Width/HeightSpecification, LayoutWidth/Height does not set view
size although it is fixed size value. View size is set by Layout.
Therefore, the condition that LayoutWidth/Height is not fixed size value
is not the same with the condition that Width/HeightSpecification is not
fixed size value since view size may not be set.
To make the condition same as before, additional condition is added.
Jaehyun Cho [Thu, 20 Mar 2025 10:41:02 +0000 (19:41 +0900)]
[NUI] Fix Layout to respect MinimumSize and MaximumSize
Previously, MinimumSize and MaximumSize were not respected by Layout.
e.g. AbsoluteLayout, LinearLayout, RelativeLayout, etc.
Now, MinimumSize and MaximumSize are respected by Layout.
Since the priority of MinimumSize is higher than MaximumSize in DALi,
Layout also follows it.
Chihun Jeong [Wed, 26 Mar 2025 01:53:17 +0000 (10:53 +0900)]
Relocate the function about Font Variations and enhance its explanation (#6780)
Co-authored-by: ANZ1217 <chihun.jeong@samsung.com>
Eunki, Hong [Tue, 25 Mar 2025 10:36:45 +0000 (19:36 +0900)]
[NUI] Reduce build warnings at VisualObjects
- Remove CA1030
- Disable warning for CA2000 for several codes
- Fix unmatched binding function
- Remove CA1001 : Make VisualTransformInfo as disposable
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Tue, 25 Mar 2025 04:57:43 +0000 (13:57 +0900)]
[NUI] Keep CustomAlphaFunction's delegate at least 1 frame
Let we collect all custom alpha functor when we all Animate() API.
If we call Clear() or Animation become Dispose(), let we move those
delegates reference to some global static holder, named `RenderThreadObjectHolder`.
The `RenderThreadObjectHolder` will clear the items after at least 1 frame updated.
We determine the frame updated by the Animation's finished callback.
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Chihun Jeong [Tue, 25 Mar 2025 10:03:29 +0000 (19:03 +0900)]
[NUI] Introduce FONT_VARIATIONS Property (#6772)
* [NUI] Introduce FONT_VARIATIONS Property
* Edit comments and remove Bindable Property.
* Add new function SetProperty(int, float) to modify font variations
* Modify SetProperty function of TextEditor
* Adjust API
* Change SetProperty to InternalSetPropertyFloat
---------
Co-authored-by: ANZ1217 <chihun.jeong@samsung.com>
angler [Tue, 25 Mar 2025 05:36:52 +0000 (14:36 +0900)]
[NUI] version up 22411
Bowon Ryu [Thu, 20 Mar 2025 10:29:16 +0000 (19:29 +0900)]
[NUI] Clean up text code
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
Bowon Ryu [Thu, 20 Mar 2025 08:07:12 +0000 (17:07 +0900)]
[NUI] Minimize system LocaleLanguage API calls in Text
Every time we set Translatable text,
system LocaleLanguage API is called, which creates overhead.
This patch updates through static classes only when a specific value is needed.
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
Eunki, Hong [Thu, 20 Mar 2025 05:34:18 +0000 (14:34 +0900)]
[NUI] DirectRenderingGLView Demo
Add DirectRenderingGLView demo application
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Eunki, Hong [Fri, 14 Mar 2025 00:24:13 +0000 (09:24 +0900)]
[NUI](Rendering) Get newly added property index + Implement UpdateAreaExtents
Let we bind some missing enums for Renderer.
And also, make new property for extents update area of attached view.
relative dali patches:
- https://review.tizen.org/gerrit/c/platform/core/uifw/dali-core/+/321077
- https://review.tizen.org/gerrit/c/platform/core/uifw/dali-csharp-binder/+/321089
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dongsug.song [Fri, 21 Mar 2025 05:53:11 +0000 (14:53 +0900)]
[NUI] Remove github action error part
dongsug.song [Fri, 21 Mar 2025 04:36:14 +0000 (13:36 +0900)]
[NUI] Try to fix github action error
huayong.xu [Thu, 20 Mar 2025 03:24:12 +0000 (11:24 +0800)]
[NUI] Remove some unused codes that are related to Signal.
Jaehyun Cho [Wed, 19 Mar 2025 08:17:39 +0000 (17:17 +0900)]
[NUI] Add Min/Max of AbsoluteLayout cases in NUILayout
To test MinimumSize and MaximumSize of AbsoluteLayout in NUILayout,
those test cases are added.
Jaehyun Cho [Wed, 19 Mar 2025 07:48:44 +0000 (16:48 +0900)]
[NUI] Apply Margin to LinearLayout cases in NUILayout
In LinearLayout cases of NUILayout, LinearLayout is a child of
AbsoluteLayout.
To apply Margin of LinearLayout as a child of AbsoluteLayout,
AbsoluteLayout.SetLayoutBounds is added.
dongsug.song [Tue, 18 Mar 2025 04:52:48 +0000 (13:52 +0900)]
[NUI] Add github action of code style review only for NUI
Jaehyun Cho [Wed, 19 Mar 2025 05:59:52 +0000 (14:59 +0900)]
[NUI] Add LinearLayout cases in NUILayout
Jaehyun Cho [Tue, 18 Mar 2025 12:35:01 +0000 (21:35 +0900)]
[NUI] Fix NUILayout not to set margin/padding on ContentPage.Content
Since ContentPage uses custom layout to calculate its Content, Margin
and Padding on ContentPage.Content is not applied expectedly.
Therefore, instead, Margin and Padding is applied to a child view of
ContentPage.Content.
Jaehyun Cho [Tue, 18 Mar 2025 11:10:25 +0000 (20:10 +0900)]
[NUI] Add AbsoluteLayout.LayoutBounds cases in NUILayout
Jaehyun Cho [Tue, 18 Mar 2025 10:21:43 +0000 (19:21 +0900)]
[NUI] Restore AbsoluteLayout not to apply margin/padding without bounds
AbsoluteLayout is restored not to apply margin and padding if bounds are
not set by calling SetLayoutBounds().
It is because position is updated according to margin and padding.
If margin and padding is applied only with position instead of bounds,
position will be increased unexpectedly in OnLayout() each time.
Jaehyun Cho [Tue, 18 Mar 2025 10:18:02 +0000 (19:18 +0900)]
[NUI] Test AbsoluteLayout incorrect position update in NUILayout
By calling RequestUpdateLayout() without any change, it can be checked
if AbsoluteLayout position is updated unexpectedly.
Jaehyun Cho [Tue, 18 Mar 2025 05:30:52 +0000 (14:30 +0900)]
[NUI] Add NUILayout AbsoluteLayout MatchParent cases
AbsoluteLayout MatchParent cases are added to NUILayout.
Moreover, to organize each test case, Position cases are renamed.
dongsug.song [Fri, 31 Jan 2025 12:32:47 +0000 (21:32 +0900)]
[NUI] Remove NUI.Components not used for tv profile
Eunki Hong [Tue, 18 Mar 2025 13:51:00 +0000 (22:51 +0900)]
[NUI](ImageView) Create new visual if DesiredWidth/DesiredHeight changed.
Until now, we don't request image visual update if desired size changed.
The result of desired size applied and not have big difference. So we need to re-load the image if desired size changed
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Jaehyun Cho [Tue, 18 Mar 2025 08:24:04 +0000 (17:24 +0900)]
[NUI] Fix to apply text objects' padding after added to view
Previously, Padding of text objects such as TextLabel, TextField,
TextEditor was not applied if Padding was set after those objects were
added to Layout View.
e.g. The following did not work
var textLabel = new TextLabel();
absoluteLayoutView.Add(textLabel);
textLabel.Padding = padding;
Now, the above problem has been resolved by not clearing Padding of
those text objects.
Padding of those text objects is managed by native.
Eunki, Hong [Tue, 11 Feb 2025 06:54:22 +0000 (15:54 +0900)]
[NUI](Internal) Implement AsyncImageLoader ImageLoaded signal
Let we bind AsyncImageLoader's ImageLoaded signal,
so we can make it hidden easly in future.
Relative dali patches :
- https://review.tizen.org/gerrit/c/platform/core/uifw/dali-csharp-binder/+/320850
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Jaehyun Cho [Mon, 17 Mar 2025 09:38:36 +0000 (18:38 +0900)]
[NUI] Add IsPaddingManagedByNative to check if native manages padding
Padding of TextLabel, TextField and TextEditor is managed by native
instead of layout.
To indicate this, IsPaddingManagedByNative is added to LayoutItem.
Inhong [Mon, 24 Mar 2025 06:43:37 +0000 (15:43 +0900)]
[Tizen.Nlp][TCSACR-607] Remove Tizen.Nlp (#6686)
Tizen.Nlp was deprecated since API Level 11, so it is removed in API Level 13.
Taehyub Kim [Tue, 18 Mar 2025 05:20:12 +0000 (14:20 +0900)]
[NUI] version up 22410
Bowon Ryu [Mon, 17 Mar 2025 06:00:40 +0000 (15:00 +0900)]
[NUI] Avoid creation of property value in label
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
Bowon Ryu [Fri, 7 Mar 2025 11:04:20 +0000 (20:04 +0900)]
[NUI] Add EllipsisMode to TextLabel
Added EllipsisMode to automatically support auto scroll.
In case of EllipsisMode.AutoScroll,
when the text exceeds the layout, it will automatically scroll with animation.
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
Jaehyun Cho [Mon, 17 Mar 2025 06:46:56 +0000 (15:46 +0900)]
[NUI] Add NUI Layout test cases
To test NUI Layout, NUILayout project has been added to test.
This PR includes AbsoluteLayout test cases.
Jaehyun Cho [Mon, 17 Mar 2025 06:55:47 +0000 (15:55 +0900)]
[NUI] Fix AbsoluteLayout not to apply margin/padding for using pivot
AbsoluteLayout OnLayout calculated child size and position incorrectly
for using pivot cases.
This PR fixes AbsoluteLayout OnLayout not to apply margin and padding
for using pivot cases.
everLEEst(SangHyeon Lee) [Fri, 7 Mar 2025 04:16:46 +0000 (13:16 +0900)]
[NUI] Fix marpkup null type error
Jiyun Yang [Fri, 14 Mar 2025 07:33:02 +0000 (16:33 +0900)]
Notify view size and position updated by layout.
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
dongsug.song [Thu, 13 Mar 2025 11:07:27 +0000 (20:07 +0900)]
[NUI] Remove unused codes
Jaehyun Cho [Thu, 13 Mar 2025 07:24:11 +0000 (16:24 +0900)]
[NUI] Fix AbsoluteLayout not to use Dictionary taking child views
Not to block GC of child views, Dictionary taking child views is removed
from AbsoluteLayout.
Jaehyun Cho [Thu, 13 Mar 2025 05:57:28 +0000 (14:57 +0900)]
[NUI] Fix LayoutLength not to take invalid float values
LayoutLength is fixed not to take invalid float values such as
non-finite values, float.MinValue, float.MaxValue.
If user wants to use float.MinValue or float.MaxValue, then int.MinValue
or int.MaxValue are suggested.
Jaehyun Cho [Thu, 13 Mar 2025 04:52:54 +0000 (13:52 +0900)]
[NUI] Fix AbsoluteLayout to calculate size with WrapContent
AbsolteLayout is fixed to calculate view's size with WrapContent
correctly if child views have proportional position and fixed size.
hjhun [Sat, 15 Mar 2025 00:10:57 +0000 (09:10 +0900)]
[Applications.UnitedService] Add a new module for services (#6743)
* [Tizen.Applications] Add UnitedService
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Add debugging logs
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Initialize Tizen Core while calling OnCreate()
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Fix wrong implementation
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Handle commands
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Fix wrong implemenation about handling commands
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Change LogTag
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Applications] Fix Unload method
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Add ServiceManager
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Fix wrong descriptions
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Modify resource path
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Remove ServiceLoader class
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
* [Tizen.Applications] Refactor UnitedService
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
---------
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
dongsug.song [Fri, 14 Mar 2025 04:45:07 +0000 (13:45 +0900)]
[NUI] reorganize the NUI reviwer
Xiaohui Fang [Tue, 11 Mar 2025 08:45:57 +0000 (16:45 +0800)]
Revert "Add ptr pool"
This reverts commit
dc11d8a42bc79c683469535eb0507c16ede96e40.
Xiaohui Fang [Tue, 11 Mar 2025 08:45:43 +0000 (16:45 +0800)]
Revert "Add API for release IntPtr"
This reverts commit
18aeab0a75a23d13b01220bf5a8a49377979c12a.
Wonsik Jung [Tue, 11 Mar 2025 07:52:15 +0000 (16:52 +0900)]
[NUI] Version Up 22409 (#6729)
Xiaohui Fang [Tue, 11 Mar 2025 01:38:55 +0000 (09:38 +0800)]
Add API for release IntPtr
Xiaohui Fang [Tue, 11 Mar 2025 01:07:59 +0000 (09:07 +0800)]
Add ptr pool
Eunki Hong [Mon, 10 Mar 2025 07:47:00 +0000 (16:47 +0900)]
[NUI.Samples] Fix compile error after some typo error fix
`WidthSdpecification` --> `WidthSpecification`
`HeightSdpecification` --> `HeightSpecification`
`Disdpose()` --> `Dispose()`
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
everLEEst(SangHyeon Lee) [Fri, 7 Mar 2025 04:26:31 +0000 (13:26 +0900)]
Revert "[NUI] add asynchronous tasked animation play"
This reverts commit
c9cb5922a4eb67ea5b632ee3285256b9e66bd1ea.
huayong.xu [Fri, 7 Mar 2025 02:20:54 +0000 (10:20 +0800)]
[NUI] Remove boxing/unboxing in ScrollableBase, etc.