From: dongsug-song <35130733+dongsug-song@users.noreply.github.com>
Date: Wed, 2 Oct 2019 08:25:18 +0000 (+0900)
Subject: [NUI] Deprecate Tizen.NUI.UIComponents (#1044)
X-Git-Tag: 5.5_M2~46
X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c40c7f083ceadb6190188787a3e02da8465eac9;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git
[NUI] Deprecate Tizen.NUI.UIComponents (#1044)
* [NUI] Hide public things of Tizen.NUI.UIComponents
* [NUI] Hide the class ScrollView
---
diff --git a/src/Tizen.NUI/src/public/UIComponents/Button.cs b/src/Tizen.NUI/src/public/UIComponents/Button.cs
index 15324be..d4b3383 100755
--- a/src/Tizen.NUI/src/public/UIComponents/Button.cs
+++ b/src/Tizen.NUI/src/public/UIComponents/Button.cs
@@ -36,9 +36,13 @@ namespace Tizen.NUI.UIComponents
/// When the button is disabled, the background button and the selected visuals are replaced by their disabled visuals.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class Button : View
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty UnselectedVisualProperty = BindableProperty.Create("UnselectedVisual", typeof(PropertyMap), typeof(Button), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -55,7 +59,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.UNSELECTED_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectedVisualProperty = BindableProperty.Create("SelectedVisual", typeof(PropertyMap), typeof(Button), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -72,7 +77,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.SELECTED_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty DisabledSelectedVisualProperty = BindableProperty.Create("DisabledSelectedVisual", typeof(PropertyMap), typeof(Button), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -89,7 +95,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.DISABLED_SELECTED_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty DisabledUnselectedVisualProperty = BindableProperty.Create("DisabledUnselectedVisual", typeof(PropertyMap), typeof(Button), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -106,7 +113,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.DISABLED_UNSELECTED_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty UnselectedBackgroundVisualProperty = BindableProperty.Create("UnselectedBackgroundVisual", typeof(PropertyMap), typeof(Button), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -123,7 +131,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.UNSELECTED_BACKGROUND_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectedBackgroundVisualProperty = BindableProperty.Create("SelectedBackgroundVisual", typeof(PropertyMap), typeof(Button), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -140,8 +149,9 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.SELECTED_BACKGROUND_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
[EditorBrowsable(EditorBrowsableState.Never)]
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
public static readonly BindableProperty DisabledUnselectedBackgroundVisualProperty = BindableProperty.Create("DisabledUnselectedBackgroundVisual", typeof(PropertyMap), typeof(Button), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
var button = (Button)bindable;
@@ -157,7 +167,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.DISABLED_UNSELECTED_BACKGROUND_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty DisabledSelectedBackgroundVisualProperty = BindableProperty.Create("DisabledSelectedBackgroundVisual", typeof(PropertyMap), typeof(Button), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -174,7 +185,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.DISABLED_SELECTED_BACKGROUND_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty LabelRelativeAlignmentProperty = BindableProperty.Create("LabelRelativeAlignment", typeof(Align), typeof(Button), Align.End, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -210,7 +222,8 @@ namespace Tizen.NUI.UIComponents
default: return Align.End;
}
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty LabelPaddingProperty = BindableProperty.Create("LabelPadding", typeof(Vector4), typeof(Button), Vector4.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -227,7 +240,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.LABEL_PADDING).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ForegroundVisualPaddingProperty = BindableProperty.Create("ForegroundVisualPadding", typeof(Vector4), typeof(Button), Vector4.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -244,7 +258,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.FOREGROUND_VISUAL_PADDING).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty AutoRepeatingProperty = BindableProperty.Create("AutoRepeating", typeof(bool), typeof(Button), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -261,7 +276,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.AUTO_REPEATING).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty InitialAutoRepeatingDelayProperty = BindableProperty.Create("InitialAutoRepeatingDelay", typeof(float), typeof(Button), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -278,7 +294,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.INITIAL_AUTO_REPEATING_DELAY).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty NextAutoRepeatingDelayProperty = BindableProperty.Create("NextAutoRepeatingDelay", typeof(float), typeof(Button), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -295,7 +312,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.NEXT_AUTO_REPEATING_DELAY).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TogglableProperty = BindableProperty.Create("Togglable", typeof(bool), typeof(Button), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -312,7 +330,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.TOGGLABLE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectedProperty = BindableProperty.Create("Selected", typeof(bool), typeof(Button), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -329,7 +348,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.SELECTED).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty UnselectedColorProperty = BindableProperty.Create("UnselectedColor", typeof(Color), typeof(Button), Color.Transparent, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -352,7 +372,8 @@ namespace Tizen.NUI.UIComponents
value?.Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SelectedColorProperty = BindableProperty.Create("SelectedColor", typeof(Color), typeof(Button), Color.Transparent, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -375,7 +396,8 @@ namespace Tizen.NUI.UIComponents
value?.Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty LabelProperty = BindableProperty.Create("Label", typeof(PropertyMap), typeof(Button), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -392,7 +414,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(button.swigCPtr, Button.Property.LABEL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty LabelTextProperty = BindableProperty.Create("LabelText", typeof(string), typeof(Button), string.Empty, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -428,6 +451,9 @@ namespace Tizen.NUI.UIComponents
/// Only the derived versions can be instantiated.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Button() : this(Interop.Button.new_Button__SWIG_0(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -451,6 +477,9 @@ namespace Tizen.NUI.UIComponents
/// The Clicked event will be triggered when the button is touched and the touch point doesn't leave the boundary of the button.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandlerWithReturnType Clicked
{
add
@@ -479,6 +508,9 @@ namespace Tizen.NUI.UIComponents
/// The Pressed event will be triggered when the button is touched.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandlerWithReturnType Pressed
{
add
@@ -507,6 +539,9 @@ namespace Tizen.NUI.UIComponents
/// The Released event will be triggered when the button is touched and the touch point leaves the boundary of the button.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandlerWithReturnType Released
{
add
@@ -535,6 +570,9 @@ namespace Tizen.NUI.UIComponents
/// The StateChanged event will be triggered when the button's state is changed.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandlerWithReturnType StateChanged
{
add
@@ -563,6 +601,9 @@ namespace Tizen.NUI.UIComponents
/// Enumeration for describing the position, the text label can be, in relation to the control (and foreground/icon).
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public enum Align
{
///
@@ -587,6 +628,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the unselected button foreground or icon visual.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap UnselectedVisual
{
get
@@ -603,6 +647,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the selected button foreground or icon visual.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap SelectedVisual
{
get
@@ -619,6 +666,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the disabled selected state foreground or icon button visual.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap DisabledSelectedVisual
{
get
@@ -635,6 +685,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the disabled unselected state foreground or icon visual.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap DisabledUnselectedVisual
{
get
@@ -651,6 +704,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the disabled unselected state background button visual.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap UnselectedBackgroundVisual
{
get
@@ -667,6 +723,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the selected background button visual.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap SelectedBackgroundVisual
{
get
@@ -683,6 +742,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the disabled while unselected background button visual.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap DisabledUnselectedBackgroundVisual
{
get
@@ -699,6 +761,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the disabled while selected background button visual.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap DisabledSelectedBackgroundVisual
{
get
@@ -715,6 +780,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the position of the the label in relation to the foreground or icon, if both present.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Align LabelRelativeAlignment
{
get
@@ -731,6 +799,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the padding around the text.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector4 LabelPadding
{
get
@@ -747,6 +818,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the padding around the foreground visual.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector4 ForegroundVisualPadding
{
get
@@ -763,6 +837,9 @@ namespace Tizen.NUI.UIComponents
/// If the autorepeating property is set to true, then the togglable property is set to false.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool AutoRepeating
{
get
@@ -779,6 +856,9 @@ namespace Tizen.NUI.UIComponents
/// By default, this value is set to 0.15 seconds.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float InitialAutoRepeatingDelay
{
get
@@ -795,6 +875,9 @@ namespace Tizen.NUI.UIComponents
/// By default, this value is set to 0.05 seconds.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float NextAutoRepeatingDelay
{
get
@@ -811,6 +894,9 @@ namespace Tizen.NUI.UIComponents
/// If the togglable property is set to true, then the autorepeating property is set to false.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool Togglable
{
get
@@ -827,6 +913,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the togglable button as either selected or unselected, togglable property must be set to true.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool Selected
{
get
@@ -843,6 +932,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the unselected color.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Color UnselectedColor
{
get
@@ -859,6 +951,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the selected color.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Color SelectedColor
{
get
@@ -875,6 +970,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the label.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap Label
{
get
@@ -891,6 +989,9 @@ namespace Tizen.NUI.UIComponents
/// Gets or sets the text of the label.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public string LabelText
{
get
@@ -940,6 +1041,9 @@ namespace Tizen.NUI.UIComponents
/// To dispose the button instance.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected override void Dispose(DisposeTypes type)
{
if (disposed)
diff --git a/src/Tizen.NUI/src/public/UIComponents/CheckBoxButton.cs b/src/Tizen.NUI/src/public/UIComponents/CheckBoxButton.cs
index c3b6356..d0b1a47 100755
--- a/src/Tizen.NUI/src/public/UIComponents/CheckBoxButton.cs
+++ b/src/Tizen.NUI/src/public/UIComponents/CheckBoxButton.cs
@@ -15,6 +15,9 @@
*
*/
+using System;
+using System.ComponentModel;
+
namespace Tizen.NUI.UIComponents
{
///
@@ -26,6 +29,9 @@ namespace Tizen.NUI.UIComponents
/// When the button is disabled, the background image and the selected image are replaced by disabled images.
/// ///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class CheckBoxButton : Button
{
private global::System.Runtime.InteropServices.HandleRef swigCPtr;
@@ -34,6 +40,9 @@ namespace Tizen.NUI.UIComponents
/// Creates an initialized CheckBoxButton.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public CheckBoxButton() : this(Interop.CheckBoxButton.CheckBoxButton_New(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -53,6 +62,9 @@ namespace Tizen.NUI.UIComponents
/// To dispose the CheckBoxButton instance.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected override void Dispose(DisposeTypes type)
{
if (disposed)
diff --git a/src/Tizen.NUI/src/public/UIComponents/Popup.cs b/src/Tizen.NUI/src/public/UIComponents/Popup.cs
index 1794dab..096411c 100755
--- a/src/Tizen.NUI/src/public/UIComponents/Popup.cs
+++ b/src/Tizen.NUI/src/public/UIComponents/Popup.cs
@@ -26,9 +26,13 @@ namespace Tizen.NUI.UIComponents
/// The Popup widget provides a configurable popup dialog with a built-in layout of three main fields.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class Popup : View
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TitleProperty = BindableProperty.Create("Title", typeof(PropertyMap), typeof(Popup), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -45,7 +49,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.TITLE).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ContentProperty = BindableProperty.Create("Content", typeof(PropertyMap), typeof(Popup), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -62,7 +67,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.CONTENT).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty FooterProperty = BindableProperty.Create("Footer", typeof(PropertyMap), typeof(Popup), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -79,7 +85,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.FOOTER).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty DisplayStateProperty = BindableProperty.Create("DisplayState", typeof(DisplayStateType), typeof(Popup), DisplayStateType.Hidden, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -140,7 +147,8 @@ namespace Tizen.NUI.UIComponents
return DisplayStateType.Hidden;
}
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TouchTransparentProperty = BindableProperty.Create("TouchTransparent", typeof(bool), typeof(Popup), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -157,7 +165,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.TOUCH_TRANSPARENT).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TailVisibilityProperty = BindableProperty.Create("TailVisibility", typeof(bool), typeof(Popup), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -174,7 +183,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.TAIL_VISIBILITY).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TailPositionProperty = BindableProperty.Create("TailPosition", typeof(Vector3), typeof(Popup), Vector3.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -191,7 +201,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.TAIL_POSITION).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ContextualModeProperty = BindableProperty.Create("ContextualMode", typeof(ContextualModeType), typeof(Popup), ContextualModeType.Below, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -259,7 +270,8 @@ namespace Tizen.NUI.UIComponents
return ContextualModeType.Below;
}
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty AnimationDurationProperty = BindableProperty.Create("AnimationDuration", typeof(float), typeof(Popup), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -276,7 +288,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.ANIMATION_DURATION).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty AnimationModeProperty = BindableProperty.Create("AnimationMode", typeof(AnimationModeType), typeof(Popup), AnimationModeType.Fade, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -337,7 +350,8 @@ namespace Tizen.NUI.UIComponents
return AnimationModeType.Fade;
}
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty EntryAnimationProperty = BindableProperty.Create("EntryAnimation", typeof(PropertyMap), typeof(Popup), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -354,7 +368,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.ENTRY_ANIMATION).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ExitAnimationProperty = BindableProperty.Create("ExitAnimation", typeof(PropertyMap), typeof(Popup), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -371,7 +386,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.EXIT_ANIMATION).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty AutoHideDelayProperty = BindableProperty.Create("AutoHideDelay", typeof(int), typeof(Popup), default(int), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -388,7 +404,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.AUTO_HIDE_DELAY).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty BackingEnabledProperty = BindableProperty.Create("BackingEnabled", typeof(bool), typeof(Popup), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -405,7 +422,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.BACKING_ENABLED).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty BackingColorProperty = BindableProperty.Create("BackingColor", typeof(Vector4), typeof(Popup), Vector4.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -422,7 +440,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.BACKING_COLOR).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PopupBackgroundImageProperty = BindableProperty.Create("PopupBackgroundImage", typeof(string), typeof(Popup), string.Empty, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -439,7 +458,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.POPUP_BACKGROUND_IMAGE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PopupBackgroundBorderProperty = BindableProperty.Create("PopupBackgroundBorder", typeof(Rectangle), typeof(Popup), new Rectangle(0,0,0,0), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -456,7 +476,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.POPUP_BACKGROUND_BORDER).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TailUpImageProperty = BindableProperty.Create("TailUpImage", typeof(string), typeof(Popup), string.Empty, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -473,7 +494,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.TAIL_UP_IMAGE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TailDownImageProperty = BindableProperty.Create("TailDownImage", typeof(string), typeof(Popup), string.Empty, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -490,7 +512,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.TAIL_DOWN_IMAGE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TailLeftImageProperty = BindableProperty.Create("TailLeftImage", typeof(string), typeof(Popup), string.Empty, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -507,7 +530,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(popup.swigCPtr, Popup.Property.TAIL_LEFT_IMAGE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TailRightImageProperty = BindableProperty.Create("TailRightImage", typeof(string), typeof(Popup), string.Empty, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -541,6 +565,9 @@ namespace Tizen.NUI.UIComponents
/// Creates the popup.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Popup() : this(Interop.Popup.Popup_New(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -566,6 +593,9 @@ namespace Tizen.NUI.UIComponents
/// An event is sent when the user has touched outside the dialog.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandler TouchedOutside
{
add
@@ -591,6 +621,9 @@ namespace Tizen.NUI.UIComponents
/// An event is sent when the popup starts showing.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandler Showing
{
add
@@ -616,6 +649,9 @@ namespace Tizen.NUI.UIComponents
/// An event is sent when the popup has been fully displayed.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandler Shown
{
add
@@ -641,6 +677,9 @@ namespace Tizen.NUI.UIComponents
/// An event is sent when the popup starts to hide.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandler Hiding
{
add
@@ -666,6 +705,9 @@ namespace Tizen.NUI.UIComponents
/// An event is sent when the popup has been completely hidden.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandler Hidden
{
add
@@ -691,27 +733,42 @@ namespace Tizen.NUI.UIComponents
/// The display states of the popup.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public enum DisplayStateType
{
///
/// The popup is transitioning in
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Showing,
///
/// The popup is fully shown
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Shown,
///
/// The popup is transitioning out
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Hiding,
///
/// The popup is fully hidden
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Hidden
}
@@ -720,27 +777,42 @@ namespace Tizen.NUI.UIComponents
/// Choose from a predefined mode or "CUSTOM" to use the ANIMATION_IN and ANIMATION_OUT properties.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public enum AnimationModeType
{
///
/// No animation.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
None,
///
/// Popup zooms in and out animating the scale property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Zoom,
///
/// Popup fades in and out
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Fade,
///
/// Use the EntryAnimation and ExitAnimation animation properties.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Custom
}
@@ -750,32 +822,50 @@ namespace Tizen.NUI.UIComponents
/// NON_CONTEXTUAL disables any contextual positioning.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public enum ContextualModeType
{
///
/// any contextual positioning
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
NonContextual,
///
/// Above
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Above,
///
/// Rright
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Rright,
///
/// Below
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Below,
///
/// Left
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Left
}
@@ -783,6 +873,9 @@ namespace Tizen.NUI.UIComponents
/// The popup title.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap Title
{
get
@@ -799,6 +892,9 @@ namespace Tizen.NUI.UIComponents
/// The popup content.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap Content
{
get
@@ -815,6 +911,9 @@ namespace Tizen.NUI.UIComponents
/// The popup footer.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap Footer
{
get
@@ -831,6 +930,9 @@ namespace Tizen.NUI.UIComponents
/// The popup display state.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public DisplayStateType DisplayState
{
get
@@ -847,6 +949,9 @@ namespace Tizen.NUI.UIComponents
/// The touch transparent.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool TouchTransparent
{
get
@@ -863,6 +968,9 @@ namespace Tizen.NUI.UIComponents
/// The popup tail visibility.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool TailVisibility
{
get
@@ -879,6 +987,9 @@ namespace Tizen.NUI.UIComponents
/// The popup tail position.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector3 TailPosition
{
get
@@ -895,6 +1006,9 @@ namespace Tizen.NUI.UIComponents
/// The contextual mode.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public ContextualModeType ContextualMode
{
get
@@ -911,6 +1025,9 @@ namespace Tizen.NUI.UIComponents
/// The animation duration.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float AnimationDuration
{
get
@@ -927,6 +1044,9 @@ namespace Tizen.NUI.UIComponents
/// The animation mode.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public AnimationModeType AnimationMode
{
get
@@ -943,6 +1063,9 @@ namespace Tizen.NUI.UIComponents
/// The entry animation.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap EntryAnimation
{
get
@@ -959,6 +1082,9 @@ namespace Tizen.NUI.UIComponents
/// The exit animation.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap ExitAnimation
{
get
@@ -975,6 +1101,9 @@ namespace Tizen.NUI.UIComponents
/// The auto hide delay.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public int AutoHideDelay
{
get
@@ -991,6 +1120,9 @@ namespace Tizen.NUI.UIComponents
/// The backing enabled.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool BackingEnabled
{
get
@@ -1007,6 +1139,9 @@ namespace Tizen.NUI.UIComponents
/// The backing color.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector4 BackingColor
{
get
@@ -1023,6 +1158,9 @@ namespace Tizen.NUI.UIComponents
/// The background image.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public string PopupBackgroundImage
{
get
@@ -1039,6 +1177,9 @@ namespace Tizen.NUI.UIComponents
/// The background border.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Rectangle PopupBackgroundBorder
{
get
@@ -1055,6 +1196,9 @@ namespace Tizen.NUI.UIComponents
/// The tail up image.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public string TailUpImage
{
get
@@ -1071,6 +1215,9 @@ namespace Tizen.NUI.UIComponents
/// The tail down image.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public string TailDownImage
{
get
@@ -1087,6 +1234,9 @@ namespace Tizen.NUI.UIComponents
/// The tail left image.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public string TailLeftImage
{
get
@@ -1103,6 +1253,9 @@ namespace Tizen.NUI.UIComponents
/// The tail right image.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public string TailRightImage
{
get
@@ -1120,6 +1273,9 @@ namespace Tizen.NUI.UIComponents
///
/// The actor to set the title.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetTitle(View titleView)
{
Interop.Popup.Popup_SetTitle(swigCPtr, View.getCPtr(titleView));
@@ -1131,6 +1287,9 @@ namespace Tizen.NUI.UIComponents
///
/// The actor to use.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetContent(View content)
{
Interop.Popup.Popup_SetContent(swigCPtr, View.getCPtr(content));
@@ -1142,6 +1301,9 @@ namespace Tizen.NUI.UIComponents
///
/// The footer actor to be added to this popup.
/// 3
+ /// This will be deprecated
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
public void SetFooter(View footer)
{
Interop.Popup.Popup_SetFooter(swigCPtr, View.getCPtr(footer));
@@ -1166,6 +1328,9 @@ namespace Tizen.NUI.UIComponents
///
/// The desired display state to change to.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetDisplayState(Popup.DisplayStateType displayState)
{
Interop.Popup.Popup_SetDisplayState(swigCPtr, (int)displayState);
@@ -1263,6 +1428,9 @@ namespace Tizen.NUI.UIComponents
///
/// The dispose type
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected override void Dispose(DisposeTypes type)
{
if (disposed)
@@ -1378,6 +1546,9 @@ namespace Tizen.NUI.UIComponents
/// Event arguments that passed via the OutsideTouchedEvent.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class TouchedOutsideEventArgs : EventArgs
{
}
@@ -1386,6 +1557,9 @@ namespace Tizen.NUI.UIComponents
/// Event arguments that passed via the ShowingEventArgs.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class ShowingEventArgs : EventArgs
{
}
@@ -1394,6 +1568,9 @@ namespace Tizen.NUI.UIComponents
/// Event arguments that passed via the ShownEventArgs.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class ShownEventArgs : EventArgs
{
}
@@ -1402,6 +1579,9 @@ namespace Tizen.NUI.UIComponents
/// Event arguments that passed via the HidingEventArgs.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class HidingEventArgs : EventArgs
{
}
@@ -1410,6 +1590,9 @@ namespace Tizen.NUI.UIComponents
/// Event arguments that passed via the HiddenEventArgs.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class HiddenEventArgs : EventArgs
{
}
diff --git a/src/Tizen.NUI/src/public/UIComponents/ProgressBar.cs b/src/Tizen.NUI/src/public/UIComponents/ProgressBar.cs
index ee9757b..e23f1652 100755
--- a/src/Tizen.NUI/src/public/UIComponents/ProgressBar.cs
+++ b/src/Tizen.NUI/src/public/UIComponents/ProgressBar.cs
@@ -26,9 +26,13 @@ namespace Tizen.NUI.UIComponents
/// The ProgressBar is a control to give the user an indication of the progress of an operation.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class ProgressBar : View
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ProgressValueProperty = BindableProperty.Create("ProgressValue", typeof(float), typeof(ProgressBar), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -45,7 +49,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(progressBar.swigCPtr, ProgressBar.Property.PROGRESS_VALUE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SecondaryProgressValueProperty = BindableProperty.Create("SecondaryProgressValue", typeof(float), typeof(ProgressBar), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -62,7 +67,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(progressBar.swigCPtr, ProgressBar.Property.SECONDARY_PROGRESS_VALUE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndeterminateProperty = BindableProperty.Create("Indeterminate", typeof(bool), typeof(ProgressBar), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -79,7 +85,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(progressBar.swigCPtr, ProgressBar.Property.INDETERMINATE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TrackVisualProperty = BindableProperty.Create("TrackVisual", typeof(PropertyMap), typeof(ProgressBar), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -96,7 +103,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(progressBar.swigCPtr, ProgressBar.Property.TRACK_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ProgressVisualProperty = BindableProperty.Create("ProgressVisual", typeof(PropertyMap), typeof(ProgressBar), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -113,7 +121,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(progressBar.swigCPtr, ProgressBar.Property.PROGRESS_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SecondaryProgressVisualProperty = BindableProperty.Create("SecondaryProgressVisual", typeof(PropertyMap), typeof(ProgressBar), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -130,7 +139,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(progressBar.swigCPtr, ProgressBar.Property.SECONDARY_PROGRESS_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndeterminateVisualProperty = BindableProperty.Create("IndeterminateVisual", typeof(PropertyMap), typeof(ProgressBar), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -147,7 +157,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(progressBar.swigCPtr, ProgressBar.Property.INDETERMINATE_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndeterminateVisualAnimationProperty = BindableProperty.Create("IndeterminateVisualAnimation", typeof(PropertyArray), typeof(ProgressBar), new PropertyArray(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -164,7 +175,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(progressBar.swigCPtr, ProgressBar.Property.INDETERMINATE_VISUAL_ANIMATION).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty LabelVisualProperty = BindableProperty.Create("LabelVisual", typeof(PropertyMap), typeof(ProgressBar), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -190,6 +202,9 @@ namespace Tizen.NUI.UIComponents
/// Creates the ProgressBar.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public ProgressBar() : this(Interop.ProgressBar.ProgressBar_New(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -208,6 +223,9 @@ namespace Tizen.NUI.UIComponents
/// The event is sent when the ProgressBar value changes.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandler ValueChanged
{
add
@@ -236,6 +254,9 @@ namespace Tizen.NUI.UIComponents
/// Any value outside the range is ignored.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float ProgressValue
{
get
@@ -256,6 +277,9 @@ namespace Tizen.NUI.UIComponents
/// Any value outside of the range is ignored.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float SecondaryProgressValue
{
get
@@ -272,6 +296,9 @@ namespace Tizen.NUI.UIComponents
/// Sets the progress bar as \e indeterminate state.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool Indeterminate
{
get
@@ -289,6 +316,9 @@ namespace Tizen.NUI.UIComponents
/// Optional. If not supplied, the default track visual will be shown.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap TrackVisual
{
get
@@ -306,6 +336,9 @@ namespace Tizen.NUI.UIComponents
/// Optional. If not supplied, then the default progress visual will be shown.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap ProgressVisual
{
get
@@ -323,6 +356,9 @@ namespace Tizen.NUI.UIComponents
/// Optional. If not supplied, then the secondary progress visual will not be shown.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap SecondaryProgressVisual
{
get
@@ -340,6 +376,9 @@ namespace Tizen.NUI.UIComponents
/// Optional. If not supplied, then the default indeterminate visual will be shown.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap IndeterminateVisual
{
get
@@ -357,6 +396,9 @@ namespace Tizen.NUI.UIComponents
/// Optional. If not supplied, then the default animation will be played.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyArray IndeterminateVisualAnimation
{
get
@@ -373,6 +415,9 @@ namespace Tizen.NUI.UIComponents
/// The label visual of the progress bar.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyMap LabelVisual
{
get
@@ -401,6 +446,9 @@ namespace Tizen.NUI.UIComponents
/// To dispose the ProgressBar instance.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected override void Dispose(DisposeTypes type)
{
if (disposed)
@@ -450,6 +498,9 @@ namespace Tizen.NUI.UIComponents
/// Event arguments that passed via the ValueChangedEventArgs.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class ValueChangedEventArgs : EventArgs
{
private ProgressBar _progressBar;
@@ -460,6 +511,9 @@ namespace Tizen.NUI.UIComponents
/// ProgressBar
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public ProgressBar ProgressBar
{
get
@@ -476,6 +530,9 @@ namespace Tizen.NUI.UIComponents
/// The progress value of the progress bar, the progress runs from 0 to 1.
///
/// 3
+ /// This will be deprecated
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
public float ProgressValue
{
get
@@ -492,6 +549,9 @@ namespace Tizen.NUI.UIComponents
/// The secondary progress value of the progress bar, the secondary progress runs from 0 to 1.
///
/// 3
+ /// This will be deprecated
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
public float SecondaryProgressValue
{
get
diff --git a/src/Tizen.NUI/src/public/UIComponents/PushButton.cs b/src/Tizen.NUI/src/public/UIComponents/PushButton.cs
index 7b6ef6c..7753e8e 100755
--- a/src/Tizen.NUI/src/public/UIComponents/PushButton.cs
+++ b/src/Tizen.NUI/src/public/UIComponents/PushButton.cs
@@ -28,13 +28,18 @@ namespace Tizen.NUI.UIComponents
/// The PushButton changes its appearance when it is pressed, and returns to its original when it is released.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class PushButton : Button
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty CommandProperty = BindableProperty.Create("Command", typeof(ICommand), typeof(PushButton), null,
BindingMode.OneWay, null, null, null, null, null as BindableProperty.CreateDefaultValueDelegate);
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty CommandParameterProperty = BindableProperty.Create("CommandParameter", typeof(object), typeof(PushButton), null,
BindingMode.OneWay, null, null, null, null, null as BindableProperty.CreateDefaultValueDelegate);
@@ -46,6 +51,9 @@ namespace Tizen.NUI.UIComponents
/// Creates the PushButton.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PushButton() : this(Interop.PushButton.PushButton_New(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -56,7 +64,8 @@ namespace Tizen.NUI.UIComponents
swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public ICommand Command
{
@@ -70,7 +79,8 @@ namespace Tizen.NUI.UIComponents
}
}
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public object CommandParameter
{
@@ -120,6 +130,9 @@ namespace Tizen.NUI.UIComponents
/// To dispose the PushButton instance.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected override void Dispose(DisposeTypes type)
{
if (disposed)
diff --git a/src/Tizen.NUI/src/public/UIComponents/RadioButton.cs b/src/Tizen.NUI/src/public/UIComponents/RadioButton.cs
index 5f433d7..9579088 100755
--- a/src/Tizen.NUI/src/public/UIComponents/RadioButton.cs
+++ b/src/Tizen.NUI/src/public/UIComponents/RadioButton.cs
@@ -15,6 +15,9 @@
*
*/
+using System;
+using System.ComponentModel;
+
namespace Tizen.NUI.UIComponents
{
///
@@ -31,6 +34,9 @@ namespace Tizen.NUI.UIComponents
/// The StateChanged event is emitted when the RadioButton change its state to \e selected or \e unselected.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class RadioButton : Button
{
private global::System.Runtime.InteropServices.HandleRef swigCPtr;
@@ -39,6 +45,9 @@ namespace Tizen.NUI.UIComponents
/// Creates an uninitialized RadioButton.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public RadioButton() : this(Interop.RadioButton.RadioButton_New__SWIG_0(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -49,6 +58,9 @@ namespace Tizen.NUI.UIComponents
///
/// The label text.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public RadioButton(string label) : this(Interop.RadioButton.RadioButton_New__SWIG_1(label), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -68,6 +80,9 @@ namespace Tizen.NUI.UIComponents
/// To dispose the RadioButton instance.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected override void Dispose(DisposeTypes type)
{
if (disposed)
diff --git a/src/Tizen.NUI/src/public/UIComponents/ScrollBar.cs b/src/Tizen.NUI/src/public/UIComponents/ScrollBar.cs
index fc848e7..668c725 100755
--- a/src/Tizen.NUI/src/public/UIComponents/ScrollBar.cs
+++ b/src/Tizen.NUI/src/public/UIComponents/ScrollBar.cs
@@ -27,9 +27,13 @@ namespace Tizen.NUI.UIComponents
/// indicating the current scroll position of the scrollable object.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class ScrollBar : View
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollDirectionProperty = BindableProperty.Create("ScrollDirection", typeof(Direction), typeof(ScrollBar), Direction.Vertical, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -62,7 +66,8 @@ namespace Tizen.NUI.UIComponents
default: return Direction.Vertical;
}
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndicatorHeightPolicyProperty = BindableProperty.Create("IndicatorHeightPolicy", typeof(IndicatorHeightPolicyType), typeof(ScrollBar), IndicatorHeightPolicyType.Variable, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -95,7 +100,8 @@ namespace Tizen.NUI.UIComponents
default: return IndicatorHeightPolicyType.Variable;
}
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndicatorFixedHeightProperty = BindableProperty.Create("IndicatorFixedHeight", typeof(float), typeof(ScrollBar), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -112,7 +118,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(scrollBar.swigCPtr, ScrollBar.Property.INDICATOR_FIXED_HEIGHT).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndicatorShowDurationProperty = BindableProperty.Create("IndicatorShowDuration", typeof(float), typeof(ScrollBar), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -129,7 +136,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(scrollBar.swigCPtr, ScrollBar.Property.INDICATOR_SHOW_DURATION).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndicatorHideDurationProperty = BindableProperty.Create("IndicatorHideDuration", typeof(float), typeof(ScrollBar), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -146,7 +154,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(scrollBar.swigCPtr, ScrollBar.Property.INDICATOR_HIDE_DURATION).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollPositionIntervalsProperty = BindableProperty.Create("ScrollPositionIntervals", typeof(PropertyArray), typeof(ScrollBar), new PropertyArray(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -163,7 +172,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(scrollBar.swigCPtr, ScrollBar.Property.SCROLL_POSITION_INTERVALS).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndicatorMinimumHeightProperty = BindableProperty.Create("IndicatorMinimumHeight", typeof(float), typeof(ScrollBar), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -180,7 +190,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(scrollBar.swigCPtr, ScrollBar.Property.INDICATOR_MINIMUM_HEIGHT).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndicatorStartPaddingProperty = BindableProperty.Create("IndicatorStartPadding", typeof(float), typeof(ScrollBar), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -197,7 +208,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(scrollBar.swigCPtr, ScrollBar.Property.INDICATOR_START_PADDING).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty IndicatorEndPaddingProperty = BindableProperty.Create("IndicatorEndPadding", typeof(float), typeof(ScrollBar), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -228,6 +240,9 @@ namespace Tizen.NUI.UIComponents
///
/// The direction of the scrollbar (either vertically or horizontally).
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public ScrollBar(ScrollBar.Direction direction) : this(Interop.ScrollBar.ScrollBar_New__SWIG_0((int)direction), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -237,6 +252,9 @@ namespace Tizen.NUI.UIComponents
/// Creates an uninitialized scrollbar.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public ScrollBar() : this(Interop.ScrollBar.ScrollBar_New__SWIG_1(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -263,6 +281,9 @@ namespace Tizen.NUI.UIComponents
///
/// Event only emitted when the source of the scroll position properties are set.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandler PanFinished
{
add
@@ -289,6 +310,9 @@ namespace Tizen.NUI.UIComponents
///
/// Event only emitted when the source of the scroll position properties are set.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandler ScrollInterval
{
add
@@ -314,17 +338,26 @@ namespace Tizen.NUI.UIComponents
/// The direction of the scrollbar.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public enum Direction
{
///
/// Scroll in the vertical direction
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Vertical = 0,
///
/// Scroll in the horizontal direction
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Horizontal
}
@@ -332,17 +365,26 @@ namespace Tizen.NUI.UIComponents
/// The indicator height policy.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public enum IndicatorHeightPolicyType
{
///
/// Variable height changed dynamically according to the length of scroll content
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Variable = 0,
///
/// Fixed height regardless of the length of scroll content
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
Fixed
}
@@ -350,6 +392,9 @@ namespace Tizen.NUI.UIComponents
/// The direction of the scrollbar.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Direction ScrollDirection
{
get
@@ -367,6 +412,9 @@ namespace Tizen.NUI.UIComponents
/// The indicator height policy.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public IndicatorHeightPolicyType IndicatorHeightPolicy
{
get
@@ -383,6 +431,9 @@ namespace Tizen.NUI.UIComponents
/// The fixed height of the scroll indicator.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float IndicatorFixedHeight
{
get
@@ -399,6 +450,9 @@ namespace Tizen.NUI.UIComponents
/// The duration in seconds for the scroll indicator to become fully visible.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float IndicatorShowDuration
{
get
@@ -415,6 +469,9 @@ namespace Tizen.NUI.UIComponents
/// The duration in seconds for the scroll indicator to become fully invisible.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float IndicatorHideDuration
{
get
@@ -431,6 +488,9 @@ namespace Tizen.NUI.UIComponents
/// The list of values to get the notification when the current scroll position of the scrollable object goes above or below any of these values.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyArray ScrollPositionIntervals
{
get
@@ -447,6 +507,9 @@ namespace Tizen.NUI.UIComponents
/// The minimum height for a variable size indicator.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float IndicatorMinimumHeight
{
get
@@ -463,6 +526,9 @@ namespace Tizen.NUI.UIComponents
/// The padding at the start of the indicator. For example, the top if the scrollDirection is vertical.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float IndicatorStartPadding
{
get
@@ -479,6 +545,9 @@ namespace Tizen.NUI.UIComponents
/// The padding at the end of the indicator. For example, the bottom if the scrollDirection is vertical.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float IndicatorEndPadding
{
get
@@ -621,6 +690,9 @@ namespace Tizen.NUI.UIComponents
/// To dispose the ScrollBar instance.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected override void Dispose(DisposeTypes type)
{
if (disposed)
@@ -689,6 +761,9 @@ namespace Tizen.NUI.UIComponents
/// Event arguments that passed via the PanFinished event.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class PanFinishedEventArgs : EventArgs
{
}
@@ -697,6 +772,9 @@ namespace Tizen.NUI.UIComponents
/// Event arguments that passed via the ScrollPositionIntervalReached event.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class ScrollIntervalEventArgs : EventArgs
{
private float _currentScrollPosition;
@@ -705,6 +783,9 @@ namespace Tizen.NUI.UIComponents
/// The current scroll position of the scrollable content.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float CurrentScrollPosition
{
get
diff --git a/src/Tizen.NUI/src/public/UIComponents/ScrollView.cs b/src/Tizen.NUI/src/public/UIComponents/ScrollView.cs
index 4a72dc5..00648be 100755
--- a/src/Tizen.NUI/src/public/UIComponents/ScrollView.cs
+++ b/src/Tizen.NUI/src/public/UIComponents/ScrollView.cs
@@ -26,9 +26,11 @@ namespace Tizen.NUI
/// ScrollView contains views that can be scrolled manually (via touch).
///
/// 3
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class ScrollView : Scrollable
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty WrapEnabledProperty = BindableProperty.Create("WrapEnabled", typeof(bool), typeof(ScrollView), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -45,7 +47,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.WRAP_ENABLED).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PanningEnabledProperty = BindableProperty.Create("PanningEnabled", typeof(bool), typeof(ScrollView), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -62,7 +65,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.PANNING_ENABLED).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty AxisAutoLockEnabledProperty = BindableProperty.Create("AxisAutoLockEnabled", typeof(bool), typeof(ScrollView), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -79,7 +83,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.AXIS_AUTO_LOCK_ENABLED).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty WheelScrollDistanceStepProperty = BindableProperty.Create("WheelScrollDistanceStep", typeof(Vector2), typeof(ScrollView), Vector2.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -96,7 +101,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.WHEEL_SCROLL_DISTANCE_STEP).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollPositionProperty = BindableProperty.Create("ScrollPosition", typeof(Vector2), typeof(ScrollView), Vector2.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -113,7 +119,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.SCROLL_POSITION).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollPrePositionProperty = BindableProperty.Create("ScrollPrePosition", typeof(Vector2), typeof(ScrollView), Vector2.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -130,7 +137,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.SCROLL_PRE_POSITION).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollPrePositionMaxProperty = BindableProperty.Create("ScrollPrePositionMax", typeof(Vector2), typeof(ScrollView), Vector2.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -147,7 +155,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.SCROLL_PRE_POSITION_MAX).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty OvershootXProperty = BindableProperty.Create("OvershootX", typeof(float), typeof(ScrollView), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -164,7 +173,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.OVERSHOOT_X).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty OvershootYProperty = BindableProperty.Create("OvershootY", typeof(float), typeof(ScrollView), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -181,7 +191,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.OVERSHOOT_Y).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollFinalProperty = BindableProperty.Create("ScrollFinal", typeof(Vector2), typeof(ScrollView), Vector2.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -198,7 +209,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.SCROLL_FINAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty WrapProperty = BindableProperty.Create("Wrap", typeof(bool), typeof(ScrollView), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -215,7 +227,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.WRAP).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PanningProperty = BindableProperty.Create("Panning", typeof(bool), typeof(ScrollView), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -232,7 +245,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.PANNING).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollingProperty = BindableProperty.Create("Scrolling", typeof(bool), typeof(ScrollView), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -249,7 +263,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.SCROLLING).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollDomainSizeProperty = BindableProperty.Create("ScrollDomainSize", typeof(Vector2), typeof(ScrollView), Vector2.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -266,7 +281,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.SCROLL_DOMAIN_SIZE).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollDomainOffsetProperty = BindableProperty.Create("ScrollDomainOffset", typeof(Vector2), typeof(ScrollView), Vector2.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -283,7 +299,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.SCROLL_DOMAIN_OFFSET).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollPositionDeltaProperty = BindableProperty.Create("ScrollPositionDelta", typeof(Vector2), typeof(ScrollView), Vector2.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -300,7 +317,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.SCROLL_POSITION_DELTA).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty StartPagePositionProperty = BindableProperty.Create("StartPagePosition", typeof(Vector3), typeof(ScrollView), Vector3.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -317,7 +335,8 @@ namespace Tizen.NUI
Tizen.NUI.Object.GetProperty(scrollView.swigCPtr, ScrollView.Property.START_PAGE_POSITION).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ScrollModeProperty = BindableProperty.Create("ScrollMode", typeof(PropertyMap), typeof(ScrollView), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -345,6 +364,9 @@ namespace Tizen.NUI
/// Create an instance of ScrollView.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public ScrollView() : this(Interop.ScrollView.ScrollView_New(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -364,6 +386,9 @@ namespace Tizen.NUI
/// position, scale, rotation for the snap or flick).
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event DaliEventHandler SnapStarted
{
add
@@ -399,6 +424,9 @@ namespace Tizen.NUI
/// Sets and Gets WrapEnabled property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool WrapEnabled
{
get
@@ -415,6 +443,9 @@ namespace Tizen.NUI
/// Sets and Gets PanningEnabled property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool PanningEnabled
{
get
@@ -431,6 +462,9 @@ namespace Tizen.NUI
/// Sets and Gets AxisAutoLockEnabled property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool AxisAutoLockEnabled
{
get
@@ -447,6 +481,9 @@ namespace Tizen.NUI
/// Sets and Gets WheelScrollDistanceStep property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 WheelScrollDistanceStep
{
get
@@ -463,6 +500,9 @@ namespace Tizen.NUI
/// Sets and Gets ScrollPosition property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 ScrollPosition
{
get
@@ -479,6 +519,9 @@ namespace Tizen.NUI
/// Sets and Gets ScrollPrePosition property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 ScrollPrePosition
{
get
@@ -495,6 +538,9 @@ namespace Tizen.NUI
/// Sets and Gets ScrollPrePositionMax property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 ScrollPrePositionMax
{
get
@@ -511,6 +557,9 @@ namespace Tizen.NUI
/// Sets and Gets OvershootX property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float OvershootX
{
get
@@ -527,6 +576,9 @@ namespace Tizen.NUI
/// Sets and Gets OvershootY property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float OvershootY
{
get
@@ -543,6 +595,9 @@ namespace Tizen.NUI
/// Sets and Gets ScrollFinal property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 ScrollFinal
{
get
@@ -559,6 +614,9 @@ namespace Tizen.NUI
/// Sets and Gets Wrap property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool Wrap
{
get
@@ -575,6 +633,9 @@ namespace Tizen.NUI
/// Sets and Gets Panning property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool Panning
{
get
@@ -591,6 +652,9 @@ namespace Tizen.NUI
/// Sets and Gets Scrolling property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool Scrolling
{
get
@@ -607,6 +671,9 @@ namespace Tizen.NUI
/// Sets and Gets ScrollDomainSize property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 ScrollDomainSize
{
get
@@ -623,6 +690,9 @@ namespace Tizen.NUI
/// Sets and Gets ScrollDomainOffset property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 ScrollDomainOffset
{
get
@@ -639,6 +709,9 @@ namespace Tizen.NUI
/// Sets and Gets ScrollPositionDelta property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 ScrollPositionDelta
{
get
@@ -655,6 +728,9 @@ namespace Tizen.NUI
/// Sets and Gets StartPagePosition property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector3 StartPagePosition
{
get
@@ -672,6 +748,9 @@ namespace Tizen.NUI
/// Sets and Gets ScrollMode property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap ScrollMode
{
get
@@ -689,6 +768,9 @@ namespace Tizen.NUI
///
/// Current easing alpha function of the snap animation.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public AlphaFunction GetScrollSnapAlphaFunction()
{
AlphaFunction ret = new AlphaFunction(Interop.ScrollView.ScrollView_GetScrollSnapAlphaFunction(swigCPtr), true);
@@ -701,6 +783,9 @@ namespace Tizen.NUI
///
/// Easing alpha function of the snap animation.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetScrollSnapAlphaFunction(AlphaFunction alpha)
{
Interop.ScrollView.ScrollView_SetScrollSnapAlphaFunction(swigCPtr, AlphaFunction.getCPtr(alpha));
@@ -712,6 +797,9 @@ namespace Tizen.NUI
///
/// Current easing alpha function of the flick animation.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public AlphaFunction GetScrollFlickAlphaFunction()
{
AlphaFunction ret = new AlphaFunction(Interop.ScrollView.ScrollView_GetScrollFlickAlphaFunction(swigCPtr), true);
@@ -724,6 +812,9 @@ namespace Tizen.NUI
///
/// Easing alpha function of the flick animation.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetScrollFlickAlphaFunction(AlphaFunction alpha)
{
Interop.ScrollView.ScrollView_SetScrollFlickAlphaFunction(swigCPtr, AlphaFunction.getCPtr(alpha));
@@ -735,6 +826,9 @@ namespace Tizen.NUI
///
/// The time in seconds for the animation to take.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float GetScrollSnapDuration()
{
float ret = Interop.ScrollView.ScrollView_GetScrollSnapDuration(swigCPtr);
@@ -747,6 +841,9 @@ namespace Tizen.NUI
///
/// The time in seconds for the animation to take.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetScrollSnapDuration(float time)
{
Interop.ScrollView.ScrollView_SetScrollSnapDuration(swigCPtr, time);
@@ -758,6 +855,9 @@ namespace Tizen.NUI
///
/// The time in seconds for the animation to take.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float GetScrollFlickDuration()
{
float ret = Interop.ScrollView.ScrollView_GetScrollFlickDuration(swigCPtr);
@@ -770,6 +870,9 @@ namespace Tizen.NUI
///
/// The time in seconds for the animation to take.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetScrollFlickDuration(float time)
{
Interop.ScrollView.ScrollView_SetScrollFlickDuration(swigCPtr, time);
@@ -781,6 +884,9 @@ namespace Tizen.NUI
///
/// True to enable scroll, false to disable scrolling.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetScrollSensitive(bool sensitive)
{
Interop.ScrollView.ScrollView_SetScrollSensitive(swigCPtr, sensitive);
@@ -793,6 +899,9 @@ namespace Tizen.NUI
/// The maximum number of horizontally scrolled pixels before overshoot X reaches 1.0f.
/// The maximum number of vertically scrolled pixels before overshoot X reaches 1.0f.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetMaxOvershoot(float overshootX, float overshootY)
{
Interop.ScrollView.ScrollView_SetMaxOvershoot(swigCPtr, overshootX, overshootY);
@@ -804,6 +913,9 @@ namespace Tizen.NUI
///
/// Easing alpha function of the overshoot snap animation.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetSnapOvershootAlphaFunction(AlphaFunction alpha)
{
Interop.ScrollView.ScrollView_SetSnapOvershootAlphaFunction(swigCPtr, AlphaFunction.getCPtr(alpha));
@@ -815,6 +927,9 @@ namespace Tizen.NUI
///
/// duration The duration of the overshoot snap animation.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetSnapOvershootDuration(float duration)
{
Interop.ScrollView.ScrollView_SetSnapOvershootDuration(swigCPtr, duration);
@@ -828,6 +943,9 @@ namespace Tizen.NUI
///
/// Enables (true), or disables (false) Actor AutoSnap.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetViewAutoSnap(bool enable)
{
Interop.ScrollView.ScrollView_SetActorAutoSnap(swigCPtr, enable);
@@ -840,6 +958,9 @@ namespace Tizen.NUI
///
/// Enables (true), or disables (false) Wrap Mode.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetWrapMode(bool enable)
{
Interop.ScrollView.ScrollView_SetWrapMode(swigCPtr, enable);
@@ -851,6 +972,9 @@ namespace Tizen.NUI
///
/// Current scroll update distance.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public int GetScrollUpdateDistance()
{
int ret = Interop.ScrollView.ScrollView_GetScrollUpdateDistance(swigCPtr);
@@ -865,6 +989,9 @@ namespace Tizen.NUI
///
/// The distance for ScrollView to move before emitting update signal.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetScrollUpdateDistance(int distance)
{
Interop.ScrollView.ScrollView_SetScrollUpdateDistance(swigCPtr, distance);
@@ -876,6 +1003,9 @@ namespace Tizen.NUI
///
/// Whether Axis Auto Lock mode has been enabled or not.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool GetAxisAutoLock()
{
bool ret = Interop.ScrollView.ScrollView_GetAxisAutoLock(swigCPtr);
@@ -891,6 +1021,9 @@ namespace Tizen.NUI
///
/// Enables (true), or disables (false) AxisAutoLock mode.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetAxisAutoLock(bool enable)
{
Interop.ScrollView.ScrollView_SetAxisAutoLock(swigCPtr, enable);
@@ -902,6 +1035,9 @@ namespace Tizen.NUI
///
/// The gradient, a value between 0.0 and 1.0f.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float GetAxisAutoLockGradient()
{
float ret = Interop.ScrollView.ScrollView_GetAxisAutoLockGradient(swigCPtr);
@@ -915,6 +1051,9 @@ namespace Tizen.NUI
///
/// gradient A value between 0.0 and 1.0 (auto-lock for all angles).
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetAxisAutoLockGradient(float gradient)
{
Interop.ScrollView.ScrollView_SetAxisAutoLockGradient(swigCPtr, gradient);
@@ -927,6 +1066,9 @@ namespace Tizen.NUI
///
/// Friction coefficient is returned.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float GetFrictionCoefficient()
{
float ret = Interop.ScrollView.ScrollView_GetFrictionCoefficient(swigCPtr);
@@ -939,6 +1081,9 @@ namespace Tizen.NUI
///
/// Friction coefficient must be greater than 0.0 (default = 1.0).
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetFrictionCoefficient(float friction)
{
Interop.ScrollView.ScrollView_SetFrictionCoefficient(swigCPtr, friction);
@@ -951,6 +1096,9 @@ namespace Tizen.NUI
///
/// The flick speed coefficient is returned.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float GetFlickSpeedCoefficient()
{
float ret = Interop.ScrollView.ScrollView_GetFlickSpeedCoefficient(swigCPtr);
@@ -965,6 +1113,9 @@ namespace Tizen.NUI
///
/// The flick speed coefficient (default = 1.0).
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetFlickSpeedCoefficient(float speed)
{
Interop.ScrollView.ScrollView_SetFlickSpeedCoefficient(swigCPtr, speed);
@@ -976,6 +1127,9 @@ namespace Tizen.NUI
///
/// Minimum pan distance vector with separate x and y distance.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 GetMinimumDistanceForFlick()
{
Vector2 ret = new Vector2(Interop.ScrollView.ScrollView_GetMinimumDistanceForFlick(swigCPtr), true);
@@ -989,6 +1143,9 @@ namespace Tizen.NUI
///
/// The flick speed coefficient (default = 1.0).
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetMinimumDistanceForFlick(Vector2 distance)
{
Interop.ScrollView.ScrollView_SetMinimumDistanceForFlick(swigCPtr, Vector2.getCPtr(distance));
@@ -1000,6 +1157,9 @@ namespace Tizen.NUI
///
/// Minimum pan speed.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float GetMinimumSpeedForFlick()
{
float ret = Interop.ScrollView.ScrollView_GetMinimumSpeedForFlick(swigCPtr);
@@ -1012,6 +1172,9 @@ namespace Tizen.NUI
///
/// The minimum pan speed for a flick.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetMinimumSpeedForFlick(float speed)
{
Interop.ScrollView.ScrollView_SetMinimumSpeedForFlick(swigCPtr, speed);
@@ -1024,6 +1187,9 @@ namespace Tizen.NUI
///
/// Maximum flick speed is returned.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float GetMaxFlickSpeed()
{
float ret = Interop.ScrollView.ScrollView_GetMaxFlickSpeed(swigCPtr);
@@ -1037,6 +1203,9 @@ namespace Tizen.NUI
///
/// Maximum flick speed (default = 3.0).
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetMaxFlickSpeed(float speed)
{
Interop.ScrollView.ScrollView_SetMaxFlickSpeed(swigCPtr, speed);
@@ -1048,6 +1217,9 @@ namespace Tizen.NUI
///
/// The step of scroll distance(pixel) in X and Y axes.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 GetWheelScrollDistanceStep()
{
Vector2 ret = new Vector2(Interop.ScrollView.ScrollView_GetWheelScrollDistanceStep(swigCPtr), true);
@@ -1060,6 +1232,9 @@ namespace Tizen.NUI
///
/// step The step of scroll distance(pixel) in X and Y axes.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetWheelScrollDistanceStep(Vector2 step)
{
Interop.ScrollView.ScrollView_SetWheelScrollDistanceStep(swigCPtr, Vector2.getCPtr(step));
@@ -1071,6 +1246,9 @@ namespace Tizen.NUI
///
/// The current scroll position.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 GetCurrentScrollPosition()
{
Vector2 ret = new Vector2(Interop.ScrollView.ScrollView_GetCurrentScrollPosition(swigCPtr), true);
@@ -1084,6 +1262,9 @@ namespace Tizen.NUI
///
/// The current scroll position.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public uint GetCurrentPage()
{
uint ret = Interop.ScrollView.ScrollView_GetCurrentPage(swigCPtr);
@@ -1096,6 +1277,9 @@ namespace Tizen.NUI
///
/// The position to scroll to.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ScrollTo(Vector2 position)
{
Interop.ScrollView.ScrollView_ScrollTo__SWIG_0(swigCPtr, Vector2.getCPtr(position));
@@ -1108,6 +1292,9 @@ namespace Tizen.NUI
/// The position to scroll to.
/// The duration of the animation in seconds.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ScrollTo(Vector2 position, float duration)
{
Interop.ScrollView.ScrollView_ScrollTo__SWIG_1(swigCPtr, Vector2.getCPtr(position), duration);
@@ -1121,6 +1308,9 @@ namespace Tizen.NUI
/// The duration of the animation in seconds.
/// The alpha function to use.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ScrollTo(Vector2 position, float duration, AlphaFunction alpha)
{
Interop.ScrollView.ScrollView_ScrollTo__SWIG_2(swigCPtr, Vector2.getCPtr(position), duration, AlphaFunction.getCPtr(alpha));
@@ -1135,6 +1325,9 @@ namespace Tizen.NUI
/// Whether to bias scrolling to left or right.
/// Whether to bias scrolling to top or bottom.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ScrollTo(Vector2 position, float duration, DirectionBias horizontalBias, DirectionBias verticalBias)
{
Interop.ScrollView.ScrollView_ScrollTo__SWIG_3(swigCPtr, Vector2.getCPtr(position), duration, (int)horizontalBias, (int)verticalBias);
@@ -1150,6 +1343,9 @@ namespace Tizen.NUI
/// Whether to bias scrolling to left or right.
/// Whether to bias scrolling to top or bottom.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ScrollTo(Vector2 position, float duration, AlphaFunction alpha, DirectionBias horizontalBias, DirectionBias verticalBias)
{
Interop.ScrollView.ScrollView_ScrollTo__SWIG_4(swigCPtr, Vector2.getCPtr(position), duration, AlphaFunction.getCPtr(alpha), (int)horizontalBias, (int)verticalBias);
@@ -1161,6 +1357,9 @@ namespace Tizen.NUI
///
/// The page to scroll to.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ScrollTo(uint page)
{
Interop.ScrollView.ScrollView_ScrollTo__SWIG_5(swigCPtr, page);
@@ -1173,6 +1372,9 @@ namespace Tizen.NUI
/// The page to scroll to.
/// The duration of the animation in seconds.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ScrollTo(uint page, float duration)
{
Interop.ScrollView.ScrollView_ScrollTo__SWIG_6(swigCPtr, page, duration);
@@ -1186,6 +1388,9 @@ namespace Tizen.NUI
/// The duration of the animation in seconds.
/// Whether to bias scrolling to left or right.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ScrollTo(uint page, float duration, DirectionBias bias)
{
Interop.ScrollView.ScrollView_ScrollTo__SWIG_7(swigCPtr, page, duration, (int)bias);
@@ -1197,6 +1402,9 @@ namespace Tizen.NUI
///
/// The view to center in on (via Scrolling).
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ScrollTo(View view)
{
Interop.ScrollView.ScrollView_ScrollTo__SWIG_8(swigCPtr, View.getCPtr(view));
@@ -1209,6 +1417,9 @@ namespace Tizen.NUI
/// The view to center in on (via Scrolling).
/// The duration of the animation in seconds.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ScrollTo(View view, float duration)
{
Interop.ScrollView.ScrollView_ScrollTo__SWIG_9(swigCPtr, View.getCPtr(view), duration);
@@ -1221,6 +1432,9 @@ namespace Tizen.NUI
///
/// True if Snapping necessary.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool ScrollToSnapPoint()
{
bool ret = Interop.ScrollView.ScrollView_ScrollToSnapPoint(swigCPtr);
@@ -1233,6 +1447,9 @@ namespace Tizen.NUI
///
/// The effect to apply to scroll view.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void ApplyEffect(ScrollViewEffect effect)
{
Interop.ScrollView.ScrollView_ApplyEffect(swigCPtr, ScrollViewEffect.getCPtr(effect));
@@ -1244,6 +1461,9 @@ namespace Tizen.NUI
///
/// The effect to remove.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void RemoveEffect(ScrollViewEffect effect)
{
Interop.ScrollView.ScrollView_RemoveEffect(swigCPtr, ScrollViewEffect.getCPtr(effect));
@@ -1254,6 +1474,9 @@ namespace Tizen.NUI
/// Remove All Effects from ScrollView.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void RemoveAllEffects()
{
Interop.ScrollView.ScrollView_RemoveAllEffects(swigCPtr);
@@ -1266,6 +1489,9 @@ namespace Tizen.NUI
///
/// The view to add to this ScrollView.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void BindView(View child)
{
Interop.ScrollView.ScrollView_BindActor(swigCPtr, View.getCPtr(child));
@@ -1278,6 +1504,9 @@ namespace Tizen.NUI
///
/// The view to remove to this ScrollView.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void UnbindView(View child)
{
Interop.ScrollView.ScrollView_UnbindActor(swigCPtr, View.getCPtr(child));
@@ -1290,6 +1519,9 @@ namespace Tizen.NUI
/// The axis to constrain the scroll-view to.
/// The threshold to apply around the axis.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetScrollingDirection(Radian direction, Radian threshold)
{
Interop.ScrollView.ScrollView_SetScrollingDirection__SWIG_0(swigCPtr, Radian.getCPtr(direction), Radian.getCPtr(threshold));
@@ -1301,6 +1533,9 @@ namespace Tizen.NUI
///
/// The axis to constrain the scroll-view to.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void SetScrollingDirection(Radian direction)
{
Interop.ScrollView.ScrollView_SetScrollingDirection__SWIG_1(swigCPtr, Radian.getCPtr(direction));
@@ -1312,6 +1547,9 @@ namespace Tizen.NUI
///
/// The axis to constrain the scroll-view to.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void RemoveScrollingDirection(Radian direction)
{
Interop.ScrollView.ScrollView_RemoveScrollingDirection(swigCPtr, Radian.getCPtr(direction));
@@ -1361,6 +1599,9 @@ namespace Tizen.NUI
///
/// the dispose type
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected override void Dispose(DisposeTypes type)
{
if (disposed)
@@ -1409,191 +1650,218 @@ namespace Tizen.NUI
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public new class Property
{
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int WRAP_ENABLED = Interop.ScrollView.ScrollView_Property_WRAP_ENABLED_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int PANNING_ENABLED = Interop.ScrollView.ScrollView_Property_PANNING_ENABLED_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int AXIS_AUTO_LOCK_ENABLED = Interop.ScrollView.ScrollView_Property_AXIS_AUTO_LOCK_ENABLED_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int WHEEL_SCROLL_DISTANCE_STEP = Interop.ScrollView.ScrollView_Property_WHEEL_SCROLL_DISTANCE_STEP_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_MODE = Interop.ScrollView.ScrollView_Property_SCROLL_MODE_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_POSITION = Interop.ScrollView.ScrollView_Property_SCROLL_POSITION_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_PRE_POSITION = Interop.ScrollView.ScrollView_Property_SCROLL_PRE_POSITION_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_PRE_POSITION_X = Interop.ScrollView.ScrollView_Property_SCROLL_PRE_POSITION_X_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_PRE_POSITION_Y = Interop.ScrollView.ScrollView_Property_SCROLL_PRE_POSITION_Y_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_PRE_POSITION_MAX = Interop.ScrollView.ScrollView_Property_SCROLL_PRE_POSITION_MAX_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_PRE_POSITION_MAX_X = Interop.ScrollView.ScrollView_Property_SCROLL_PRE_POSITION_MAX_X_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_PRE_POSITION_MAX_Y = Interop.ScrollView.ScrollView_Property_SCROLL_PRE_POSITION_MAX_Y_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int OVERSHOOT_X = Interop.ScrollView.ScrollView_Property_OVERSHOOT_X_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int OVERSHOOT_Y = Interop.ScrollView.ScrollView_Property_OVERSHOOT_Y_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_FINAL = Interop.ScrollView.ScrollView_Property_SCROLL_FINAL_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_FINAL_X = Interop.ScrollView.ScrollView_Property_SCROLL_FINAL_X_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_FINAL_Y = Interop.ScrollView.ScrollView_Property_SCROLL_FINAL_Y_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int WRAP = Interop.ScrollView.ScrollView_Property_WRAP_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int PANNING = Interop.ScrollView.ScrollView_Property_PANNING_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLLING = Interop.ScrollView.ScrollView_Property_SCROLLING_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_DOMAIN_SIZE = Interop.ScrollView.ScrollView_Property_SCROLL_DOMAIN_SIZE_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_DOMAIN_SIZE_X = Interop.ScrollView.ScrollView_Property_SCROLL_DOMAIN_SIZE_X_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_DOMAIN_SIZE_Y = Interop.ScrollView.ScrollView_Property_SCROLL_DOMAIN_SIZE_Y_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_DOMAIN_OFFSET = Interop.ScrollView.ScrollView_Property_SCROLL_DOMAIN_OFFSET_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int SCROLL_POSITION_DELTA = Interop.ScrollView.ScrollView_Property_SCROLL_POSITION_DELTA_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int START_PAGE_POSITION = Interop.ScrollView.ScrollView_Property_START_PAGE_POSITION_get();
}
@@ -1601,12 +1869,18 @@ namespace Tizen.NUI
/// Snaps signal event's data.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class SnapEvent : global::System.IDisposable
{
///
/// swigCMemOwn
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected bool swigCMemOwn;
///
@@ -1614,6 +1888,9 @@ namespace Tizen.NUI
///
/// swigCMemOwn
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected bool disposed = false;
private global::System.Runtime.InteropServices.HandleRef swigCPtr;
@@ -1625,6 +1902,9 @@ namespace Tizen.NUI
/// Create an instance of SnapEvent.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public SnapEvent() : this(Interop.ScrollView.new_ScrollView_SnapEvent(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -1653,6 +1933,9 @@ namespace Tizen.NUI
/// Scroll position.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector2 position
{
set
@@ -1673,6 +1956,9 @@ namespace Tizen.NUI
/// Scroll duration.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float duration
{
set
@@ -1707,6 +1993,7 @@ namespace Tizen.NUI
/// Get SnapEvent From Ptr
///
/// 3
+ /// This will be deprecated
[Obsolete("Deprecated in API6, Will be removed in API9, " +
"Please use SnapStarted event instead!" +
"IntPtr(native integer pointer) is supposed to be not used in Application!")]
@@ -1722,6 +2009,9 @@ namespace Tizen.NUI
/// Dispose.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public void Dispose()
{
//Throw excpetion if Dispose() is called in separate thread.
@@ -1751,6 +2041,9 @@ namespace Tizen.NUI
///
/// the dispose type
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected virtual void Dispose(DisposeTypes type)
{
if (disposed)
@@ -1788,6 +2081,9 @@ namespace Tizen.NUI
/// Event arguments that passed via the SnapStarted signal.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class SnapStartedEventArgs : EventArgs
{
private Tizen.NUI.ScrollView.SnapEvent _snapEvent;
@@ -1796,6 +2092,9 @@ namespace Tizen.NUI
/// SnapEventInfo is the SnapEvent information like snap or flick (it tells the target position, scale, rotation for the snap or flick).
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.ScrollView.SnapEvent SnapEventInfo
{
get
@@ -1810,3 +2109,4 @@ namespace Tizen.NUI
}
}
}
+
diff --git a/src/Tizen.NUI/src/public/UIComponents/Slider.cs b/src/Tizen.NUI/src/public/UIComponents/Slider.cs
index b8785db..31ec98a 100755
--- a/src/Tizen.NUI/src/public/UIComponents/Slider.cs
+++ b/src/Tizen.NUI/src/public/UIComponents/Slider.cs
@@ -27,9 +27,13 @@ namespace Tizen.NUI.UIComponents
/// The slider is a control to enable sliding an indicator between two values.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class Slider : View
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty LowerBoundProperty = BindableProperty.Create("LowerBound", typeof(float), typeof(Slider), 0.0f, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -46,7 +50,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.LOWER_BOUND).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty UpperBoundProperty = BindableProperty.Create("UpperBound", typeof(float), typeof(Slider), 1.0f, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -63,7 +68,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.UPPER_BOUND).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ValueProperty = BindableProperty.Create("Value", typeof(float), typeof(Slider), default(float), BindingMode.TwoWay, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -80,7 +86,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.VALUE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TrackVisualProperty = BindableProperty.Create("TrackVisual", typeof(PropertyMap), typeof(Slider), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -97,7 +104,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.TRACK_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty HandleVisualProperty = BindableProperty.Create("HandleVisual", typeof(PropertyMap), typeof(Slider), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -114,7 +122,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.HANDLE_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ProgressVisualProperty = BindableProperty.Create("ProgressVisual", typeof(PropertyMap), typeof(Slider), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -131,7 +140,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.PROGRESS_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PopupVisualProperty = BindableProperty.Create("PopupVisual", typeof(PropertyMap), typeof(Slider), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -148,7 +158,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.POPUP_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty PopupArrowVisualProperty = BindableProperty.Create("PopupArrowVisual", typeof(PropertyMap), typeof(Slider), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -165,7 +176,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.POPUP_ARROW_VISUAL).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty DisabledColorProperty = BindableProperty.Create("DisabledColor", typeof(Vector4), typeof(Slider), Vector4.Zero, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -182,7 +194,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.DISABLED_COLOR).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ValuePrecisionProperty = BindableProperty.Create("ValuePrecision", typeof(int), typeof(Slider), default(int), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -199,7 +212,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.VALUE_PRECISION).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ShowPopupProperty = BindableProperty.Create("ShowPopup", typeof(bool), typeof(Slider), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -216,7 +230,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.SHOW_POPUP).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty ShowValueProperty = BindableProperty.Create("ShowValue", typeof(bool), typeof(Slider), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -233,7 +248,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.SHOW_VALUE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty MarksProperty = BindableProperty.Create("Marks", typeof(PropertyArray), typeof(Slider), new PropertyArray(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -250,7 +266,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.MARKS).Get(temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty MarkToleranceProperty = BindableProperty.Create("MarkTolerance", typeof(float), typeof(Slider), default(float), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -267,7 +284,8 @@ namespace Tizen.NUI.UIComponents
Tizen.NUI.Object.GetProperty(slider.swigCPtr, Slider.Property.MARK_TOLERANCE).Get(out temp);
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty SnapToMarksProperty = BindableProperty.Create("SnapToMarks", typeof(bool), typeof(Slider), false, propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -297,6 +315,9 @@ namespace Tizen.NUI.UIComponents
/// Creates the slider control.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Slider() : this(Interop.Slider.Slider_New(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -323,6 +344,9 @@ namespace Tizen.NUI.UIComponents
/// An event emitted when the slider value changes.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandlerWithReturnType ValueChanged
{
add
@@ -348,6 +372,9 @@ namespace Tizen.NUI.UIComponents
/// An event emitted when the sliding is finished.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandlerWithReturnType SlidingFinished
{
add
@@ -373,6 +400,9 @@ namespace Tizen.NUI.UIComponents
/// An event emitted when the slider handle reaches a mark.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public event EventHandlerWithReturnType MarkReached
{
add
@@ -398,6 +428,9 @@ namespace Tizen.NUI.UIComponents
/// The lower bound property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float LowerBound
{
get
@@ -414,6 +447,9 @@ namespace Tizen.NUI.UIComponents
/// The upper bound property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float UpperBound
{
get
@@ -430,6 +466,9 @@ namespace Tizen.NUI.UIComponents
/// The value property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float Value
{
get
@@ -446,6 +485,9 @@ namespace Tizen.NUI.UIComponents
/// The track visual property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap TrackVisual
{
get
@@ -462,6 +504,9 @@ namespace Tizen.NUI.UIComponents
/// The handle visual property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap HandleVisual
{
get
@@ -478,6 +523,9 @@ namespace Tizen.NUI.UIComponents
/// The progress visual property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap ProgressVisual
{
get
@@ -494,6 +542,9 @@ namespace Tizen.NUI.UIComponents
/// The popup visual property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap PopupVisual
{
get
@@ -510,6 +561,9 @@ namespace Tizen.NUI.UIComponents
/// The popup arrow visual property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public PropertyMap PopupArrowVisual
{
get
@@ -526,6 +580,9 @@ namespace Tizen.NUI.UIComponents
/// The disable color property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Vector4 DisabledColor
{
get
@@ -542,6 +599,9 @@ namespace Tizen.NUI.UIComponents
/// The value precision property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public int ValuePrecision
{
get
@@ -558,6 +618,9 @@ namespace Tizen.NUI.UIComponents
/// The show popup property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool ShowPopup
{
get
@@ -574,6 +637,9 @@ namespace Tizen.NUI.UIComponents
/// The show value property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool ShowValue
{
get
@@ -590,6 +656,9 @@ namespace Tizen.NUI.UIComponents
/// The marks property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyArray Marks
{
get
@@ -606,6 +675,9 @@ namespace Tizen.NUI.UIComponents
/// The snap to marks property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public bool SnapToMarks
{
get
@@ -622,6 +694,9 @@ namespace Tizen.NUI.UIComponents
/// The mark tolerance property.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float MarkTolerance
{
get
@@ -664,6 +739,9 @@ namespace Tizen.NUI.UIComponents
/// The handle to an object.
/// The handle to a slider or an uninitialized handle.
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public static Slider DownCast(BaseHandle handle)
{
Slider ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as Slider;
@@ -725,6 +803,9 @@ namespace Tizen.NUI.UIComponents
/// Dispose.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected override void Dispose(DisposeTypes type)
{
if (disposed)
@@ -821,6 +902,9 @@ namespace Tizen.NUI.UIComponents
/// The ValueChanged event arguments.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class ValueChangedEventArgs : EventArgs
{
private Slider _slider;
@@ -830,6 +914,9 @@ namespace Tizen.NUI.UIComponents
/// The slider.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Slider Slider
{
get
@@ -846,6 +933,9 @@ namespace Tizen.NUI.UIComponents
/// The slider value.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float SlideValue
{
get
@@ -863,6 +953,9 @@ namespace Tizen.NUI.UIComponents
/// The SlidingFinished event arguments.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class SlidingFinishedEventArgs : EventArgs
{
private Slider _slider;
@@ -872,6 +965,9 @@ namespace Tizen.NUI.UIComponents
/// The slider.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Slider Slider
{
get
@@ -888,6 +984,9 @@ namespace Tizen.NUI.UIComponents
/// The slider value.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public float SlideValue
{
get
@@ -905,6 +1004,9 @@ namespace Tizen.NUI.UIComponents
/// The MarkReached event arguments.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class MarkReachedEventArgs : EventArgs
{
private Slider _slider;
@@ -914,6 +1016,9 @@ namespace Tizen.NUI.UIComponents
/// The slider.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Slider Slider
{
get
@@ -930,6 +1035,9 @@ namespace Tizen.NUI.UIComponents
/// The slider value.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public int SlideValue
{
get
diff --git a/src/Tizen.NUI/src/public/UIComponents/ToggleButton.cs b/src/Tizen.NUI/src/public/UIComponents/ToggleButton.cs
index 7214c09..26e8232 100755
--- a/src/Tizen.NUI/src/public/UIComponents/ToggleButton.cs
+++ b/src/Tizen.NUI/src/public/UIComponents/ToggleButton.cs
@@ -24,9 +24,13 @@ namespace Tizen.NUI
/// A ToggleButton allows the user to change a setting between two or more states.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public class ToggleButton : Tizen.NUI.UIComponents.Button
{
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty StateVisualsProperty = BindableProperty.Create("StateVisuals", typeof(PropertyArray), typeof(ToggleButton), new PropertyArray(), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -45,6 +49,9 @@ namespace Tizen.NUI
});
/// Only for XAML property binding. This will be changed as Inhouse API by ACR later.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty TooltipsProperty = BindableProperty.Create("Tooltips", typeof(PropertyArray), typeof(ToggleButton), new PropertyArray(), propertyChanged: (bindable, oldValue, newValue) =>
{
var toggleButton = (ToggleButton)bindable;
@@ -61,7 +68,8 @@ namespace Tizen.NUI
return temp;
});
- /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty CurrentStateIndexProperty = BindableProperty.Create("CurrentStateIndex", typeof(int), typeof(ToggleButton), default(int), propertyChanged: (bindable, oldValue, newValue) =>
{
@@ -85,6 +93,9 @@ namespace Tizen.NUI
/// Create an instance for toggleButton.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public ToggleButton() : this(Interop.ToggleButton.ToggleButton_New(), true)
{
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -99,6 +110,9 @@ namespace Tizen.NUI
/// Gets and Sets the state visual array of toggle button.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyArray StateVisuals
{
get
@@ -115,6 +129,9 @@ namespace Tizen.NUI
/// Gets and Sets the tooltips of toggle button.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public Tizen.NUI.PropertyArray Tooltips
{
get
@@ -131,6 +148,9 @@ namespace Tizen.NUI
/// Gets and Sets the current state index of toggle button.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
public int CurrentStateIndex
{
get
@@ -153,6 +173,9 @@ namespace Tizen.NUI
///
/// The dispose type
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
protected override void Dispose(DisposeTypes type)
{
if (disposed)
@@ -181,30 +204,34 @@ namespace Tizen.NUI
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public new class Property
{
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int STATE_VISUALS = Interop.ToggleButton.ToggleButton_Property_STATE_VISUALS_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int TOOLTIPS = Interop.ToggleButton.ToggleButton_Property_TOOLTIPS_get();
///
/// This should be internal, please do not use.
///
/// 3
+ /// This will be deprecated
+ [Obsolete("Deprecated in API6; Will be removed in API9. Please use Tizen.NUI.Components")]
[EditorBrowsable(EditorBrowsableState.Never)]
- [Obsolete("Deprecated in API6; Will be removed in API9.")]
public static readonly int CURRENT_STATE_INDEX = Interop.ToggleButton.ToggleButton_Property_CURRENT_STATE_INDEX_get();
}
}