Revert "[Tizen] add Name in Layer, LineCount in TextLabel" 09/140409/1
authordongsug.song <dongsug.song@samsung.com>
Tue, 25 Jul 2017 01:43:16 +0000 (10:43 +0900)
committerdongsug.song <dongsug.song@samsung.com>
Tue, 25 Jul 2017 01:43:22 +0000 (10:43 +0900)
This reverts commit e3e0f1e9d09079dff6827df8daa8265215b90557.

Change-Id: I59fac2947f0deb959be1c935ca8ccf945d122856

Tizen.NUI/Tizen.NUI.csproj
Tizen.NUI/TizenTVNUI.snk [deleted file]
Tizen.NUI/src/public/BaseComponents/TextLabel.cs
Tizen.NUI/src/public/Layer.cs

index 4242bba..78b5739 100755 (executable)
@@ -16,9 +16,9 @@
 \r
   <PropertyGroup>\r
     <TargetFramework>netstandard1.6</TargetFramework>\r
-    <DefineConstants>$(DefineConstants)DEBUG_ON</DefineConstants>\r
+    <DefineConstants>$(DefineConstants);DEBUG_ON;DOT_NET_CORE</DefineConstants>\r
     <AllowUnsafeBlocks>True</AllowUnsafeBlocks>\r
-    <SignAssembly>True</SignAssembly>\r
+    <SignAssembly>False</SignAssembly>\r
     <AssemblyOriginatorKeyFile>TizenTVNUI.snk</AssemblyOriginatorKeyFile>\r
     <PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>\r
   </PropertyGroup>\r
diff --git a/Tizen.NUI/TizenTVNUI.snk b/Tizen.NUI/TizenTVNUI.snk
deleted file mode 100755 (executable)
index 957e8d4..0000000
Binary files a/Tizen.NUI/TizenTVNUI.snk and /dev/null differ
index bc794d7..19a0111 100755 (executable)
@@ -101,7 +101,7 @@ namespace Tizen.NUI.BaseComponents
             internal static readonly int ELLIPSIS = NDalicManualPINVOKE.TextLabel_Property_ELLIPSIS_get();
             internal static readonly int AUTO_SCROLL_STOP_MODE = NDalicManualPINVOKE.TextLabel_Property_AUTO_SCROLL_STOP_MODE_get();
             internal static readonly int AUTO_SCROLL_LOOP_DELAY = NDalicManualPINVOKE.TextLabel_Property_AUTO_SCROLL_LOOP_DELAY_get();
-            internal static readonly int LINE_COUNT = OUTLINE + 5;
+
         }
 
         /// <summary>
@@ -708,18 +708,5 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-        /// <summary>
-        /// The line count of text.
-        /// </summary>
-        public int LineCount
-        {
-            get
-            {
-                int temp = 0;
-                GetProperty(TextLabel.Property.LINE_COUNT).Get(out temp);
-                return temp;
-            }
-        }
-
     }
 }
index 84daa09..02d9adc 100755 (executable)
@@ -378,35 +378,5 @@ namespace Tizen.NUI
                 return ret;
             }
         }
-
-        /// <summary>
-        /// Gets/Sets the Layer's name.
-        /// </summary>
-        public string Name
-        {
-            get
-            {
-                return GetName();
-            }
-            set
-            {
-                SetName(value);
-            }
-        }
-
-        internal string GetName()
-        {
-            string ret = NDalicPINVOKE.Actor_GetName(swigCPtr);
-            if (NDalicPINVOKE.SWIGPendingException.Pending)
-                throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        internal void SetName(string name)
-        {
-            NDalicPINVOKE.Actor_SetName(swigCPtr, name);
-            if (NDalicPINVOKE.SWIGPendingException.Pending)
-                throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-        }
     }
 }