X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.NUI%2Fsrc%2Fpublic%2FBaseComponents%2FViewEnum.cs;h=c7bc20d66630c3609a9de3c16cbe79ed8ce2e306;hb=7c25a740f0256551436f6878bc626cb682d990c1;hp=722cabbca08dba83c5c0c381044cfb3f8b80dae4;hpb=7ff2a81aaec77bf411d610a9935170a946eff332;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs b/src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs index 722cabb..c7bc20d 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs @@ -166,10 +166,8 @@ namespace Tizen.NUI.BaseComponents /// /// Actions property value to update visual property. /// Note : Only few kind of properies can be update. Update with invalid property action is undefined. - /// This property can be redefined by child class if it use different value. /// - [EditorBrowsable(EditorBrowsableState.Never)] - protected int ActionUpdateProperty { get; set; } = Interop.Visual.GetActionUpdateProperty(); + internal static readonly int ActionUpdateProperty = Interop.Visual.GetActionUpdateProperty(); internal enum PropertyRange { @@ -224,6 +222,10 @@ namespace Tizen.NUI.BaseComponents internal static readonly int ScaleZ = Interop.ActorProperty.ScaleZGet(); internal static readonly int WorldScale = Interop.ActorProperty.WorldScaleGet(); internal static readonly int VISIBLE = Interop.ActorProperty.VisibleGet(); + internal static readonly int COLOR = Interop.ActorProperty.ColorGet(); + internal static readonly int ColorRed = Interop.ActorProperty.ColorRedGet(); + internal static readonly int ColorGreen = Interop.ActorProperty.ColorGreenGet(); + internal static readonly int ColorBlue = Interop.ActorProperty.ColorBlueGet(); internal static readonly int WorldColor = Interop.ActorProperty.WorldColorGet(); internal static readonly int WorldMatrix = Interop.ActorProperty.WorldMatrixGet(); internal static readonly int NAME = Interop.ActorProperty.NameGet(); @@ -261,6 +263,9 @@ namespace Tizen.NUI.BaseComponents internal static readonly int DispatchKeyEvents = Interop.ViewProperty.DispatchKeyEventsGet(); internal static readonly int AccessibilityHidden = Interop.ViewProperty.AccessibilityHiddenGet(); internal static readonly int AutomationId = Interop.ViewProperty.AutomationIdGet(); + internal static readonly int UpdateAreaHint = Interop.ActorProperty.UpdateAreaHintGet(); + internal static readonly int DispatchTouchMotion = Interop.ActorProperty.DispatchTouchMotionGet(); + internal static readonly int DispatchHoverMotion = Interop.ActorProperty.DispatchHoverMotionGet(); } } }