[NUI]Remove some unused APIs. 91/162691/3
authorFeng Jin <feng16.jin@samsung.com>
Tue, 5 Dec 2017 02:34:56 +0000 (10:34 +0800)
committerFeng Jin <feng16.jin@samsung.com>
Fri, 8 Dec 2017 05:47:29 +0000 (13:47 +0800)
Change-Id: Iaeb44e2b293e732f8518f5c8b14e715dd93ffa17
Signed-off-by: Feng Jin <feng16.jin@samsung.com>
20 files changed:
src/Tizen.NUI/src/internal/Uint16Pair.cs
src/Tizen.NUI/src/public/BaseComponents/TableView.cs
src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs
src/Tizen.NUI/src/public/BaseComponents/TextField.cs
src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs
src/Tizen.NUI/src/public/BaseComponents/VideoView.cs
src/Tizen.NUI/src/public/BaseComponents/View.cs
src/Tizen.NUI/src/public/KeyFrames.cs
src/Tizen.NUI/src/public/Layer.cs
src/Tizen.NUI/src/public/PaddingType.cs
src/Tizen.NUI/src/public/Path.cs
src/Tizen.NUI/src/public/Position.cs
src/Tizen.NUI/src/public/Position2D.cs
src/Tizen.NUI/src/public/Property.cs
src/Tizen.NUI/src/public/Size2D.cs
src/Tizen.NUI/src/public/Timer.cs
src/Tizen.NUI/src/public/UIComponents/Popup.cs
src/Tizen.NUI/src/public/UIComponents/PushButton.cs
src/Tizen.NUI/src/public/UIComponents/ScrollBar.cs
src/Tizen.NUI/src/public/VisualBase.cs

index e85cfa3..6d3b83d 100755 (executable)
@@ -31,9 +31,7 @@ namespace Tizen.NUI
     /// common architectures.<br />
     /// </summary>
     /// <since_tizen> 3 </since_tizen>
