| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using BansheeEngine;
- namespace BansheeEditor
- {
- /** @addtogroup Inspector
- * @{
- */
- /// <summary>
- /// Displays GUI for a serializable property containing an integer value.
- /// </summary>
- public class InspectableInt : InspectableField
- {
- private GUIIntField guiIntField;
- private InspectableState state;
- private InspectableFieldStyleInfo style;
- /// <summary>
- /// Creates a new inspectable integer GUI for the specified property.
- /// </summary>
- /// <param name="parent">Parent Inspector this field belongs to.</param>
- /// <param name="title">Name of the property, or some other value to set as the title.</param>
- /// <param name="path">Full path to this property (includes name of this property and all parent properties).</param>
- /// <param name="depth">Determines how deep within the inspector nesting hierarchy is this field. Some fields may
- /// contain other fields, in which case you should increase this value by one.</param>
- /// <param name="layout">Parent layout that all the field elements will be added to.</param>
- /// <param name="property">Serializable property referencing the array whose contents to display.</param>
- /// <param name="style">Contains information about the field style</param>
- public InspectableInt(Inspector parent, string title, string path, int depth, InspectableFieldLayout layout,
- SerializableProperty property, InspectableFieldStyleInfo style)
- : base(parent, title, path, SerializableProperty.FieldType.Int, depth, layout, property)
- {
- this.style = style;
- }
- /// <inheritdoc/>
- protected internal override void Initialize(int layoutIndex)
- {
- if (property != null)
- {
- guiIntField = new GUIIntField(new GUIContent(title));
- if (style != null)
- {
- if (style.StepStyle != null && style.StepStyle.Step != 0)
- guiIntField.Step = (int) style.StepStyle.Step;
- if (style.RangeStyle != null)
- guiIntField.SetRange((int) style.RangeStyle.Min, (int) style.RangeStyle.Max);
- }
- guiIntField.OnChanged += OnFieldValueChanged;
- guiIntField.OnConfirmed += OnFieldValueConfirm;
- guiIntField.OnFocusLost += OnFieldValueConfirm;
- layout.AddElement(layoutIndex, guiIntField);
- }
- }
- /// <inheritdoc/>
- public override InspectableState Refresh(int layoutIndex)
- {
- if (guiIntField != null && !guiIntField.HasInputFocus)
- guiIntField.Value = property.GetValue<int>();
- InspectableState oldState = state;
- if (state.HasFlag(InspectableState.Modified))
- state = InspectableState.NotModified;
- return oldState;
- }
- /// <summary>
- /// Triggered when the user inputs a new integer value.
- /// </summary>
- /// <param name="newValue">New value of the int field.</param>
- private void OnFieldValueChanged(int newValue)
- {
- property.SetValue(newValue);
- state |= InspectableState.ModifyInProgress;
- }
- /// <summary>
- /// Triggered when the user confirms input in the integer field.
- /// </summary>
- private void OnFieldValueConfirm()
- {
- if(state.HasFlag(InspectableState.ModifyInProgress))
- state |= InspectableState.Modified;
- }
- }
- /** @} */
- }
|