[NUI][ATSPI] Modify Accessbility for picker components
authorWoochanlee <wc0917.lee@samsung.com>
Thu, 27 May 2021 04:21:29 +0000 (13:21 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Wed, 23 Jun 2021 08:25:09 +0000 (17:25 +0900)
src/Tizen.NUI.Components/Controls/DatePicker.cs
src/Tizen.NUI.Components/Controls/Picker.cs
src/Tizen.NUI.Components/Controls/TimePicker.cs

index a3aa04e..1cbb2c9 100755 (executable)
@@ -153,7 +153,7 @@ namespace Tizen.NUI.Components
         public override void OnInitialize()
         {
             base.OnInitialize();
-            SetAccessibilityConstructor(Role.DateEditor, AccessibilityInterface.Value);
+            SetAccessibilityConstructor(Role.DateEditor);
 
             dayPicker = new Picker()
             {
@@ -187,7 +187,6 @@ namespace Tizen.NUI.Components
                          Justification = "The CellPadding will be dispose when the date picker disposed")]
         private void Initialize()
         {
-            AccessibilityHighlightable = true;
             HeightSpecification = LayoutParamPolicies.MatchParent;
 
             Layout = new LinearLayout() { 
index 9035521..38e3a21 100755 (executable)
@@ -252,7 +252,7 @@ namespace Tizen.NUI.Components
         public override void OnInitialize()
         {
             base.OnInitialize();
-            SetAccessibilityConstructor(Role.List, AccessibilityInterface.Value);
+            SetAccessibilityConstructor(Role.List);
         }
 
         /// <summary>
@@ -289,7 +289,6 @@ namespace Tizen.NUI.Components
                 
         private void Initialize()
         {
-            AccessibilityHighlightable = true;
             HeightSpecification = LayoutParamPolicies.MatchParent;
 
             //Picker Using scroller internally. actually it is a kind of scroller which has infinity loop,
index 8731aa8..ec3e192 100755 (executable)
@@ -208,7 +208,7 @@ namespace Tizen.NUI.Components
         public override void OnInitialize()
         {
             base.OnInitialize();
-            SetAccessibilityConstructor(Role.DateEditor, AccessibilityInterface.Value);
+            SetAccessibilityConstructor(Role.DateEditor);
 
             hourPicker = new Picker()
             {
@@ -271,7 +271,6 @@ namespace Tizen.NUI.Components
                          Justification = "The CellPadding will be dispose when the time picker disposed")]
         private void Initialize()
         {
-            AccessibilityHighlightable = true;
             HeightSpecification = LayoutParamPolicies.MatchParent;
 
             Layout = new LinearLayout() {