(TextField) Rename ShowDuration to ShowLastCharacterDuration 83/153983/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Wed, 4 Oct 2017 12:39:15 +0000 (13:39 +0100)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Wed, 4 Oct 2017 12:39:15 +0000 (13:39 +0100)
Change-Id: Ia9ff405942757452de973da4106b1a6eda4af6af

NUISamples/NUISamples/NUISamples.TizenTV/examples/text-test.cs
Tizen.NUI/src/internal/ManualPINVOKE.cs
Tizen.NUI/src/public/NUIConstants.cs

index 69e442a..10a1552 100755 (executable)
@@ -116,7 +116,7 @@ namespace TextTest
             field.Focusable = true;
             PropertyMap hiddenMap = new PropertyMap();
             hiddenMap.Add(HiddenInputProperty.Mode, new PropertyValue((int)HiddenInputModeType.ShowLastCharacter));
-            hiddenMap.Add(HiddenInputProperty.ShowDuration, new PropertyValue(2));
+            hiddenMap.Add(HiddenInputProperty.ShowLastCharacterDuration, new PropertyValue(2));
             hiddenMap.Add(HiddenInputProperty.SubstituteCount, new PropertyValue(4));
             hiddenMap.Add(HiddenInputProperty.SubstituteCharacter, new PropertyValue(0x23));
             field.HiddenInputSettings = hiddenMap;
@@ -174,4 +174,4 @@ namespace TextTest
             example.Run(args);
         }
     }
-}
\ No newline at end of file
+}
index e9d938c..1f66fb9 100755 (executable)
@@ -671,8 +671,9 @@ namespace Tizen.NUI
         [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint = "CSharp_HIDDENINPUT_PROPERTY_SUBSTITUTE_COUNT_get")]
         public static extern int HIDDENINPUT_PROPERTY_SUBSTITUTE_COUNT_get();
 
-        [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint = "CSharp_HIDDENINPUT_PROPERTY_SHOW_DURATION_get")]
-        public static extern int HIDDENINPUT_PROPERTY_SHOW_DURATION_get();
+        [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint = "CSharp_HIDDENINPUT_PROPERTY_SHOW_LAST_CHARACTER_DURATION_get")]
+        public static extern int HIDDENINPUT_PROPERTY_SHOW_LAST_CHARACTER_DURATION_get();
+
         [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TtsPlayer_SWIGUpcast")]
         public static extern global::System.IntPtr TtsPlayer_SWIGUpcast(global::System.IntPtr jarg1);
 
index fdb3633..b24ec1c 100755 (executable)
@@ -907,7 +907,7 @@ namespace Tizen.NUI
         public static readonly int Mode = NDalicManualPINVOKE.HIDDENINPUT_PROPERTY_MODE_get();
         public static readonly int SubstituteCharacter = NDalicManualPINVOKE.HIDDENINPUT_PROPERTY_SUBSTITUTE_CHARACTER_get();
         public static readonly int SubstituteCount = NDalicManualPINVOKE.HIDDENINPUT_PROPERTY_SUBSTITUTE_COUNT_get();
-        public static readonly int ShowDuration = NDalicManualPINVOKE.HIDDENINPUT_PROPERTY_SHOW_DURATION_get();
+        public static readonly int ShowLastCharacterDuration = NDalicManualPINVOKE.HIDDENINPUT_PROPERTY_SHOW_LAST_CHARACTER_DURATION_get();
     }
 
     /// <summary>
@@ -932,7 +932,7 @@ namespace Tizen.NUI
         /// </summary>
         ShowCount,
         /// <summary>
-        /// Show last character for the duration(use ShowDuration property to modify duration).
+        /// Show last character for the duration(use ShowLastCharacterDuration property to modify duration).
         /// </summary>
         ShowLastCharacter
     }