-    [Obsolete("Please do not use! This will be deprecated!")]
-    [EditorBrowsable(EditorBrowsableState.Never)]
-    public class Uint16Pair : global::System.IDisposable
+    internal class Uint16Pair : global::System.IDisposable
     {
         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
         /// <summary>swigCMemOwn.</summary>
index 75be6e6..f4801fa 100755 (executable)
@@ -354,20 +354,6 @@ namespace Tizen.NUI.BaseComponents
         {
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
-        /// <summary>
-        /// Downcasts a handle to TabelView handle.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use as keyword.
-        [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public new static TableView DownCast(BaseHandle handle)
-        {
-            TableView ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as TableView;
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
 
         /// <summary>
         /// Adds a child to the table.<br />
index d75cdc4..1bec44e 100755 (executable)
@@ -335,23 +335,6 @@ namespace Tizen.NUI.BaseComponents
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// <summary>
-        /// Downcasts a handle to textEditor handle.
-        /// </summary>
-        /// <param name="handle"></param>
-        /// <returns></returns>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use as keyword.
-        [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public new static TextEditor DownCast(BaseHandle handle)
-        {
-            TextEditor ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as TextEditor;
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
         internal TextEditorSignal TextChangedSignal()
         {
             TextEditorSignal ret = new TextEditorSignal(NDalicPINVOKE.TextEditor_TextChangedSignal(swigCPtr), false);
index 31674df..4cf304e 100755 (executable)
@@ -319,21 +319,6 @@ namespace Tizen.NUI.BaseComponents
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// <summary>
-        /// Downcasts a handle to textField handle.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use as keyword.
-        [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public new static TextField DownCast(BaseHandle handle)
-        {
-            TextField ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as TextField;
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
         internal TextFieldSignal TextChangedSignal()
         {
             TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_TextChangedSignal(swigCPtr), false);
index a39e7ea..14ab512 100755 (executable)
@@ -153,11 +153,12 @@ namespace Tizen.NUI.BaseComponents
         [EditorBrowsable(EditorBrowsableState.Never)]
         public new static TextLabel DownCast(BaseHandle handle)
         {
-            TextLabel ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as TextLabel;
+            TextLabel ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as TextLabel;
 
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
             return ret;
         }
+
         /// <summary>
         /// The TranslatableText property.<br />
         /// The text can set the SID value.<br />
index b4c2c63..4c15f39 100755 (executable)
@@ -188,23 +188,6 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// Downcasts a handle to videoView handle.
-        /// </summary>
-        /// <param name="handle"></param>
-        /// <returns></returns>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use as keyword.
-        /// <since_tizen> 3 </since_tizen>
-        [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public new static VideoView DownCast(BaseHandle handle)
-        {
-            VideoView ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as VideoView;
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        /// <summary>
         /// Starts the video playback.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
index 5a3d624..c8ebfd4 100755 (executable)
@@ -2104,20 +2104,6 @@ namespace Tizen.NUI.BaseComponents
         }
 
         /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated. Please use Visibility instead.")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        [Obsolete("Please do not use! This will be deprecated! Please use Visibility instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public bool Visible
-        {
-            get
-            {
-                return IsVisible();
-            }
-        }
-
-        /// <summary>
         /// Retrieves and sets the view's opacity.<br />
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
@@ -4197,107 +4183,6 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use TouchEvent.
-        [Obsolete("Please do not use! This will be deprecated! Please use TouchEvent instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public event EventHandlerWithReturnType<object, TouchEventArgs, bool> Touched
-        {
-            add
-            {
-                if (_touchDataEventHandler == null)
-                {
-                    _touchDataCallback = OnTouch;
-                    this.TouchSignal().Connect(_touchDataCallback);
-                }
-
-                _touchDataEventHandler += value;
-            }
-
-            remove
-            {
-                _touchDataEventHandler -= value;
-
-                if (_touchDataEventHandler == null && TouchSignal().Empty() == false)
-                {
-                    this.TouchSignal().Disconnect(_touchDataCallback);
-                }
-
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use HoverEvent.
-        [Obsolete("Please do not use! This will be deprecated! Please use HoverEvent instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public event EventHandlerWithReturnType<object, HoverEventArgs, bool> Hovered
-        {
-            add
-            {
-                if (_hoverEventHandler == null)
-                {
-                    _hoverEventCallback = OnHoverEvent;
-                    this.HoveredSignal().Connect(_hoverEventCallback);
-                }
-
-                _hoverEventHandler += value;
-            }
-
-            remove
-            {
-                _hoverEventHandler -= value;
-
-                if (_hoverEventHandler == null && HoveredSignal().Empty() == false)
-                {
-                    this.HoveredSignal().Disconnect(_hoverEventCallback);
-                }
-
-            }
-        }
-
-        /// <summary>
-        /// Please do not use! this will be deprecated.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use WheelEvent.
-        [Obsolete("Please do not use! This will be deprecated! Please use WheelEvent instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public event EventHandlerWithReturnType<object, WheelEventArgs, bool> WheelMoved
-        {
-            add
-            {
-                if (_wheelEventHandler == null)
-                {
-                    _wheelEventCallback = OnWheelEvent;
-                    this.WheelEventSignal().Connect(_wheelEventCallback);
-                }
-
-                _wheelEventHandler += value;
-            }
-
-            remove
-            {
-                _wheelEventHandler -= value;
-
-                if (_wheelEventHandler == null && WheelEventSignal().Empty() == false)
-                {
-                    this.WheelEventSignal().Disconnect(_wheelEventCallback);
-                }
-
-            }
-        }
-
         /// <summary>
         /// [Obsolete("Please do not use! this will be deprecated")]
         /// </summary>
index bdc158b..de74b50 100755 (executable)
@@ -113,21 +113,6 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Downcasts a handle to keyFrame handle.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use as keyword.
-        [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static KeyFrames DownCast(BaseHandle handle)
-        {
-            KeyFrames ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as KeyFrames;
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        /// <summary>
         /// Gets the type of the key frame.
         /// </summary>
         /// <returns>The key frame property type</returns>
index 3da5c3c..bfa0b8e 100755 (executable)
@@ -179,6 +179,7 @@ namespace Tizen.NUI
             if (NDalicPINVOKE.SWIGPendingException.Pending)
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
+
         internal void SetParentOrigin(Vector3 origin)
         {
             NDalicPINVOKE.Actor_SetParentOrigin(swigCPtr, Vector3.getCPtr(origin));
index 43742b0..5e21aa7 100755 (executable)
@@ -201,26 +201,6 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// The Left value.
-        /// </summary>
-        /// Please DO NOT use! This will be deprecated!
-        /// instead please use Start property.
-        /// <since_tizen> 3 </since_tizen>
-        [Obsolete("Please do not use! This will be Deprecated! Please use PaddingType.Start instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public float Left
-        {
-            set
-            {
-                left = value;
-            }
-            get
-            {
-                return left;
-            }
-        }
-
-        /// <summary>
         /// The Start value.
         /// </summary>
         /// <since_tizen> 4 </since_tizen>
@@ -237,26 +217,6 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// The Right value.
-        /// </summary>
-        /// Please DO NOT use! This will be deprecated!
-        /// instead please use Start property.
-        /// <since_tizen> 3 </since_tizen>
-        [Obsolete("Please do not use! This will be deprecated! Please use PaddingType.End instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public float Right
-        {
-            set
-            {
-                right = value;
-            }
-            get
-            {
-                return right;
-            }
-        }
-
-        /// <summary>
         /// The End value.
         /// </summary>
         /// <since_tizen> 4 </since_tizen>
index c020e4e..6dd06d7 100755 (executable)
@@ -94,21 +94,6 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Downcasts a handle to Path handle.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use as keyword.
-        [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static Path DownCast(BaseHandle handle)
-        {
-            Path ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as Path;
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        /// <summary>
         /// Adds an interpolation point.
         /// </summary>
         /// <param name="point">The new interpolation point to be added.</param>
index e51f657..e8b1dd5 100755 (executable)
@@ -932,134 +932,6 @@ namespace Tizen.NUI
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointTop.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.Top instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static float AnchorPointTop
-        {
-            get
-            {
-                float ret = NDalicPINVOKE.AnchorPointTop_get();
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointBottom.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.Bottom instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static float AnchorPointBottom
-        {
-            get
-            {
-                float ret = NDalicPINVOKE.AnchorPointBottom_get();
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointLeft.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.Left instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static float AnchorPointLeft
-        {
-            get
-            {
-                float ret = NDalicPINVOKE.AnchorPointLeft_get();
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointRight.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.Right instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static float AnchorPointRight
-        {
-            get
-            {
-                float ret = NDalicPINVOKE.AnchorPointRight_get();
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointMiddle.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.Middle instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static float AnchorPointMiddle
-        {
-            get
-            {
-                float ret = NDalicPINVOKE.AnchorPointMiddle_get();
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointTopLeft.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.TopLeft instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static Position AnchorPointTopLeft
-        {
-            get
-            {
-                global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointTopLeft_get();
-                Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false);
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointTopCenter.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.TopCenter instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static Position AnchorPointTopCenter
-        {
-            get
-            {
-                global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointTopCenter_get();
-                Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false);
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
         /// Instead please use PivotPointTopRight.
         [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.TopRight instead!")]
         [EditorBrowsable(EditorBrowsableState.Never)]
@@ -1098,82 +970,6 @@ namespace Tizen.NUI
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointCenter.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.Center instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static Position AnchorPointCenter
-        {
-            get
-            {
-                global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointCenter_get();
-                Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false);
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointCenterRight.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.CenterRight instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static Position AnchorPointCenterRight
-        {
-            get
-            {
-                global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointCenterRight_get();
-                Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false);
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointBottomLeft.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.BottomLeft instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static Position AnchorPointBottomLeft
-        {
-            get
-            {
-                global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointBottomLeft_get();
-                Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false);
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use PivotPointBottomCenter.
-        [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.BottomCenter instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static Position AnchorPointBottomCenter
-        {
-            get
-            {
-                global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointBottomCenter_get();
-                Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false);
-                if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-                return ret;
-            }
-        }
-
-        /// <summary>
-        /// [Obsolete("Please do not use! this will be deprecated")]
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
         /// Instead please use PivotPointBottomRight.
         [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint.BottomRight instead!")]
         [EditorBrowsable(EditorBrowsableState.Never)]
index 6102a8c..2cfde0d 100755 (executable)
@@ -399,28 +399,6 @@ namespace Tizen.NUI
             return new Position2D((int)vec.X, (int)vec.Y);
         }
 
-        /// <summary>
-        /// Converts a Position2D instance to a Uint16Pair instance.
-        /// </summary>
-        /// <param name="position2d">An object of the Position2D type.</param>
-        /// <returns>return an object of the Uint16Pair type</returns>
-        /// <since_tizen> 4 </since_tizen>
-        public static implicit operator Uint16Pair(Position2D position2d)
-        {
-            return new Uint16Pair((uint)position2d.X, (uint)position2d.Y);
-        }
-
-        /// <summary>
-        /// Converts a Uint16Pair instance to a Position2D instance.
-        /// </summary>
-        /// <param name="pair">An object of the Uint16Pair type.</param>
-        /// <returns>return an object of the Position2D type</returns>
-        /// <since_tizen> 4 </since_tizen>
-        public static implicit operator Position2D(Uint16Pair pair)
-        {
-            return new Position2D((int)pair.GetX(), (int)pair.GetY());
-        }
-
     }
 
 }
index 881c1e5..ae904d7 100755 (executable)
@@ -1022,19 +1022,6 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Please do not use! this will be deprecated.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        [Obsolete("Please do not use! This will be deprecated!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public string GetKey(uint position)
-        {
-            string ret = NDalicPINVOKE.Property_Map_GetKey(swigCPtr, position);
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        /// <summary>
         /// Retrieves the key at the specified position.
         /// </summary>
         /// <param name="position">The specified position.</param>
@@ -1048,20 +1035,6 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Please do not use! this will be deprecated
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        [Obsolete("Please do not use! This will be deprecated!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public PropertyValue Find(string key)
-        {
-            global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_0(swigCPtr, key);
-            PropertyValue ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyValue(cPtr, false);
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        /// <summary>
         /// Finds the value for the specified key if it exists.
         /// </summary>
         /// <param name="key">The key to find.</param>
@@ -1091,34 +1064,6 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Please do not use! this will be deprecated.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        [Obsolete("Please do not use! This will be deprecated!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public PropertyValue Find(string key, PropertyType type)
-        {
-            global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_4(swigCPtr, key, (int)type);
-            PropertyValue ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyValue(cPtr, false);
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        /// <summary>
-        /// Please do not use! this will be deprecated
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        [Obsolete("Please do not use! This will be deprecated!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public PropertyValue Find(int key, PropertyType type)
-        {
-            global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_5(swigCPtr, key, (int)type);
-            PropertyValue ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyValue(cPtr, false);
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        /// <summary>
         /// Clears the map.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
index fcbcf63..ed1d4a7 100755 (executable)
@@ -395,30 +395,6 @@ namespace Tizen.NUI
         {
             return new Size2D((int)vector2.X, (int)vector2.Y);
         }
-
-        /// <summary>
-        /// The type cast operator, Size2D to Uint16Pair.
-        /// </summary>
-        /// <param name="size2d">An object of the Size2D type.</param>
-        /// <returns>return a Uint16Pair instance</returns>
-        /// <since_tizen> 4 </since_tizen>
-        public static implicit operator Uint16Pair(Size2D size2d)
-        {
-            return new Uint16Pair((uint)size2d.Width, (uint)size2d.Height);
-        }
-
-        /// <summary>
-        /// The type cast operator, Uint16Pair to Size2D type.
-        /// </summary>
-        /// <param name="pair">An object of the Vector2 type.</param>
-        /// <returns>return a Size2D instance</returns>
-        /// <since_tizen> 4 </since_tizen>
-        public static implicit operator Size2D(Uint16Pair pair)
-        {
-            return new Size2D((int)pair.GetWidth(), (int)pair.GetWidth());
-        }
-
-
     }
 
 }
index ab1c982..f733e25 100755 (executable)
@@ -164,21 +164,6 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Downcasts a handle to Timer handle.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use as keyword.
-        [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public static Timer DownCast(BaseHandle handle)
-        {
-            Timer ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as Timer;
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        /// <summary>
         /// Starts the timer.<br />
         /// In case a timer is already running, its time is reset and the timer is restarted.<br />
         /// </summary>
index 8e5002e..3da49bf 100755 (executable)
@@ -391,21 +391,6 @@ namespace Tizen.NUI.UIComponents
         }
 
         /// <summary>
-        /// Downcasts a handle to popup handle.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use as keyword.
-        [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public new static Popup DownCast(BaseHandle handle)
-        {
-            Popup ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as Popup;
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        /// <summary>
         /// Sets the title for this popup.
         /// </summary>
         /// <param name="titleView">The actor to set the title.</param>
index 0b88d5c..8b9a0ba 100755 (executable)
@@ -94,190 +94,5 @@ namespace Tizen.NUI.UIComponents
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
 
         }
-
-        /// <summary>
-        /// Downcasts a handle to pushButton handle.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use as keyword.
-        [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public new static PushButton DownCast(BaseHandle handle)
-        {
-            PushButton ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as PushButton;
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        /// <summary>
-        /// UnselectedIcon.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use UnselectedVisual.
-        [Obsolete("Please do not use! This will be deprecated! Please use UnselectedVisual instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public string UnselectedIcon
-        {
-            set
-            {
-                SetProperty(PushButton.Property.UNSELECTED_ICON, new Tizen.NUI.PropertyValue(value));
-            }
-        }
-
-        /// <summary>
-        /// SelectedIcon.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use SelectedVisual.
-        [Obsolete("Please do not use! This will be deprecated! Please use SelectedVisual instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public string SelectedIcon
-        {
-            set
-            {
-                SetProperty(PushButton.Property.SELECTED_ICON, new Tizen.NUI.PropertyValue(value));
-            }
-        }
-
-        /// <summary>
-        /// Please do not use! this will be deprecated
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        [Obsolete("Please do not use! This will be deprecated! Please use LabelRelativeAlignment instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public IconAlignmentType IconAlignment
-        {
-            get
-            {
-                string temp;
-                if (GetProperty(PushButton.Property.ICON_ALIGNMENT).Get(out temp) == false)
-                {
-                    NUILog.Error("IconAlignment get error!");
-                }
-                switch (temp)
-                {
-                    case "LEFT":
-                        return IconAlignmentType.Left;
-                    case "RIGHT":
-                        return IconAlignmentType.Right;
-                    case "TOP":
-                        return IconAlignmentType.Top;
-                    case "BOTTOM":
-                        return IconAlignmentType.Bottom;
-                    default:
-                        return IconAlignmentType.Default;
-                }
-            }
-            set
-            {
-                string valueToString = "";
-                switch (value)
-                {
-                    case IconAlignmentType.Left:
-                        {
-                            valueToString = "LEFT";
-                            break;
-                        }
-                    case IconAlignmentType.Right:
-                        {
-                            valueToString = "RIGHT";
-                            break;
-                        }
-                    case IconAlignmentType.Top:
-                        {
-                            valueToString = "TOP";
-                            break;
-                        }
-                    case IconAlignmentType.Bottom:
-                        {
-                            valueToString = "BOTTOM";
-                            break;
-                        }
-                    default:
-                        {
-                            valueToString = "DEFAULT";
-                            break;
-                        }
-                }
-                SetProperty(PushButton.Property.ICON_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
-            }
-        }
-
-        /// <summary>
-        /// Please do not use! this will be deprecated
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// no use
-        [Obsolete("Please do not use! This will be deprecated! Please use Button.LabelPadding instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public new Vector4 LabelPadding
-        {
-            get
-            {
-                Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
-                GetProperty(PushButton.Property.LABEL_PADDING).Get(temp);
-                return temp;
-            }
-            set
-            {
-                SetProperty(PushButton.Property.LABEL_PADDING, new Tizen.NUI.PropertyValue(value));
-            }
-        }
-
-        /// <summary>
-        /// Please do not use! this will be deprecated
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// no use
-        [Obsolete("Please do not use! This will be deprecated! Please use ForegroundVisualPadding instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public Vector4 IconPadding
-        {
-            get
-            {
-                Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
-                GetProperty(PushButton.Property.ICON_PADDING).Get(temp);
-                return temp;
-            }
-            set
-            {
-                SetProperty(PushButton.Property.ICON_PADDING, new Tizen.NUI.PropertyValue(value));
-            }
-        }
-
-        /// <summary>
-        /// Please do not use! this will be deprecated
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// no use
-        [Obsolete("Please do not use! This will be deprecated! Please use Button.Align instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public enum IconAlignmentType
-        {
-            /// <summary>
-            /// The icon located to the left of text.
-            /// </summary>
-            Left,
-            /// <summary>
-            /// The icon located to the right of text.
-            /// </summary>
-            Right,
-            /// <summary>
-            /// The icon located to the top of text.
-            /// </summary>
-            Top,
-            /// <summary>
-            /// The icon located to the bottom of text.
-            /// </summary>
-            Bottom,
-            /// <summary>
-            /// The icon located to the right of text by default.
-            /// </summary>
-            Default = Right
-        }
-
     }
 }
\ No newline at end of file
index 4d7fa5c..e2d752d 100755 (executable)
@@ -241,21 +241,6 @@ namespace Tizen.NUI.UIComponents
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        /// <summary>
-        /// Downcasts a handle to scrollBar handle.
-        /// </summary>
-        /// <since_tizen> 3 </since_tizen>
-        /// Please do not use! this will be deprecated!
-        /// Instead please use as keyword.
-        [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public new static ScrollBar DownCast(BaseHandle handle)
-        {
-            ScrollBar ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as ScrollBar;
-            if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
         internal void SetScrollPropertySource(Animatable handle, int propertyScrollPosition, int propertyMinScrollPosition, int propertyMaxScrollPosition, int propertyScrollContentSize)
         {
             NDalicPINVOKE.ScrollBar_SetScrollPropertySource(swigCPtr, Animatable.getCPtr(handle), propertyScrollPosition, propertyMinScrollPosition, propertyMaxScrollPosition, propertyScrollContentSize);
index 3182820..d91eb2c 100755 (executable)
@@ -204,14 +204,8 @@ namespace Tizen.NUI
         /// Creates the property map representing this visual.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
-        [Obsolete("Please be caution! This will be readonly!")]
-        [EditorBrowsable(EditorBrowsableState.Never)]
         public PropertyMap Creation
         {
-            set
-            {
-                CreatePropertyMap(value);
-            }
             get
             {
                 PropertyMap map = new PropertyMap();