[NUI] Make image visual actions protected
authorseungho <sbsh.baek@samsung.com>
Thu, 18 Nov 2021 08:31:49 +0000 (17:31 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Mon, 22 Nov 2021 10:54:11 +0000 (19:54 +0900)
Signed-off-by: seungho <sbsh.baek@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/AnimatedImageView.cs
src/Tizen.NUI/src/public/BaseComponents/ImageView.cs
src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs

index 5c3c9b0..f86c90d 100755 (executable)
@@ -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.
         /// </summary>
-        protected internal int ActionJumpTo { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionJumpToGet();
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        protected int ActionJumpTo { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionJumpToGet();
         #endregion Property
 
         #region Method
index f339ce3..e8b1c13 100755 (executable)
@@ -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.
         /// </summary>
-        protected internal int ActionPlay { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionPlayGet();
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        protected int ActionPlay { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionPlayGet();
 
         /// <summary>
         /// Actions property value to Pause animated images.
         /// This property can be redefined by child class if it use different value.
         /// </summary>
-        protected internal int ActionPause { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionPauseGet();
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        protected int ActionPause { get; set; } = Interop.AnimatedImageView.AnimatedImageVisualActionPauseGet();
 
         /// <summary>
         /// Actions property value to Stop animated images.
         /// This property can be redefined by child class if it use different value.
         /// </summary>
-        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)
         {
index 462abc6..9c37e3c 100755 (executable)
@@ -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.
         /// </summary>
-        protected internal int ActionJumpTo { get; set; } = Interop.LottieAnimationView.AnimatedVectorImageVisualActionJumpToGet();
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        protected int ActionJumpTo { get; set; } = Interop.LottieAnimationView.AnimatedVectorImageVisualActionJumpToGet();
         #endregion Property