X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FElmSharp%2FElmSharp%2FGenGridItem.cs;h=e497d0a85e0abaaff2db2fd81c30c62c602d24a0;hb=58283d6a09a7f531af61ae7b27b574603ef244df;hp=13e1abf284ea1a6d7c720ba27296763f98169188;hpb=2ab6e72541ec4c50b7c6034523463786924bfc92;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/ElmSharp/ElmSharp/GenGridItem.cs b/src/ElmSharp/ElmSharp/GenGridItem.cs old mode 100755 new mode 100644 index 13e1abf..e497d0a --- a/src/ElmSharp/ElmSharp/GenGridItem.cs +++ b/src/ElmSharp/ElmSharp/GenGridItem.cs @@ -21,15 +21,21 @@ namespace ElmSharp { /// /// It inherits . - /// A instance to the gengrid item added. - /// It contains Update() method to update a gengrid item which is given. + /// An instance to the gengrid item is added. + /// It contains the Update() method to update a gengrid item which is given. /// + /// preview + [Obsolete("This has been deprecated in API12")] public class GenGridItem : GenItem { internal GenGridItem(object data, GenItemClass itemClass) : base(data, itemClass) { } + internal GenGridItem(object data, GenItemClass itemClass, EvasObject parent) : base(data, itemClass, parent) + { + } + /// /// Gets or sets whether a given gengrid item is selected. /// If one gengrid item is selected, any other previously selected items get unselected in favor of this new one. @@ -38,6 +44,8 @@ namespace ElmSharp /// If true, it is selected. /// If false, it is unselected. /// + /// preview + [Obsolete("This has been deprecated in API12")] public override bool IsSelected { get @@ -51,8 +59,10 @@ namespace ElmSharp } /// - /// Sets or gets the cursor to be shown when mouse is over the gengrid item. + /// Sets or gets the cursor to be shown when the mouse is over the gengrid item. /// + /// preview + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public override string Cursor { @@ -76,6 +86,8 @@ namespace ElmSharp /// /// Sets or gets the style for this item cursor. /// + /// preview + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public override string CursorStyle { @@ -92,6 +104,8 @@ namespace ElmSharp /// /// Sets or gets the cursor engine only usage for this item cursor. /// + /// preview + [Obsolete("This has been deprecated in API12")] [EditorBrowsable(EditorBrowsableState.Never)] public override bool IsUseEngineCursor { @@ -106,8 +120,10 @@ namespace ElmSharp } /// - /// Sets or gets or sets the style of given gengrid item's tooltip. + /// Sets or gets, or sets the style of the given gengrid item's tooltip. /// + /// preview + [Obsolete("This has been deprecated in API12")] public override string TooltipStyle { get @@ -121,8 +137,10 @@ namespace ElmSharp } /// - /// Get the gengrid item's select mode. + /// Gets the gengrid item's select mode. /// + /// preview + [Obsolete("This has been deprecated in API12")] public override GenItemSelectionMode SelectionMode { get @@ -136,8 +154,10 @@ namespace ElmSharp } /// - /// Gets or sets gengrid item's row position, relative to the whole gengrid's grid area. + /// Gets or sets the gengrid item's row position, relative to the whole gengrid's grid area. /// + /// preview + [Obsolete("This has been deprecated in API12")] public int Row { get @@ -149,8 +169,10 @@ namespace ElmSharp } /// - /// Gets or sets gengrid item's column position, relative to the whole gengrid's grid area. + /// Gets or sets the gengrid item's column position, relative to the whole gengrid's grid area. /// + /// preview + [Obsolete("This has been deprecated in API12")] public int Column { get @@ -162,17 +184,21 @@ namespace ElmSharp } /// - /// Set the text to be shown in the gengrid item. + /// Sets the text to be shown in the gengrid item. /// /// The text to set. + /// preview + [Obsolete("This has been deprecated in API12")] public override void SetTooltipText(string tooltip) { Interop.Elementary.elm_gengrid_item_tooltip_text_set(Handle, tooltip); } /// - /// Unset tooltip from item. + /// Unsets the tooltip from item. /// + /// preview + [Obsolete("This has been deprecated in API12")] public override void UnsetTooltip() { Interop.Elementary.elm_gengrid_item_tooltip_unset(Handle); @@ -180,20 +206,24 @@ namespace ElmSharp /// /// Updates the content of a given gengrid item. - /// This updates an item by calling all the genitem class functions again to get the content, text, and states. + /// This updates an item by calling all the GenItem class functions again to get the content, text, and states. /// Use this when the original item data has changed and you want the changes to reflect. /// /// /// to update the contents of all the realized items. /// + /// preview + [Obsolete("This has been deprecated in API12")] public override void Update() { Interop.Elementary.elm_gengrid_item_update(Handle); } /// - /// Set the content to be shown in the tooltip item. + /// Sets the content to be shown in the tooltip item. /// + /// preview + [Obsolete("This has been deprecated in API12")] protected override void UpdateTooltipDelegate() { Interop.Elementary.elm_gengrid_item_tooltip_content_cb_set(Handle,