You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
1.7 KiB
115 lines
1.7 KiB
using UnityEngine; |
|
using UnityEngine.UI; |
|
using System; |
|
|
|
[Serializable] |
|
public class ComboBoxItem |
|
{ |
|
[SerializeField] |
|
private string _caption; |
|
public string Caption |
|
{ |
|
get |
|
{ |
|
return _caption; |
|
} |
|
set |
|
{ |
|
_caption = value; |
|
if (OnUpdate != null) |
|
OnUpdate(); |
|
} |
|
} |
|
|
|
[SerializeField] |
|
private Sprite _image; |
|
public Sprite Image |
|
{ |
|
get |
|
{ |
|
return _image; |
|
} |
|
set |
|
{ |
|
_image = value; |
|
if (OnUpdate != null) |
|
OnUpdate(); |
|
} |
|
} |
|
|
|
[SerializeField] |
|
private bool _isDisabled; |
|
public bool IsDisabled |
|
{ |
|
get |
|
{ |
|
return _isDisabled; |
|
} |
|
set |
|
{ |
|
_isDisabled = value; |
|
if (OnUpdate != null) |
|
OnUpdate(); |
|
} |
|
} |
|
|
|
public Action OnSelect; |
|
|
|
internal Action OnUpdate; |
|
|
|
public ComboBoxItem(string caption) |
|
{ |
|
_caption = caption; |
|
} |
|
|
|
public ComboBoxItem(Sprite image) |
|
{ |
|
_image = image; |
|
} |
|
|
|
public ComboBoxItem(string caption, bool disabled) |
|
{ |
|
_caption = caption; |
|
_isDisabled = disabled; |
|
} |
|
|
|
public ComboBoxItem(Sprite image, bool disabled) |
|
{ |
|
_image = image; |
|
_isDisabled = disabled; |
|
} |
|
|
|
public ComboBoxItem(string caption, Sprite image, bool disabled) |
|
{ |
|
_caption = caption; |
|
_image = image; |
|
_isDisabled = disabled; |
|
} |
|
|
|
public ComboBoxItem(string caption, Sprite image, bool disabled, Action onSelect) |
|
{ |
|
_caption = caption; |
|
_image = image; |
|
_isDisabled = disabled; |
|
OnSelect = onSelect; |
|
} |
|
|
|
public ComboBoxItem(string caption, Sprite image, Action onSelect) |
|
{ |
|
_caption = caption; |
|
_image = image; |
|
OnSelect = onSelect; |
|
} |
|
|
|
public ComboBoxItem(string caption, Action onSelect) |
|
{ |
|
_caption = caption; |
|
OnSelect = onSelect; |
|
} |
|
|
|
public ComboBoxItem(Sprite image, Action onSelect) |
|
{ |
|
_image = image; |
|
OnSelect = onSelect; |
|
} |
|
}
|
|
|