| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using System;
- using System.Runtime.CompilerServices;
- using bs;
- namespace bs.Editor
- {
- /** @addtogroup GUI-Editor
- * @{
- */
- /// <summary>
- /// Editor GUI element that displays a list box with user-specified elements and an optional label. List box can be
- /// a standard list-box that allows a single element to be selected, or a multi-select list box where any number of
- /// elements can be selected at the same time.
- /// </summary>
- public sealed class GUIListBoxField : GUIElement
- {
- public delegate void OnSelectionChangedDelegate(int index);
- /// <summary>
- /// Triggered whenever user selects a new element in the list box. Returned index maps to the element in the
- /// elements array that the list box was initialized with.
- /// </summary>
- public event OnSelectionChangedDelegate OnSelectionChanged;
- /// <summary>
- /// Index of the list box entry currently selected. Returns -1 if nothing is selected.
- /// </summary>
- public int Index
- {
- get { return Internal_GetValue(mCachedPtr); }
- set { Internal_SetValue(mCachedPtr, value); }
- }
- /// <summary>
- /// States of all element in the list box (enabled or disabled).
- /// </summary>
- public bool[] States
- {
- get { return Internal_GetElementStates(mCachedPtr); }
- set { Internal_SetElementStates(mCachedPtr, value); }
- }
- /// <summary>
- /// Creates a new list box with the specified elements and a label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="multiselect">Determines should the listbox allow multiple elements to be selected or just one.
- /// </param>
- /// <param name="title">Content to display on the label.</param>
- /// <param name="titleWidth">Width of the title label in pixels.</param>
- /// <param name="style">Optional style to use for the element. Style controls the look of the element, as well as
- /// default layout options. Style will be retrieved from the active GUISkin. If not specified
- /// default element style is used.</param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(LocString[] elements, bool multiselect, GUIContent title, int titleWidth, string style = "",
- params GUIOption[] options)
- {
- Internal_CreateInstance(this, elements, multiselect, ref title, titleWidth, style, options, true);
- }
- /// <summary>
- /// Creates a new list box with the specified elements and a label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="multiselect">Determines should the listbox allow multiple elements to be selected or just one.
- /// </param>
- /// <param name="title">Content to display on the label.</param>
- /// <param name="titleWidth">Width of the title label in pixels.</param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(LocString[] elements, bool multiselect, GUIContent title, int titleWidth = 100, params GUIOption[] options)
- {
- Internal_CreateInstance(this, elements, multiselect, ref title, titleWidth, "", options, true);
- }
- /// <summary>
- /// Creates a new single-selection list box with the specified elements and a label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="title">Content to display on the label.</param>
- /// <param name="titleWidth">Width of the title label in pixels.</param>
- /// <param name="style">Optional style to use for the element. Style controls the look of the element, as well as
- /// default layout options. Style will be retrieved from the active GUISkin. If not specified
- /// default element style is used.</param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(LocString[] elements, GUIContent title, int titleWidth, string style = "",
- params GUIOption[] options)
- {
- Internal_CreateInstance(this, elements, false, ref title, titleWidth, style, options, true);
- }
- /// <summary>
- /// Creates a new single-selection list box with the specified elements and a label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="title">Content to display on the label.</param>
- /// <param name="titleWidth">Width of the title label in pixels.</param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(LocString[] elements, GUIContent title, int titleWidth = 100, params GUIOption[] options)
- {
- Internal_CreateInstance(this, elements, false, ref title, titleWidth, "", options, true);
- }
- /// <summary>
- /// Creates a new list box with the specified elements and no label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="multiselect">Determines should the listbox allow multiple elements to be selected or just one.
- /// </param>
- /// <param name="style">Optional style to use for the element. Style controls the look of the element, as well as
- /// default layout options. Style will be retrieved from the active GUISkin. If not specified
- /// default element style is used.</param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(LocString[] elements, bool multiselect = false, string style = "", params GUIOption[] options)
- {
- GUIContent emptyContent = new GUIContent();
- Internal_CreateInstance(this, elements, multiselect, ref emptyContent, 0, style, options, false);
- }
- /// <summary>
- /// Creates a new list box with the specified elements and no label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="multiselect">Determines should the listbox allow multiple elements to be selected or just one.
- /// </param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(LocString[] elements, bool multiselect = false, params GUIOption[] options)
- {
- GUIContent emptyContent = new GUIContent();
- Internal_CreateInstance(this, elements, multiselect, ref emptyContent, 0, "", options, false);
- }
- /// <summary>
- /// Creates a new list box with the specified elements and a label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="multiselect">Determines should the listbox allow multiple elements to be selected or just one.
- /// </param>
- /// <param name="title">Content to display on the label.</param>
- /// <param name="titleWidth">Width of the title label in pixels.</param>
- /// <param name="style">Optional style to use for the element. Style controls the look of the element, as well as
- /// default layout options. Style will be retrieved from the active GUISkin. If not specified
- /// default element style is used.</param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(string[] elements, bool multiselect, GUIContent title, int titleWidth, string style = "",
- params GUIOption[] options)
- {
- Internal_CreateInstance(this, ToLocalizedElements(elements), multiselect, ref title, titleWidth, style, options, true);
- }
- /// <summary>
- /// Creates a new list box with the specified elements and a label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="multiselect">Determines should the listbox allow multiple elements to be selected or just one.
- /// </param>
- /// <param name="title">Content to display on the label.</param>
- /// <param name="titleWidth">Width of the title label in pixels.</param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(string[] elements, bool multiselect, GUIContent title, int titleWidth = 100, params GUIOption[] options)
- {
- Internal_CreateInstance(this, ToLocalizedElements(elements), multiselect, ref title, titleWidth, "", options, true);
- }
- /// <summary>
- /// Creates a new single-selection list box with the specified elements and a label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="title">Content to display on the label.</param>
- /// <param name="titleWidth">Width of the title label in pixels.</param>
- /// <param name="style">Optional style to use for the element. Style controls the look of the element, as well as
- /// default layout options. Style will be retrieved from the active GUISkin. If not specified
- /// default element style is used.</param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(string[] elements, GUIContent title, int titleWidth, string style = "",
- params GUIOption[] options)
- {
- Internal_CreateInstance(this, ToLocalizedElements(elements), false, ref title, titleWidth, style, options, true);
- }
- /// <summary>
- /// Creates a new single-selection list box with the specified elements and a label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="title">Content to display on the label.</param>
- /// <param name="titleWidth">Width of the title label in pixels.</param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(string[] elements, GUIContent title, int titleWidth = 100, params GUIOption[] options)
- {
- Internal_CreateInstance(this, ToLocalizedElements(elements), false, ref title, titleWidth, "", options, true);
- }
- /// <summary>
- /// Creates a new list box with the specified elements and no label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="multiselect">Determines should the listbox allow multiple elements to be selected or just one.
- /// </param>
- /// <param name="style">Optional style to use for the element. Style controls the look of the element, as well as
- /// default layout options. Style will be retrieved from the active GUISkin. If not specified
- /// default element style is used.</param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(string[] elements, bool multiselect = false, string style = "", params GUIOption[] options)
- {
- GUIContent emptyContent = new GUIContent();
- Internal_CreateInstance(this, ToLocalizedElements(elements), multiselect, ref emptyContent, 0, style, options, false);
- }
- /// <summary>
- /// Creates a new list box with the specified elements and no label.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- /// <param name="multiselect">Determines should the listbox allow multiple elements to be selected or just one.
- /// </param>
- /// <param name="options">Options that allow you to control how is the element positioned and sized. This will
- /// override any similar options set by style.</param>
- public GUIListBoxField(string[] elements, bool multiselect = false, params GUIOption[] options)
- {
- GUIContent emptyContent = new GUIContent();
- Internal_CreateInstance(this, ToLocalizedElements(elements), multiselect, ref emptyContent, 0, "", options, false);
- }
- /// <summary>
- /// Updates the list box with a new set of elements.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- public void SetElements(LocString[] elements)
- {
- Internal_SetElements(mCachedPtr, elements);
- }
- /// <summary>
- /// Updates the list box with a new set of elements.
- /// </summary>
- /// <param name="elements">Array of elements to display in the list box. Elements will be displayed in the same
- /// order as in the array.</param>
- public void SetElements(string[] elements)
- {
- Internal_SetElements(mCachedPtr, ToLocalizedElements(elements));
- }
- /// <summary>
- /// Makes the element with the specified index selected.
- /// </summary>
- /// <param name="idx">Sequential index in the elements array provided on construction.</param>
- public void SelectElement(int idx)
- {
- Internal_SelectElement(mCachedPtr, idx);
- }
- /// <summary>
- /// Deselect element the element with the specified index. Only relevant for multi-select list boxes.
- /// </summary>
- /// <param name="idx">Sequential index in the elements array provided on construction.</param>
- public void DeselectElement(int idx)
- {
- Internal_DeselectElement(mCachedPtr, idx);
- }
- /// <summary>
- /// Colors the element with a specific tint.
- /// </summary>
- /// <param name="color">Tint to apply to the element.</param>
- public void SetTint(Color color)
- {
- Internal_SetTint(mCachedPtr, ref color);
- }
- /// <summary>
- /// Converts a set of normal strings to a set of localized strings.
- /// </summary>
- /// <param name="elements">Strings to convert.</param>
- /// <returns>Localized strings created from input strings.</returns>
- private LocString[] ToLocalizedElements(string[] elements)
- {
- if (elements == null)
- return null;
- LocString[] locElements = new LocString[elements.Length];
- for (int i = 0; i < locElements.Length; i++)
- locElements[i] = elements[i];
- return locElements;
- }
- /// <summary>
- /// Triggered by the native interop object when a user selects an object in the list.
- /// </summary>
- private void DoOnSelectionChanged(int index)
- {
- if (OnSelectionChanged != null)
- OnSelectionChanged(index);
- }
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_CreateInstance(GUIListBoxField instance, LocString[] entries, bool multiselect,
- ref GUIContent title, int titleWidth, string style, GUIOption[] options, bool withTitle);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_SetElements(IntPtr nativeInstance, LocString[] elements);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern int Internal_GetValue(IntPtr nativeInstance);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_SetValue(IntPtr nativeInstance, int value);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern bool[] Internal_GetElementStates(IntPtr nativeInstance);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_SetElementStates(IntPtr nativeInstance, bool[] states);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_SelectElement(IntPtr nativeInstance, int idx);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_DeselectElement(IntPtr nativeInstance, int idx);
- [MethodImpl(MethodImplOptions.InternalCall)]
- private static extern void Internal_SetTint(IntPtr nativeInstance, ref Color color);
- }
- /** @} */
- }
|