From 4446edb5219795eb011f40ce41d09e67e8a22053 Mon Sep 17 00:00:00 2001 From: seungho Date: Thu, 18 Nov 2021 17:31:49 +0900 Subject: [PATCH] [NUI] Make image visual actions protected Signed-off-by: seungho --- src/Tizen.NUI/src/public/BaseComponents/AnimatedImageView.cs | 3 ++- src/Tizen.NUI/src/public/BaseComponents/ImageView.cs | 9 ++++++--- src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs | 3 ++- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/AnimatedImageView.cs b/src/Tizen.NUI/src/public/BaseComponents/AnimatedImageView.cs index 5c3c9b0..f86c90d 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/AnimatedImageView.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/AnimatedImageView.cs @@ -360,7 +360,8 @@ namespace Tizen.NUI.BaseComponents /// Actions property value to Jump to the specified frame. /// This property can be redefined by child class if it use different value. /// - protected internal int ActionJumpTo { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionJumpToGet(); + [EditorBrowsable(EditorBrowsableState.Never)] + protected int ActionJumpTo { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionJumpToGet(); #endregion Property #region Method diff --git a/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs b/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs index f339ce3..e8b1c13 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs @@ -694,19 +694,22 @@ namespace Tizen.NUI.BaseComponents /// Actions property value to Play animated images. /// This property can be redefined by child class if it use different value. /// - protected internal int ActionPlay { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionPlayGet(); + [EditorBrowsable(EditorBrowsableState.Never)] + protected int ActionPlay { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionPlayGet(); /// /// Actions property value to Pause animated images. /// This property can be redefined by child class if it use different value. /// - protected internal int ActionPause { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionPauseGet(); + [EditorBrowsable(EditorBrowsableState.Never)] + protected int ActionPause { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionPauseGet(); /// /// Actions property value to Stop animated images. /// This property can be redefined by child class if it use different value. /// - protected internal int ActionStop { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionStopGet(); + [EditorBrowsable(EditorBrowsableState.Never)] + protected int ActionStop { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionStopGet(); internal VisualFittingModeType ConvertFittingModetoVisualFittingMode(FittingModeType value) { diff --git a/src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs b/src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs index 462abc6..9c37e3c 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs @@ -528,7 +528,8 @@ namespace Tizen.NUI.BaseComponents /// Actions property value to Jump to the specified frame. /// This property can be redefined by child class if it use different value. /// - protected internal int ActionJumpTo { get; set; } = Interop.LottieAnimationView.AnimatedVectorImageVisualActionJumpToGet(); + [EditorBrowsable(EditorBrowsableState.Never)] + protected int ActionJumpTo { get; set; } = Interop.LottieAnimationView.AnimatedVectorImageVisualActionJumpToGet(); #endregion Property -- 2.7.4