123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- using System;
- using UnityEngine;
- namespace COM3D2.MeidoPhotoStudio.Plugin
- {
- public class Slider : BaseControl
- {
- private bool hasLabel;
- private string label;
- public string Label
- {
- get => label;
- set
- {
- label = value;
- hasLabel = !string.IsNullOrEmpty(label);
- }
- }
- private float value;
- public float Value
- {
- get => value;
- set
- {
- this.value = Utility.Bound(value, Left, Right);
- OnControlEvent(EventArgs.Empty);
- }
- }
- private float left;
- public float Left
- {
- get => left;
- set
- {
- left = value;
- this.value = Utility.Bound(value, left, right);
- }
- }
- private float right;
- public float Right
- {
- get => right;
- set
- {
- right = value;
- this.value = Utility.Bound(value, left, right);
- }
- }
- public Slider(string label, float left, float right, float value = 0)
- {
- Label = label;
- this.left = left;
- this.right = right;
- this.value = Utility.Bound(value, left, right);
- }
- public Slider(string label, SliderProp prop) : this(label, prop.Left, prop.Right, prop.Initial) { }
- public Slider(SliderProp prop) : this(string.Empty, prop.Left, prop.Right, prop.Initial) { }
- public void SetBounds(float left, float right)
- {
- this.left = left;
- this.right = right;
- value = Utility.Bound(value, left, right);
- }
- public override void Draw(params GUILayoutOption[] layoutOptions)
- {
- GUIStyle sliderStyle = new GUIStyle(GUI.skin.horizontalSlider);
- sliderStyle.margin.bottom = 0;
- if (hasLabel)
- {
- GUILayout.BeginVertical(GUILayout.ExpandWidth(false));
- GUIStyle sliderLabelStyle = new GUIStyle(GUI.skin.label);
- sliderLabelStyle.padding.bottom = -5;
- sliderLabelStyle.margin = new RectOffset(0, 0, 0, 0);
- sliderLabelStyle.alignment = TextAnchor.LowerLeft;
- sliderLabelStyle.fontSize = 13;
- GUILayout.Label(Label, sliderLabelStyle, GUILayout.ExpandWidth(false));
- }
- else sliderStyle.margin.top = 10;
- float value = GUILayout.HorizontalSlider(
- Value, Left, Right, sliderStyle, GUI.skin.horizontalSliderThumb, layoutOptions
- );
- if (hasLabel) GUILayout.EndVertical();
- if (value != Value) Value = value;
- }
- }
- public struct SliderProp
- {
- public float Left { get; }
- public float Right { get; }
- public float Initial { get; }
- public SliderProp(float left, float right, float initial = 0f)
- {
- Left = left;
- Right = right;
- Initial = Utility.Bound(initial, left, right);
- }
- }
- }
|