using BansheeEngine; namespace BansheeEditor { /// /// Displays GUI for a serializable property containing an integer value. /// public class InspectableInt : InspectableField { private GUIIntField guiIntField; private InspectableState state; /// /// Creates a new inspectable integer GUI for the specified property. /// /// Name of the property, or some other value to set as the title. /// 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. /// Parent layout that all the field elements will be added to. /// Serializable property referencing the array whose contents to display. public InspectableInt(string title, int depth, InspectableFieldLayout layout, SerializableProperty property) : base(title, SerializableProperty.FieldType.Int, depth, layout, property) { } /// protected internal override void Initialize(int layoutIndex) { if (property != null) { guiIntField = new GUIIntField(new GUIContent(title)); guiIntField.OnChanged += OnFieldValueChanged; guiIntField.OnConfirmed += OnFieldValueConfirm; guiIntField.OnFocusLost += OnFieldValueConfirm; layout.AddElement(layoutIndex, guiIntField); } } /// public override InspectableState Refresh(int layoutIndex) { if (guiIntField != null && !guiIntField.HasInputFocus) guiIntField.Value = property.GetValue(); InspectableState oldState = state; if (state.HasFlag(InspectableState.Modified)) state = InspectableState.NotModified; return oldState; } /// /// Triggered when the user inputs a new integer value. /// /// New value of the int field. private void OnFieldValueChanged(int newValue) { property.SetValue(newValue); state |= InspectableState.ModifyInProgress; } /// /// Triggered when the user confirms input in the integer field. /// private void OnFieldValueConfirm() { if(state.HasFlag(InspectableState.ModifyInProgress)) state |= InspectableState.Modified; } } }