X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.NUI.Wearable%2Fsrc%2Fpublic%2FRecyclerView%2FRecycleLayoutManager.cs;h=e57666aa2df5aa26a10d794cbf9180b19482d3e7;hb=58283d6a09a7f531af61ae7b27b574603ef244df;hp=bf6c58979cc0c768900b35f417a820df58e522b0;hpb=47538a7ba367af182eba34d849654848c3f9b34b;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI.Wearable/src/public/RecyclerView/RecycleLayoutManager.cs b/src/Tizen.NUI.Wearable/src/public/RecyclerView/RecycleLayoutManager.cs index bf6c589..e57666a 100755 --- a/src/Tizen.NUI.Wearable/src/public/RecyclerView/RecycleLayoutManager.cs +++ b/src/Tizen.NUI.Wearable/src/public/RecyclerView/RecycleLayoutManager.cs @@ -17,6 +17,7 @@ using Tizen.NUI.BaseComponents; using Tizen.NUI.Components; using System.Collections.Generic; using System.ComponentModel; +using System; namespace Tizen.NUI.Wearable { @@ -25,7 +26,7 @@ namespace Tizen.NUI.Wearable /// Lay out RecycleItem and recycle RecycleItem. /// /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public class RecycleLayoutManager { @@ -33,7 +34,7 @@ namespace Tizen.NUI.Wearable /// Enumeration for the direction in which the content is laid out /// /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public enum Orientation { @@ -41,14 +42,14 @@ namespace Tizen.NUI.Wearable /// Vertical /// /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] Vertical = 0, /// /// Horizontal /// /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] Horizontal = 1, } @@ -57,7 +58,7 @@ namespace Tizen.NUI.Wearable /// Container which contains RecycleItems. /// /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public View Container { get; set; } @@ -65,7 +66,7 @@ namespace Tizen.NUI.Wearable /// Size of RecycleItem. /// /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public Size ItemSize { get; set; } = new Size(); @@ -73,7 +74,7 @@ namespace Tizen.NUI.Wearable /// Get/Set the orientation in the layout. /// /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public Orientation LayoutOrientation { get; set; } = Orientation.Vertical; @@ -81,7 +82,7 @@ namespace Tizen.NUI.Wearable /// How far can you reach the next item. /// /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public float StepSize { get; protected set; } @@ -89,14 +90,14 @@ namespace Tizen.NUI.Wearable /// How far can you reach the next item. /// /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public int DataCount { get; set; } /// /// The last scrolled position which is calculated by ScrollableBase. The value should be updated in the Recycle() method. /// - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] protected float PrevScrollPosition { get; set; } @@ -105,7 +106,7 @@ namespace Tizen.NUI.Wearable /// /// Scroll position which is calculated by ScrollableBase /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public virtual void Layout(float scrollPosition) { @@ -116,7 +117,7 @@ namespace Tizen.NUI.Wearable /// This is called to find out how much container size can be. /// /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public virtual float CalculateLayoutOrientationSize() { @@ -129,7 +130,7 @@ namespace Tizen.NUI.Wearable /// Scroll position which is calculated by ScrollableBase /// List of RecycleItems which should be recycled. /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public virtual List Recycle(float scrollPosition) { @@ -141,7 +142,7 @@ namespace Tizen.NUI.Wearable /// /// Scroll position which is calculated by ScrollableBase /// 8 - /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public virtual float CalculateCandidateScrollPosition(float scrollPosition) { @@ -156,6 +157,7 @@ namespace Tizen.NUI.Wearable /// The direction to move the focus towards. /// Whether the focus movement should be looped within the control. /// The next keyboard focusable view in this control or an empty handle if no view can be focused. + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public virtual View RequestNextFocusableView(View currentFocusedView, View.FocusDirection direction, bool loopEnabled) {