| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using bs;
- namespace bs.Editor
- {
- /** @addtogroup Inspector
- * @{
- */
- /// <summary>
- /// Displays GUI for a serializable property containing an integer value with a range.
- /// </summary>
- public class InspectableRangedInt : InspectableRangedField
- {
- private GUISliderField guiIntField;
- private InspectableState state;
- /// <summary>
- /// Creates a new inspectable float GUI for the specified property with a range.
- /// </summary>
- /// <param name="context">Context shared by all inspectable fields created by the same parent.</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 field whose contents to display.</param>
- /// <param name="style">Information about the range of the field.</param>
- public InspectableRangedInt(InspectableContext context, string title, string path, int depth, InspectableFieldLayout layout,
- SerializableProperty property, InspectableFieldStyleInfo style)
- : base(context, title, path, SerializableProperty.FieldType.Int, depth, layout, property, style)
- {
- }
- /// <inheritoc/>
- protected internal override void Initialize(int layoutIndex)
- {
- if (property != null)
- {
- guiIntField = new GUISliderField(style.RangeStyle.Min, style.RangeStyle.Max, new GUIContent(title));
- if (style != null && style.StepStyle != null && style.StepStyle.Step != 0)
- guiIntField.Step = style.StepStyle.Step;
- guiIntField.OnChanged += OnFieldValueChanged;
- guiIntField.OnFocusLost += OnFieldValueConfirm;
- guiIntField.OnFocusGained += StartUndo;
- 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;
- }
- /// <inheritdoc />
- public override void SetHasFocus(string subFieldName = null)
- {
- guiIntField.Focus = true;
- }
- /// <summary>
- /// Triggered when the user inputs a new integer value.
- /// </summary>
- /// <param name="newValue">New value of the float field.</param>
- private void OnFieldValueChanged(float newValue)
- {
- property.SetValue((int)newValue);
- state |= InspectableState.ModifyInProgress;
- }
- /// <summary>
- /// Triggered when the user confirms input in the int field.
- /// </summary>
- private void OnFieldValueConfirm()
- {
- if (state.HasFlag(InspectableState.ModifyInProgress))
- state |= InspectableState.Modified;
- EndUndo();
- }
- }
- /** @} */
- }
|