X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FElmSharp%2FElmSharp%2FCheck.cs;h=98f396c5ba828ae040ee4299f438746a950915be;hb=58283d6a09a7f531af61ae7b27b574603ef244df;hp=ae153d8268f582358e03c9dae26e25c771ef56dc;hpb=24852f385dc7578c74647940cce2dc7434f5f378;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/ElmSharp/ElmSharp/Check.cs b/src/ElmSharp/ElmSharp/Check.cs old mode 100755 new mode 100644 index ae153d8..98f396c --- a/src/ElmSharp/ElmSharp/Check.cs +++ b/src/ElmSharp/ElmSharp/Check.cs @@ -19,8 +19,10 @@ using System; namespace ElmSharp { /// - /// The check is a widget allows for toggling a value between true and false. + /// The Check is a widget that allows for toggling a value between true and false. /// + /// preview + [Obsolete("This has been deprecated in API12")] public class Check : Layout { private SmartEvent _changed; @@ -30,8 +32,10 @@ namespace ElmSharp /// Creates and initializes a new instance of the Check class. /// /// - /// The EvasObject to which the new Check will be attached as a child. + /// The EvasObject to which the new check will be attached as a child. /// + /// preview + [Obsolete("This has been deprecated in API12")] public Check(EvasObject parent) : base(parent) { _changed = new SmartEvent(this, this.RealHandle, "changed"); @@ -42,16 +46,20 @@ namespace ElmSharp } /// - /// StateChanged will be triggered when the IsChecked in the Check is changed. + /// StateChanged will be triggered when the IsChecked in the check is changed. /// + /// preview + [Obsolete("This has been deprecated in API12")] public event EventHandler StateChanged; /// - /// Sets or gets whether the given Check is checked or not. + /// Sets or gets whether the given check is checked or not. /// /// - /// When object is checked, the value will set to true, Conversely will set to false. + /// When an object is checked, the value will be set to true. Conversely, will be set to false. /// + /// preview + [Obsolete("This has been deprecated in API12")] public bool IsChecked { get @@ -65,6 +73,13 @@ namespace ElmSharp } } + /// + /// Creates a widget handle. + /// + /// Parent EvasObject. + /// Handle IntPtr. + /// preview + [Obsolete("This has been deprecated in API12")] protected override IntPtr CreateHandle(EvasObject parent) { IntPtr handle = Interop.Elementary.elm_layout_add(parent.Handle);