Merged in larsme/unity-ui-extensions (pull request #2)
Additional Options for DropDownList & AutoCompleteComboBox Few post fixes requiredrelease
commit
7824978a8f
|
@ -15,8 +15,6 @@ namespace UnityEngine.UI.Extensions
|
||||||
|
|
||||||
public List<string> AvailableOptions;
|
public List<string> AvailableOptions;
|
||||||
|
|
||||||
public System.Action<int> OnSelectionChanged; // fires when selection is changed;
|
|
||||||
|
|
||||||
//private bool isInitialized = false;
|
//private bool isInitialized = false;
|
||||||
private bool _isPanelActive = false;
|
private bool _isPanelActive = false;
|
||||||
private bool _hasDrawnOnce = false;
|
private bool _hasDrawnOnce = false;
|
||||||
|
@ -24,6 +22,7 @@ namespace UnityEngine.UI.Extensions
|
||||||
private InputField _mainInput;
|
private InputField _mainInput;
|
||||||
private RectTransform _inputRT;
|
private RectTransform _inputRT;
|
||||||
|
|
||||||
|
private Button _arrow_Button;
|
||||||
|
|
||||||
private RectTransform _rectTransform;
|
private RectTransform _rectTransform;
|
||||||
|
|
||||||
|
@ -73,11 +72,98 @@ namespace UnityEngine.UI.Extensions
|
||||||
RedrawPanel();
|
RedrawPanel();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool interactible
|
||||||
|
{
|
||||||
|
get { return _mainInput.interactable || _arrow_Button.interactable; }
|
||||||
|
private set {
|
||||||
|
_mainInput.interactable = value;
|
||||||
|
_arrow_Button.interactable = value;
|
||||||
|
if (!value && _isPanelActive) {
|
||||||
|
ToggleDropdownPanel (false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[SerializeField]
|
||||||
|
//I couldn't come up with a better name
|
||||||
|
private bool _technicallyInteractible = true;
|
||||||
|
public bool TechnicallyInteractible
|
||||||
|
{
|
||||||
|
get { return _technicallyInteractible; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
_technicallyInteractible = value;
|
||||||
|
interactible = _technicallyInteractible && (AvailableOptions.Count > 0 || _remainInteractableIfEmpty);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[SerializeField]
|
||||||
|
private bool _remainInteractableIfEmpty = true;
|
||||||
|
public bool RemainInteractableIfEmpty
|
||||||
|
{
|
||||||
|
get { return _remainInteractableIfEmpty; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
_remainInteractableIfEmpty = value;
|
||||||
|
interactible = _technicallyInteractible && (AvailableOptions.Count > 0 || _remainInteractableIfEmpty);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool SelectFirstItemOnStart = false;
|
||||||
|
|
||||||
|
[SerializeField]
|
||||||
|
private bool _ChangeInputTextColorBasedOnMatchingItems = false;
|
||||||
|
public bool ChangeInputTextColorBasedOnMatchingItems{
|
||||||
|
get { return _remainInteractableIfEmpty; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
_ChangeInputTextColorBasedOnMatchingItems = value;
|
||||||
|
if (_ChangeInputTextColorBasedOnMatchingItems) {
|
||||||
|
SetInputTextColor ();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//TODO design as foldout for Inspector
|
||||||
|
public Color ValidSelectionTextColor = Color.green;
|
||||||
|
public Color MatchingItemsRemainingTextColor = Color.black;
|
||||||
|
public Color NoItemsRemainingTextColor = Color.red;
|
||||||
|
|
||||||
|
private bool _selectionIsValid = false;
|
||||||
|
|
||||||
|
[System.Serializable]
|
||||||
|
public class SelectionChangedEvent : UnityEngine.Events.UnityEvent<string, bool> {
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Serializable]
|
||||||
|
public class SelectinTextChangedEvent : UnityEngine.Events.UnityEvent<string> {
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Serializable]
|
||||||
|
public class SelectionValidityChangedEvent : UnityEngine.Events.UnityEvent<bool> {
|
||||||
|
}
|
||||||
|
|
||||||
|
// fires when input text is changed;
|
||||||
|
public SelectinTextChangedEvent OnSelectinTextChanged;
|
||||||
|
// fires when when an Item gets selected / deselected (including when items are added/removed once this is possible)
|
||||||
|
public SelectionValidityChangedEvent OnSelectionValidityChanged;
|
||||||
|
// fires in both cases
|
||||||
|
public SelectionChangedEvent OnSelectionChanged;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void Awake()
|
public void Awake()
|
||||||
{
|
{
|
||||||
Initialize();
|
Initialize();
|
||||||
}
|
}
|
||||||
|
public void Start()
|
||||||
|
{
|
||||||
|
if (SelectFirstItemOnStart && AvailableOptions.Count > 0) {
|
||||||
|
ToggleDropdownPanel (false);
|
||||||
|
OnItemClicked (AvailableOptions [0]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private bool Initialize()
|
private bool Initialize()
|
||||||
{
|
{
|
||||||
|
@ -88,6 +174,8 @@ namespace UnityEngine.UI.Extensions
|
||||||
_inputRT = _rectTransform.FindChild("InputField").GetComponent<RectTransform>();
|
_inputRT = _rectTransform.FindChild("InputField").GetComponent<RectTransform>();
|
||||||
_mainInput = _inputRT.GetComponent<InputField>();
|
_mainInput = _inputRT.GetComponent<InputField>();
|
||||||
|
|
||||||
|
_arrow_Button = _rectTransform.FindChild ("ArrowBtn").GetComponent<Button> ();
|
||||||
|
|
||||||
_overlayRT = _rectTransform.FindChild("Overlay").GetComponent<RectTransform>();
|
_overlayRT = _rectTransform.FindChild("Overlay").GetComponent<RectTransform>();
|
||||||
_overlayRT.gameObject.SetActive(false);
|
_overlayRT.gameObject.SetActive(false);
|
||||||
|
|
||||||
|
@ -200,6 +288,8 @@ namespace UnityEngine.UI.Extensions
|
||||||
panelObjects[_panelItems[i]] = itemObjs[i];
|
panelObjects[_panelItems[i]] = itemObjs[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
interactible = _technicallyInteractible && (AvailableOptions.Count > 0 || _remainInteractableIfEmpty);
|
||||||
|
SetInputTextColor ();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -298,8 +388,32 @@ namespace UnityEngine.UI.Extensions
|
||||||
{
|
{
|
||||||
ToggleDropdownPanel(false);
|
ToggleDropdownPanel(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool validity_changed = (_panelItems.Contains (Text) == _selectionIsValid);
|
||||||
|
_selectionIsValid = _panelItems.Contains (Text);
|
||||||
|
OnSelectionChanged.Invoke (Text, _selectionIsValid);
|
||||||
|
OnSelectinTextChanged.Invoke (Text);
|
||||||
|
if(validity_changed){
|
||||||
|
OnSelectionValidityChanged.Invoke (_selectionIsValid);
|
||||||
|
}
|
||||||
|
|
||||||
|
SetInputTextColor ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void SetInputTextColor(){
|
||||||
|
if (ChangeInputTextColorBasedOnMatchingItems) {
|
||||||
|
if (_selectionIsValid) {
|
||||||
|
_mainInput.textComponent.color = ValidSelectionTextColor;
|
||||||
|
} else if (_panelItems.Count > 0) {
|
||||||
|
_mainInput.textComponent.color = MatchingItemsRemainingTextColor;
|
||||||
|
} else {
|
||||||
|
_mainInput.textComponent.color = NoItemsRemainingTextColor;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Toggle the drop down list
|
/// Toggle the drop down list
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -17,7 +17,6 @@ namespace UnityEngine.UI.Extensions
|
||||||
public DropDownListItem SelectedItem { get; private set; } //outside world gets to get this, not set it
|
public DropDownListItem SelectedItem { get; private set; } //outside world gets to get this, not set it
|
||||||
|
|
||||||
public List<DropDownListItem> Items;
|
public List<DropDownListItem> Items;
|
||||||
public System.Action<int> OnSelectionChanged; // fires when selection is changed;
|
|
||||||
public bool OverrideHighlighted = true;
|
public bool OverrideHighlighted = true;
|
||||||
|
|
||||||
//private bool isInitialized = false;
|
//private bool isInitialized = false;
|
||||||
|
@ -71,9 +70,60 @@ namespace UnityEngine.UI.Extensions
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool interactible
|
||||||
|
{
|
||||||
|
get { return _mainButton.btn.interactable; }
|
||||||
|
private set {
|
||||||
|
_mainButton.btn.interactable = value;
|
||||||
|
if (!value && _isPanelActive) {
|
||||||
|
ToggleDropdownPanel (false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[SerializeField]
|
||||||
|
//I couldn't come up with a better name
|
||||||
|
private bool _technicallyInteractible = true;
|
||||||
|
public bool TechnicallyInteractible
|
||||||
|
{
|
||||||
|
get { return _technicallyInteractible; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
_technicallyInteractible = value;
|
||||||
|
interactible = _technicallyInteractible && (Items.Count > 0 || _remainInteractableIfEmpty);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[SerializeField]
|
||||||
|
private bool _remainInteractableIfEmpty = true;
|
||||||
|
public bool RemainInteractableIfEmpty
|
||||||
|
{
|
||||||
|
get { return _remainInteractableIfEmpty; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
_remainInteractableIfEmpty = value;
|
||||||
|
interactible = _technicallyInteractible && (Items.Count > 0 || _remainInteractableIfEmpty);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool SelectFirstItemOnStart = false;
|
||||||
|
|
||||||
|
[System.Serializable]
|
||||||
|
public class SelectionChangedEvent : UnityEngine.Events.UnityEvent<int> {
|
||||||
|
}
|
||||||
|
// fires when item is changed;
|
||||||
|
public SelectionChangedEvent OnSelectionChanged;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void Start()
|
public void Start()
|
||||||
{
|
{
|
||||||
Initialize();
|
Initialize();
|
||||||
|
if (SelectFirstItemOnStart && Items.Count > 0) {
|
||||||
|
ToggleDropdownPanel (false);
|
||||||
|
OnItemClicked (0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool Initialize()
|
private bool Initialize()
|
||||||
|
@ -191,12 +241,13 @@ namespace UnityEngine.UI.Extensions
|
||||||
}
|
}
|
||||||
_panelItems[i].gameobject.SetActive(i < Items.Count);// if we have more thanks in the panel than Items in the list hide them
|
_panelItems[i].gameobject.SetActive(i < Items.Count);// if we have more thanks in the panel than Items in the list hide them
|
||||||
}
|
}
|
||||||
|
interactible = _technicallyInteractible && (Items.Count > 0 || _remainInteractableIfEmpty);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnItemClicked(int indx)
|
private void OnItemClicked(int indx)
|
||||||
{
|
{
|
||||||
Debug.Log("item " + indx + " clicked");
|
Debug.Log("item " + indx + " clicked");
|
||||||
if (indx != _selectedIndex && OnSelectionChanged != null) OnSelectionChanged(indx);
|
if (indx != _selectedIndex && OnSelectionChanged != null) OnSelectionChanged.Invoke(indx);
|
||||||
|
|
||||||
_selectedIndex = indx;
|
_selectedIndex = indx;
|
||||||
ToggleDropdownPanel(true);
|
ToggleDropdownPanel(true);
|
||||||
|
|
Loading…
Reference in New Issue