Remove "SelectedStateImage","UnselectedStateImage" and "DisabledStateImage" property... 42/127942/1
authorFeng Jin <feng16.jin@samsung.com>
Tue, 2 May 2017 19:54:39 +0000 (03:54 +0800)
committerFeng Jin <feng16.jin@samsung.com>
Tue, 2 May 2017 19:55:53 +0000 (03:55 +0800)
Change-Id: Idd59493611b6d10bbcb39c743ce829d81333b9f6
Signed-off-by: Feng Jin <feng16.jin@samsung.com>
Tizen.NUI/src/public/UIComponents/Button.cs

index f90ae13..bf5d35e 100755 (executable)
@@ -551,9 +551,6 @@ namespace Tizen.NUI.UIComponents
             internal static readonly int NEXT_AUTO_REPEATING_DELAY = NDalicPINVOKE.Button_Property_NEXT_AUTO_REPEATING_DELAY_get();
             internal static readonly int TOGGLABLE = NDalicPINVOKE.Button_Property_TOGGLABLE_get();
             internal static readonly int SELECTED = NDalicPINVOKE.Button_Property_SELECTED_get();
-            internal static readonly int UNSELECTED_STATE_IMAGE = NDalicPINVOKE.Button_Property_UNSELECTED_STATE_IMAGE_get();
-            internal static readonly int SELECTED_STATE_IMAGE = NDalicPINVOKE.Button_Property_SELECTED_STATE_IMAGE_get();
-            internal static readonly int DISABLED_STATE_IMAGE = NDalicPINVOKE.Button_Property_DISABLED_STATE_IMAGE_get();
             internal static readonly int UNSELECTED_COLOR = NDalicPINVOKE.Button_Property_UNSELECTED_COLOR_get();
             internal static readonly int SELECTED_COLOR = NDalicPINVOKE.Button_Property_SELECTED_COLOR_get();
             internal static readonly int LABEL = NDalicPINVOKE.Button_Property_LABEL_get();
@@ -825,57 +822,6 @@ namespace Tizen.NUI.UIComponents
         }
 
         /// <summary>
-        /// Gets/Sets the unselected button foreground image.
-        /// </summary>
-        public Tizen.NUI.PropertyMap UnselectedStateImage
-        {
-            get
-            {
-                Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
-                GetProperty(Button.Property.UNSELECTED_STATE_IMAGE).Get(temp);
-                return temp;
-            }
-            set
-            {
-                SetProperty(Button.Property.UNSELECTED_STATE_IMAGE, new Tizen.NUI.PropertyValue(value));
-            }
-        }
-
-        /// <summary>
-        /// Gets/Sets the selected button foreground image.
-        /// </summary>
-        public Tizen.NUI.PropertyMap SelectedStateImage
-        {
-            get
-            {
-                Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
-                GetProperty(Button.Property.SELECTED_STATE_IMAGE).Get(temp);
-                return temp;
-            }
-            set
-            {
-                SetProperty(Button.Property.SELECTED_STATE_IMAGE, new Tizen.NUI.PropertyValue(value));
-            }
-        }
-
-        /// <summary>
-        /// Gets/Sets the disabled whilst unselected foreground button visual.
-        /// </summary>
-        public Tizen.NUI.PropertyMap DisabledStateImage
-        {
-            get
-            {
-                Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
-                GetProperty(Button.Property.DISABLED_STATE_IMAGE).Get(temp);
-                return temp;
-            }
-            set
-            {
-                SetProperty(Button.Property.DISABLED_STATE_IMAGE, new Tizen.NUI.PropertyValue(value));
-            }
-        }
-
-        /// <summary>
         /// Gets/Sets unselected color.
         /// </summary>
         public Color UnselectedColor