2015-02-03 07:07:31 +08:00
///Credit perchik
///Sourced from - http://forum.unity3d.com/threads/receive-onclick-event-and-pass-it-on-to-lower-ui-elements.293642/
using System ;
namespace UnityEngine.UI.Extensions
{
2015-02-10 08:03:38 +08:00
[Serializable]
public class DropDownListItem
2015-02-03 07:07:31 +08:00
{
[SerializeField]
private string _caption ;
/// <summary>
/// Caption of the Item
/// </summary>
public string Caption
{
get
{
return _caption ;
}
set
{
_caption = value ;
if ( OnUpdate ! = null )
OnUpdate ( ) ;
}
}
[SerializeField]
private Sprite _image ;
/// <summary>
/// Image component of the Item
/// </summary>
public Sprite Image
{
get
{
return _image ;
}
set
{
_image = value ;
if ( OnUpdate ! = null )
OnUpdate ( ) ;
}
}
[SerializeField]
private bool _isDisabled ;
/// <summary>
/// Is the Item currently enabled?
/// </summary>
public bool IsDisabled
{
get
{
return _isDisabled ;
}
set
{
_isDisabled = value ;
if ( OnUpdate ! = null )
OnUpdate ( ) ;
}
}
2015-02-10 08:03:38 +08:00
[SerializeField]
private string _id ;
///<summary>
2020-07-09 03:38:28 +08:00
///ID exists so that an item can have a caption and a value like in traditional windows forms. IE. an item may be a student's name, and the ID can be the student's ID number
2015-02-10 08:03:38 +08:00
///</summary>
public string ID
{
get { return _id ; }
set { _id = value ; }
}
2015-02-03 07:07:31 +08:00
2018-01-20 20:08:44 +08:00
public Action OnSelect = null ; //action to be called when this item is selected
2015-02-03 07:07:31 +08:00
2018-01-20 20:08:44 +08:00
internal Action OnUpdate = null ; //action to be called when something changes.
2015-02-03 07:07:31 +08:00
/// <summary>
2015-02-10 08:03:38 +08:00
/// Constructor for Drop Down List panelItems
2015-02-03 07:07:31 +08:00
/// </summary>
/// <param name="caption">Caption for the item </param>
2015-02-10 08:03:38 +08:00
/// <param name="val">ID of the item </param>
2015-02-03 07:07:31 +08:00
/// <param name="image"></param>
/// <param name="disabled">Should the item start disabled</param>
/// <param name="onSelect">Action to be called when this item is selected</param>
2015-02-10 08:03:38 +08:00
public DropDownListItem ( string caption = "" , string inId = "" , Sprite image = null , bool disabled = false , Action onSelect = null )
2015-02-03 07:07:31 +08:00
{
_caption = caption ;
_image = image ;
2015-02-10 08:03:38 +08:00
_id = inId ;
2015-02-03 07:07:31 +08:00
_isDisabled = disabled ;
OnSelect = onSelect ;
}
}
}