123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956 |
- namespace Terminal.Gui;
- /// <summary><see cref="EventArgs"/> for <see cref="Slider{T}"/> <see cref="SliderOption{T}"/> events.</summary>
- public class SliderOptionEventArgs : EventArgs
- {
- /// <summary>Initializes a new instance of <see cref="SliderOptionEventArgs"/></summary>
- /// <param name="isSet"> indicates whether the option is set</param>
- public SliderOptionEventArgs (bool isSet) { IsSet = isSet; }
- /// <summary>Gets whether the option is set or not.</summary>
- public bool IsSet { get; }
- }
- /// <summary>Represents an option in a <see cref="Slider{T}"/> .</summary>
- /// <typeparam name="T">Data type of the option.</typeparam>
- public class SliderOption<T>
- {
- /// <summary>Creates a new empty instance of the <see cref="SliderOption{T}"/> class.</summary>
- public SliderOption () { }
- /// <summary>Creates a new instance of the <see cref="SliderOption{T}"/> class with values for each property.</summary>
- public SliderOption (string legend, Rune legendAbbr, T data)
- {
- Legend = legend;
- LegendAbbr = legendAbbr;
- Data = data;
- }
- /// <summary>Custom data of the option.</summary>
- public T Data { get; set; }
- /// <summary>Legend of the option.</summary>
- public string Legend { get; set; }
- /// <summary>
- /// Abbreviation of the Legend. When the <see cref="Slider{T}.InnerSpacing"/> too small to fit
- /// <see cref="Legend"/>.
- /// </summary>
- public Rune LegendAbbr { get; set; }
- /// <summary>Event fired when the an option has changed.</summary>
- public event EventHandler<SliderOptionEventArgs> Changed;
- /// <summary>Event Raised when this option is set.</summary>
- public event EventHandler<SliderOptionEventArgs> Set;
- /// <summary>Creates a human-readable string that represents this <see cref="SliderOption{T}"/>.</summary>
- public override string ToString () { return "{Legend=" + Legend + ", LegendAbbr=" + LegendAbbr + ", Data=" + Data + "}"; }
- /// <summary>Event Raised when this option is unset.</summary>
- public event EventHandler<SliderOptionEventArgs> UnSet;
- /// <summary>To Raise the <see cref="Changed"/> event from the Slider.</summary>
- internal void OnChanged (bool isSet) { Changed?.Invoke (this, new SliderOptionEventArgs (isSet)); }
- /// <summary>To Raise the <see cref="Set"/> event from the Slider.</summary>
- internal void OnSet () { Set?.Invoke (this, new SliderOptionEventArgs (true)); }
- /// <summary>To Raise the <see cref="UnSet"/> event from the Slider.</summary>
- internal void OnUnSet () { UnSet?.Invoke (this, new SliderOptionEventArgs (false)); }
- }
- /// <summary><see cref="Slider{T}"/> Types</summary>
- public enum SliderType
- {
- /// <summary>
- /// <code>
- /// ├─┼─┼─┼─┼─█─┼─┼─┼─┼─┼─┼─┤
- /// </code>
- /// </summary>
- Single,
- /// <summary>
- /// <code>
- /// ├─┼─█─┼─┼─█─┼─┼─┼─┼─█─┼─┤
- /// </code>
- /// </summary>
- Multiple,
- /// <summary>
- /// <code>
- /// ├▒▒▒▒▒▒▒▒▒█─┼─┼─┼─┼─┼─┼─┤
- /// </code>
- /// </summary>
- LeftRange,
- /// <summary>
- /// <code>
- /// ├─┼─┼─┼─┼─█▒▒▒▒▒▒▒▒▒▒▒▒▒┤
- /// </code>
- /// </summary>
- RightRange,
- /// <summary>
- /// <code>
- /// ├─┼─┼─┼─┼─█▒▒▒▒▒▒▒█─┼─┼─┤
- /// </code>
- /// </summary>
- Range
- }
- /// <summary><see cref="Slider{T}"/> Legend Style</summary>
- public class SliderAttributes
- {
- /// <summary>Attribute for the Legends Container.</summary>
- public Attribute? EmptyAttribute { get; set; }
- /// <summary>Attribute for when the respective Option is NOT Set.</summary>
- public Attribute? NormalAttribute { get; set; }
- /// <summary>Attribute for when the respective Option is Set.</summary>
- public Attribute? SetAttribute { get; set; }
- }
- /// <summary><see cref="Slider{T}"/> Style</summary>
- public class SliderStyle
- {
- /// <summary>Constructs a new instance.</summary>
- public SliderStyle () { LegendAttributes = new SliderAttributes (); }
- /// <summary>The glyph and the attribute to indicate mouse dragging.</summary>
- public Cell DragChar { get; set; }
- /// <summary>The glyph and the attribute used for empty spaces on the slider.</summary>
- public Cell EmptyChar { get; set; }
- /// <summary>The glyph and the attribute used for the end of ranges on the slider.</summary>
- public Cell EndRangeChar { get; set; }
- /// <summary>Legend attributes</summary>
- public SliderAttributes LegendAttributes { get; set; }
- /// <summary>The glyph and the attribute used for each option (tick) on the slider.</summary>
- public Cell OptionChar { get; set; }
- /// <summary>The glyph and the attribute used for filling in ranges on the slider.</summary>
- public Cell RangeChar { get; set; }
- /// <summary>The glyph and the attribute used for options (ticks) that are set on the slider.</summary>
- public Cell SetChar { get; set; }
- /// <summary>The glyph and the attribute used for spaces between options (ticks) on the slider.</summary>
- public Cell SpaceChar { get; set; }
- /// <summary>The glyph and the attribute used for the start of ranges on the slider.</summary>
- public Cell StartRangeChar { get; set; }
- }
- /// <summary>All <see cref="Slider{T}"/> configuration are grouped in this class.</summary>
- internal class SliderConfiguration
- {
- internal bool _allowEmpty;
- internal int _endSpacing;
- internal int _innerSpacing;
- internal Orientation _legendsOrientation = Orientation.Horizontal;
- internal bool _rangeAllowSingle;
- internal bool _showEndSpacing;
- internal bool _showLegends;
- internal bool _showLegendsAbbr;
- internal Orientation _sliderOrientation = Orientation.Horizontal;
- internal int _startSpacing;
- internal SliderType _type = SliderType.Single;
- }
- /// <summary><see cref="EventArgs"/> for <see cref="Slider{T}"/> events.</summary>
- public class SliderEventArgs<T> : EventArgs
- {
- /// <summary>Initializes a new instance of <see cref="SliderEventArgs{T}"/></summary>
- /// <param name="options">The current options.</param>
- /// <param name="focused">Index of the option that is focused. -1 if no option has the focus.</param>
- public SliderEventArgs (Dictionary<int, SliderOption<T>> options, int focused = -1)
- {
- Options = options;
- Focused = focused;
- Cancel = false;
- }
- /// <summary>If set to true, the focus operation will be canceled, if applicable.</summary>
- public bool Cancel { get; set; }
- /// <summary>Gets or sets the index of the option that is focused.</summary>
- public int Focused { get; set; }
- /// <summary>Gets/sets whether the option is set or not.</summary>
- public Dictionary<int, SliderOption<T>> Options { get; set; }
- }
- /// <summary><see cref="EventArgs"/> for <see cref="Orientation"/> events.</summary>
- public class OrientationEventArgs : EventArgs
- {
- /// <summary>Constructs a new instance.</summary>
- /// <param name="orientation">the new orientation</param>
- public OrientationEventArgs (Orientation orientation)
- {
- Orientation = orientation;
- Cancel = false;
- }
- /// <summary>If set to true, the orientation change operation will be canceled, if applicable.</summary>
- public bool Cancel { get; set; }
- /// <summary>The new orientation.</summary>
- public Orientation Orientation { get; set; }
- }
- /// <summary>Slider control.</summary>
- public class Slider : Slider<object>
- {
- /// <summary>Initializes a new instance of the <see cref="Slider"/> class.</summary>
- public Slider () { }
- /// <summary>Initializes a new instance of the <see cref="Slider"/> class.</summary>
- /// <param name="options">Initial slider options.</param>
- /// <param name="orientation">Initial slider options.</param>
- public Slider (List<object> options, Orientation orientation = Orientation.Horizontal) :
- base (options, orientation)
- { }
- }
- /// <summary>
- /// Provides a slider control letting the user navigate from a set of typed options in a linear manner using the
- /// keyboard or mouse.
- /// </summary>
- /// <typeparam name="T"></typeparam>
- public class Slider<T> : View
- {
- private readonly SliderConfiguration _config = new ();
- // List of the current set options.
- private readonly List<int> _setOptions = new ();
- // Options
- private List<SliderOption<T>> _options;
- /// <summary>The focused option (has the cursor).</summary>
- public int FocusedOption { get; set; }
- #region Initialize
- private void SetInitialProperties (
- List<SliderOption<T>> options,
- Orientation orientation = Orientation.Horizontal
- )
- {
- Width = Dim.Auto (Dim.DimAutoStyle.Content);
- Height = Dim.Auto (Dim.DimAutoStyle.Content);
- CanFocus = true;
- CursorVisibility = CursorVisibility.Default;
- _options = options ?? new List<SliderOption<T>> ();
- _config._sliderOrientation = orientation;
- _config._showLegends = true;
- SetDefaultStyle ();
- SetCommands ();
- Enter += (s, e) => { };
- // BUGBUG: This should not be needed - Need to ensure SetRelativeLayout gets called during EndInit
- Initialized += (s, e) =>
- {
- SetContentSizeBestFit ();
- };
- LayoutStarted += (s, e) =>
- {
- SetContentSizeBestFit ();
- };
- }
- #endregion
- #region Events
- /// <summary>Event raised when the slider option/s changed. The dictionary contains: key = option index, value = T</summary>
- public event EventHandler<SliderEventArgs<T>> OptionsChanged;
- /// <summary>Overridable method called when the slider options have changed. Raises the <see cref="OptionsChanged"/> event.</summary>
- public virtual void OnOptionsChanged ()
- {
- OptionsChanged?.Invoke (this, new SliderEventArgs<T> (GetSetOptionDictionary ()));
- SetNeedsDisplay ();
- }
- /// <summary>Event raised When the option is hovered with the keys or the mouse.</summary>
- public event EventHandler<SliderEventArgs<T>> OptionFocused;
- private int
- _lastFocusedOption; // for Range type; the most recently focused option. Used to determine shrink direction
- /// <summary>Overridable function that fires the <see cref="OptionFocused"/> event.</summary>
- /// <param name="args"></param>
- /// <returns><see langword="true"/> if the focus change was cancelled.</returns>
- /// <param name="newFocusedOption"></param>
- public virtual bool OnOptionFocused (int newFocusedOption, SliderEventArgs<T> args)
- {
- if (newFocusedOption > _options.Count - 1 || newFocusedOption < 0)
- {
- return true;
- }
- OptionFocused?.Invoke (this, args);
- if (!args.Cancel)
- {
- _lastFocusedOption = FocusedOption;
- FocusedOption = newFocusedOption;
- //PositionCursor ();
- }
- return args.Cancel;
- }
- #endregion
- #region Constructors
- /// <summary>Initializes a new instance of the <see cref="Slider"/> class.</summary>
- public Slider () : this (new List<T> ()) { }
- /// <summary>Initializes a new instance of the <see cref="Slider"/> class.</summary>
- /// <param name="options">Initial slider options.</param>
- /// <param name="orientation">Initial slider orientation.</param>
- public Slider (List<T> options, Orientation orientation = Orientation.Horizontal)
- {
- if (options is null)
- {
- SetInitialProperties (null, orientation);
- }
- else
- {
- SetInitialProperties (
- options.Select (
- e =>
- {
- var legend = e.ToString ();
- return new SliderOption<T>
- {
- Data = e,
- Legend = legend,
- LegendAbbr =
- (Rune)(legend?.Length > 0 ? legend [0] : ' ')
- };
- }
- )
- .ToList (),
- orientation
- );
- }
- }
- #endregion
- #region Properties
- /// <summary>Allow no selection.</summary>
- public bool AllowEmpty
- {
- get => _config._allowEmpty;
- set
- {
- _config._allowEmpty = value;
- if (!value && _options.Count > 0 && _setOptions.Count == 0)
- {
- SetOption (0);
- }
- }
- }
- /// <summary>Gets or sets the number of rows/columns between <see cref="Options"/></summary>
- public int InnerSpacing
- {
- get => _config._innerSpacing;
- set
- {
- _config._innerSpacing = value;
- SetContentSizeBestFit ();
- }
- }
- /// <summary>Slider Type. <see cref="SliderType"></see></summary>
- public SliderType Type
- {
- get => _config._type;
- set
- {
- _config._type = value;
- // Todo: Custom logic to preserve options.
- _setOptions.Clear ();
- SetNeedsDisplay ();
- }
- }
- /// <summary>Slider Orientation. <see cref="Gui.Orientation"></see></summary>
- public Orientation Orientation
- {
- get => _config._sliderOrientation;
- set => OnOrientationChanged (value);
- }
- /// <summary>
- /// Fired when the slider orientation has changed. Can be cancelled by setting
- /// <see cref="OrientationEventArgs.Cancel"/> to true.
- /// </summary>
- public event EventHandler<OrientationEventArgs> OrientationChanged;
- /// <summary>Called when the slider orientation has changed. Invokes the <see cref="OrientationChanged"/> event.</summary>
- /// <param name="newOrientation"></param>
- /// <returns>True of the event was cancelled.</returns>
- public virtual bool OnOrientationChanged (Orientation newOrientation)
- {
- var args = new OrientationEventArgs (newOrientation);
- OrientationChanged?.Invoke (this, args);
- if (!args.Cancel)
- {
- _config._sliderOrientation = newOrientation;
- SetKeyBindings ();
- SetContentSizeBestFit ();
- }
- return args.Cancel;
- }
- /// <summary>Legends Orientation. <see cref="Gui.Orientation"></see></summary>
- public Orientation LegendsOrientation
- {
- get => _config._legendsOrientation;
- set
- {
- _config._legendsOrientation = value;
- SetContentSizeBestFit ();
- }
- }
- /// <summary>Slider styles. <see cref="SliderStyle"></see></summary>
- public SliderStyle Style
- {
- // Note(jmperricone): Maybe SliderStyle should be a struct so we return a copy ???
- // Or SetStyle() and ( GetStyle() || Style getter copy )
- get;
- set;
- } = new ();
- /// <summary>Set the slider options.</summary>
- public List<SliderOption<T>> Options
- {
- get =>
- // Note(jmperricone): Maybe SliderOption should be a struct so we return a copy ???
- // Events will be preserved ? Need a test.
- // Or SetOptions() and ( GetOptions() || Options getter copy )
- _options;
- set
- {
- // _options should never be null
- _options = value ?? throw new ArgumentNullException (nameof (value));
- if (!IsInitialized || _options.Count == 0)
- {
- return;
- }
- SetContentSizeBestFit ();
- }
- }
- /// <summary>Allow range start and end be in the same option, as a single option.</summary>
- public bool RangeAllowSingle
- {
- get => _config._rangeAllowSingle;
- set => _config._rangeAllowSingle = value;
- }
- /// <summary>Show/Hide spacing before and after the first and last option.</summary>
- public bool ShowEndSpacing
- {
- get => _config._showEndSpacing;
- set
- {
- _config._showEndSpacing = value;
- SetNeedsDisplay ();
- }
- }
- /// <summary>Show/Hide the options legends.</summary>
- public bool ShowLegends
- {
- get => _config._showLegends;
- set
- {
- _config._showLegends = value;
- SetContentSizeBestFit ();
- }
- }
- /// <summary>Causes the specified option to be set and be focused.</summary>
- public bool SetOption (int optionIndex)
- {
- // TODO: Handle range type.
- // Note: Maybe return false only when optionIndex doesn't exist, otherwise true.
- if (!_setOptions.Contains (optionIndex) && optionIndex >= 0 && optionIndex < _options.Count)
- {
- FocusedOption = optionIndex;
- SetFocusedOption ();
- return true;
- }
- return false;
- }
- /// <summary>Causes the specified option to be un-set and be focused.</summary>
- public bool UnSetOption (int optionIndex)
- {
- // TODO: Handle range type.
- if (!AllowEmpty && _setOptions.Count > 2 && _setOptions.Contains (optionIndex))
- {
- FocusedOption = optionIndex;
- SetFocusedOption ();
- return true;
- }
- return false;
- }
- /// <summary>Get the indexes of the set options.</summary>
- public List<int> GetSetOptions ()
- {
- // Copy
- return _setOptions.OrderBy (e => e).ToList ();
- }
- #endregion
- #region Helpers
- private void MoveAndAdd (int x, int y, Rune rune)
- {
- Move (x, y);
- Driver?.AddRune (rune);
- }
- private void MoveAndAdd (int x, int y, string str)
- {
- Move (x, y);
- Driver?.AddStr (str);
- }
- // TODO: Make configurable via ConfigurationManager
- private void SetDefaultStyle ()
- {
- switch (_config._sliderOrientation)
- {
- case Orientation.Horizontal:
- Style.SpaceChar = new Cell { Rune = Glyphs.HLine }; // '─'
- Style.OptionChar = new Cell { Rune = Glyphs.BlackCircle }; // '┼●🗹□⏹'
- break;
- case Orientation.Vertical:
- Style.SpaceChar = new Cell { Rune = Glyphs.VLine };
- Style.OptionChar = new Cell { Rune = Glyphs.BlackCircle };
- break;
- }
- // TODO(jmperricone) Wide Vertical ???
- /*
- │
- │
- ┼─ 40
- │
- │
- ███ 30
- ▒▒▒
- ▒▒▒
- ▒▒▒ 20
- ▒▒▒
- ▒▒▒
- ███ 10
- │
- │
- ─●─ 0
- */
- _config._legendsOrientation = _config._sliderOrientation;
- Style.EmptyChar = new Cell { Rune = new Rune (' ') };
- Style.SetChar = new Cell { Rune = Glyphs.ContinuousMeterSegment }; // ■
- Style.RangeChar = new Cell { Rune = Glyphs.Stipple }; // ░ ▒ ▓ // Medium shade not blinking on curses.
- Style.StartRangeChar = new Cell { Rune = Glyphs.ContinuousMeterSegment };
- Style.EndRangeChar = new Cell { Rune = Glyphs.ContinuousMeterSegment };
- Style.DragChar = new Cell { Rune = Glyphs.Diamond };
- // TODO: Support left & right (top/bottom)
- // First = '├',
- // Last = '┤',
- }
- /// <summary>Adjust the dimensions of the Slider to the best value.</summary>
- public void SetContentSizeBestFit ()
- {
- if (!IsInitialized || /*!(Height is Dim.DimAuto && Width is Dim.DimAuto) || */_options.Count == 0)
- {
- return;
- }
- CalcSpacingConfig ();
- Thickness adornmentsThickness = GetAdornmentsThickness ();
- var svWidth = SuperView?.ContentSize?.Width ?? 0;
- var svHeight = SuperView?.ContentSize?.Height ?? 0;
- if (_config._sliderOrientation == Orientation.Horizontal)
- {
- ContentSize = new (int.Min (svWidth, CalcBestLength ()), int.Min (svHeight, CalcThickness ()));
- }
- else
- {
- ContentSize = new (int.Min (svWidth, CalcThickness ()), int.Min (svHeight, CalcBestLength ()));
- }
- return;
- void CalcSpacingConfig ()
- {
- _config._innerSpacing = 0;
- _config._startSpacing = 0;
- _config._endSpacing = 0;
- int size = 0;
- if (ContentSize is { })
- {
- size = _config._sliderOrientation == Orientation.Horizontal ? ContentSize.Value.Width : ContentSize.Value.Height;
- }
- int max_legend; // Because the legends are centered, the longest one determines inner spacing
- if (_config._sliderOrientation == _config._legendsOrientation)
- {
- max_legend = int.Max (_options.Max (s => s.Legend?.Length ?? 1), 1);
- }
- else
- {
- max_legend = 1;
- }
- int min_size_that_fits_legends = _options.Count == 1 ? max_legend : max_legend / (_options.Count - 1);
- string first;
- string last;
- if (max_legend >= size)
- {
- if (_config._sliderOrientation == _config._legendsOrientation)
- {
- _config._showLegendsAbbr = true;
- foreach (SliderOption<T> o in _options.Where (op => op.LegendAbbr == default (Rune)))
- {
- o.LegendAbbr = (Rune)(o.Legend?.Length > 0 ? o.Legend [0] : ' ');
- }
- }
- first = "x";
- last = "x";
- }
- else
- {
- _config._showLegendsAbbr = false;
- first = _options.First ().Legend;
- last = _options.Last ().Legend;
- }
- // --o--
- // Hello
- // Left = He
- // Right = lo
- int first_left = (first.Length - 1) / 2; // Chars count of the first option to the left.
- int last_right = last.Length / 2; // Chars count of the last option to the right.
- if (_config._sliderOrientation != _config._legendsOrientation)
- {
- first_left = 0;
- last_right = 0;
- }
- // -1 because it's better to have an extra space at right than to clip
- int width = size - first_left - last_right - 1;
- _config._startSpacing = first_left;
- if (_options.Count == 1)
- {
- _config._innerSpacing = max_legend;
- }
- else
- {
- _config._innerSpacing = Math.Max (0, (int)Math.Floor ((double)width / (_options.Count - 1)) - 1);
- }
- _config._endSpacing = last_right;
- }
- }
- /// <summary>Calculates the min dimension required for all options and inner spacing with abbreviated legends</summary>
- /// <returns></returns>
- private int CalcMinLength ()
- {
- if (_options.Count == 0)
- {
- return 0;
- }
- var length = 0;
- length += _config._startSpacing + _config._endSpacing;
- length += _options.Count;
- length += (_options.Count - 1) * _config._innerSpacing;
- return length;
- }
- /// <summary>Calculates the ideal dimension required for all options, inner spacing, and legends (non-abbreviated).</summary>
- /// <returns></returns>
- private int CalcBestLength ()
- {
- if (_options.Count == 0)
- {
- return 0;
- }
- var length = 0;
- if (_config._showLegends)
- {
- var max_legend = 1;
- if (_config._legendsOrientation == _config._sliderOrientation && _options.Count > 0)
- {
- max_legend = int.Max (_options.Max (s => s.Legend?.Length + 1 ?? 1), 1);
- length += max_legend * _options.Count;
- //length += (max_legend / 2);
- }
- else
- {
- length += 1;
- }
- }
- return int.Max (length, CalcMinLength ());
- }
- /// <summary>Calculates the min dimension required for the slider and legends</summary>
- /// <returns></returns>
- private int CalcThickness ()
- {
- var thickness = 1; // Always show the slider.
- if (_config._showLegends)
- {
- if (_config._legendsOrientation != _config._sliderOrientation && _options.Count > 0)
- {
- thickness += _options.Max (s => s.Legend?.Length ?? 0);
- }
- else
- {
- thickness += 1;
- }
- }
- return thickness;
- }
- internal bool TryGetPositionByOption (int option, out (int x, int y) position)
- {
- position = (-1, -1);
- if (option < 0 || option >= _options.Count ())
- {
- return false;
- }
- var offset = 0;
- offset += _config._startSpacing;
- offset += option * (_config._innerSpacing + 1);
- if (_config._sliderOrientation == Orientation.Vertical)
- {
- position = (0, offset);
- }
- else
- {
- position = (offset, 0);
- }
- return true;
- }
- /// <summary>Tries to get the option index by the position.</summary>
- /// <param name="x"></param>
- /// <param name="y"></param>
- /// <param name="threshold"></param>
- /// <param name="option_idx"></param>
- /// <returns></returns>
- internal bool TryGetOptionByPosition (int x, int y, int threshold, out int option_idx)
- {
- // Fix(jmperricone): Not working.
- option_idx = -1;
- if (Orientation == Orientation.Horizontal)
- {
- if (y != 0)
- {
- return false;
- }
- for (int xx = x - threshold; xx < x + threshold + 1; xx++)
- {
- int cx = xx;
- cx -= _config._startSpacing;
- int option = cx / (_config._innerSpacing + 1);
- bool valid = cx % (_config._innerSpacing + 1) == 0;
- if (!valid || option < 0 || option > _options.Count - 1)
- {
- continue;
- }
- option_idx = option;
- return true;
- }
- }
- else
- {
- if (x != 0)
- {
- return false;
- }
- for (int yy = y - threshold; yy < y + threshold + 1; yy++)
- {
- int cy = yy;
- cy -= _config._startSpacing;
- int option = cy / (_config._innerSpacing + 1);
- bool valid = cy % (_config._innerSpacing + 1) == 0;
- if (!valid || option < 0 || option > _options.Count - 1)
- {
- continue;
- }
- option_idx = option;
- return true;
- }
- }
- return false;
- }
- #endregion
- #region Cursor and Drawing
- /// <inheritdoc/>
- public override Point? PositionCursor ()
- {
- if (TryGetPositionByOption (FocusedOption, out (int x, int y) position))
- {
- if (IsInitialized && Viewport.Contains (position.x, position.y))
- {
- Move (position.x, position.y);
- return new (position.x, position.x);
- }
- }
- return base.PositionCursor ();
- }
- /// <inheritdoc/>
- public override void OnDrawContent (Rectangle viewport)
- {
- // TODO: make this more surgical to reduce repaint
- if (_options is null && _options.Count > 0)
- {
- return;
- }
- // Debug
- #if (DEBUG)
- Driver?.SetAttribute (new Attribute (Color.White, Color.Red));
- for (var y = 0; y < viewport.Height; y++)
- {
- for (var x = 0; x < viewport.Width; x++)
- {
- // MoveAndAdd (x, y, '·');
- }
- }
- #endif
- // Draw Slider
- DrawSlider ();
- // Draw Legends.
- if (_config._showLegends)
- {
- DrawLegends ();
- }
- if (_dragPosition.HasValue && _moveRenderPosition.HasValue)
- {
- AddRune (_moveRenderPosition.Value.X, _moveRenderPosition.Value.Y, Style.DragChar.Rune);
- }
- }
- private string AlignText (string text, int width, Justification Justification)
- {
- if (text is null)
- {
- return "";
- }
- if (text.Length > width)
- {
- text = text [..width];
- }
- int w = width - text.Length;
- string s1 = new (' ', w / 2);
- string s2 = new (' ', w % 2);
- // Note: The formatter doesn't handle all of this ???
- switch (Justification)
- {
- case Justification.Justified:
- return TextFormatter.Justify (text, width);
- case Justification.Left:
- return text + s1 + s1 + s2;
- case Justification.Centered:
- if (text.Length % 2 != 0)
- {
- return s1 + text + s1 + s2;
- }
- return s1 + s2 + text + s1;
- case Justification.Right:
- return s1 + s1 + s2 + text;
- default:
- return text;
- }
- }
- private void DrawSlider ()
- {
- // TODO: be more surgical on clear
- Clear ();
- // Attributes
- var normalAttr = new Attribute (Color.White, Color.Black);
- var setAtrr = new Attribute (Color.Black, Color.White);
- if (IsInitialized)
- {
- normalAttr = ColorScheme?.Normal ?? Application.Current.ColorScheme.Normal;
- setAtrr = Style.SetChar.Attribute ?? ColorScheme.HotNormal;
- }
- bool isVertical = _config._sliderOrientation == Orientation.Vertical;
- bool isLegendsVertical = _config._legendsOrientation == Orientation.Vertical;
- bool isReverse = _config._sliderOrientation != _config._legendsOrientation;
- var x = 0;
- var y = 0;
- bool isSet = _setOptions.Count > 0;
- // Left Spacing
- if (_config._showEndSpacing && _config._startSpacing > 0)
- {
- Driver?.SetAttribute (
- isSet && _config._type == SliderType.LeftRange
- ? Style.RangeChar.Attribute ?? normalAttr
- : Style.SpaceChar.Attribute ?? normalAttr
- );
- Rune rune = isSet && _config._type == SliderType.LeftRange ? Style.RangeChar.Rune : Style.SpaceChar.Rune;
- for (var i = 0; i < _config._startSpacing; i++)
- {
- MoveAndAdd (x, y, rune);
- if (isVertical)
- {
- y++;
- }
- else
- {
- x++;
- }
- }
- }
- else
- {
- Driver?.SetAttribute (Style.EmptyChar.Attribute ?? normalAttr);
- for (var i = 0; i < _config._startSpacing; i++)
- {
- MoveAndAdd (x, y, Style.EmptyChar.Rune);
- if (isVertical)
- {
- y++;
- }
- else
- {
- x++;
- }
- }
- }
- // Slider
- if (_options.Count > 0)
- {
- for (var i = 0; i < _options.Count; i++)
- {
- var drawRange = false;
- if (isSet)
- {
- switch (_config._type)
- {
- case SliderType.LeftRange when i <= _setOptions [0]:
- drawRange = i < _setOptions [0];
- break;
- case SliderType.RightRange when i >= _setOptions [0]:
- drawRange = i >= _setOptions [0];
- break;
- case SliderType.Range when _setOptions.Count == 1:
- drawRange = false;
- break;
- case SliderType.Range when _setOptions.Count == 2:
- if ((i >= _setOptions [0] && i <= _setOptions [1])
- || (i >= _setOptions [1] && i <= _setOptions [0]))
- {
- drawRange = (i >= _setOptions [0] && i < _setOptions [1])
- || (i >= _setOptions [1] && i < _setOptions [0]);
- }
- break;
- }
- }
- // Draw Option
- Driver?.SetAttribute (
- isSet && _setOptions.Contains (i) ? Style.SetChar.Attribute ?? setAtrr :
- drawRange ? Style.RangeChar.Attribute ?? setAtrr : Style.OptionChar.Attribute ?? normalAttr
- );
- // Note(jmperricone): Maybe only for curses, windows inverts actual colors, while curses inverts bg with fg.
- //if (Application.Driver is CursesDriver) {
- // if (FocusedOption == i && HasFocus) {
- // Driver.SetAttribute (ColorScheme.Focus);
- // }
- //}
- Rune rune = drawRange ? Style.RangeChar.Rune : Style.OptionChar.Rune;
- if (isSet)
- {
- if (_setOptions [0] == i)
- {
- rune = Style.StartRangeChar.Rune;
- }
- else if (_setOptions.Count > 1 && _setOptions [1] == i)
- {
- rune = Style.EndRangeChar.Rune;
- }
- else if (_setOptions.Contains (i))
- {
- rune = Style.SetChar.Rune;
- }
- }
- MoveAndAdd (x, y, rune);
- if (isVertical)
- {
- y++;
- }
- else
- {
- x++;
- }
- // Draw Spacing
- if (_config._showEndSpacing || i < _options.Count - 1)
- {
- // Skip if is the Last Spacing.
- Driver?.SetAttribute (
- drawRange && isSet
- ? Style.RangeChar.Attribute ?? setAtrr
- : Style.SpaceChar.Attribute ?? normalAttr
- );
- for (var s = 0; s < _config._innerSpacing; s++)
- {
- MoveAndAdd (x, y, drawRange && isSet ? Style.RangeChar.Rune : Style.SpaceChar.Rune);
- if (isVertical)
- {
- y++;
- }
- else
- {
- x++;
- }
- }
- }
- }
- }
- int remaining = isVertical ? Viewport.Height - y : Viewport.Width - x;
- // Right Spacing
- if (_config._showEndSpacing)
- {
- Driver?.SetAttribute (
- isSet && _config._type == SliderType.RightRange
- ? Style.RangeChar.Attribute ?? normalAttr
- : Style.SpaceChar.Attribute ?? normalAttr
- );
- Rune rune = isSet && _config._type == SliderType.RightRange ? Style.RangeChar.Rune : Style.SpaceChar.Rune;
- for (var i = 0; i < remaining; i++)
- {
- MoveAndAdd (x, y, rune);
- if (isVertical)
- {
- y++;
- }
- else
- {
- x++;
- }
- }
- }
- else
- {
- Driver?.SetAttribute (Style.EmptyChar.Attribute ?? normalAttr);
- for (var i = 0; i < remaining; i++)
- {
- MoveAndAdd (x, y, Style.EmptyChar.Rune);
- if (isVertical)
- {
- y++;
- }
- else
- {
- x++;
- }
- }
- }
- }
- private void DrawLegends ()
- {
- // Attributes
- var normalAttr = new Attribute (Color.White, Color.Black);
- var setAttr = new Attribute (Color.Black, Color.White);
- Attribute spaceAttr = normalAttr;
- if (IsInitialized)
- {
- normalAttr = Style.LegendAttributes.NormalAttribute ?? ColorScheme?.Normal ?? ColorScheme.Disabled;
- setAttr = Style.LegendAttributes.SetAttribute ?? ColorScheme?.HotNormal ?? ColorScheme.Normal;
- spaceAttr = Style.LegendAttributes.EmptyAttribute ?? normalAttr;
- }
- bool isTextVertical = _config._legendsOrientation == Orientation.Vertical;
- bool isSet = _setOptions.Count > 0;
- var x = 0;
- var y = 0;
- Move (x, y);
- if (_config._sliderOrientation == Orientation.Horizontal
- && _config._legendsOrientation == Orientation.Vertical)
- {
- x += _config._startSpacing;
- }
- if (_config._sliderOrientation == Orientation.Vertical
- && _config._legendsOrientation == Orientation.Horizontal)
- {
- y += _config._startSpacing;
- }
- if (_config._sliderOrientation == Orientation.Horizontal)
- {
- y += 1;
- }
- else
- {
- // Vertical
- x += 1;
- }
- for (var i = 0; i < _options.Count; i++)
- {
- var isOptionSet = false;
- // Check if the Option is Set.
- switch (_config._type)
- {
- case SliderType.Single:
- case SliderType.Multiple:
- if (isSet && _setOptions.Contains (i))
- {
- isOptionSet = true;
- }
- break;
- case SliderType.LeftRange:
- if (isSet && i <= _setOptions [0])
- {
- isOptionSet = true;
- }
- break;
- case SliderType.RightRange:
- if (isSet && i >= _setOptions [0])
- {
- isOptionSet = true;
- }
- break;
- case SliderType.Range when _setOptions.Count == 1:
- if (isSet && i == _setOptions [0])
- {
- isOptionSet = true;
- }
- break;
- case SliderType.Range:
- if (isSet
- && ((i >= _setOptions [0] && i <= _setOptions [1])
- || (i >= _setOptions [1] && i <= _setOptions [0])))
- {
- isOptionSet = true;
- }
- break;
- }
- // Text || Abbreviation
- var text = string.Empty;
- if (_config._showLegendsAbbr)
- {
- text = _options [i].LegendAbbr.ToString () ?? new Rune (_options [i].Legend.First ()).ToString ();
- }
- else
- {
- text = _options [i].Legend;
- }
- switch (_config._sliderOrientation)
- {
- case Orientation.Horizontal:
- switch (_config._legendsOrientation)
- {
- case Orientation.Horizontal:
- text = AlignText (text, _config._innerSpacing + 1, Justification.Centered);
- break;
- case Orientation.Vertical:
- y = 1;
- break;
- }
- break;
- case Orientation.Vertical:
- switch (_config._legendsOrientation)
- {
- case Orientation.Horizontal:
- x = 1;
- break;
- case Orientation.Vertical:
- text = AlignText (text, _config._innerSpacing + 1, Justification.Centered);
- break;
- }
- break;
- }
- // Text
- int legend_left_spaces_count = text.TakeWhile (e => e == ' ').Count ();
- int legend_right_spaces_count = text.Reverse ().TakeWhile (e => e == ' ').Count ();
- text = text.Trim ();
- // TODO(jmperricone): Improve the Orientation check.
- // Calculate Start Spacing
- if (_config._sliderOrientation == _config._legendsOrientation)
- {
- if (i == 0)
- {
- // The spacing for the slider use the StartSpacing but...
- // The spacing for the legends is the StartSpacing MINUS the total chars to the left of the first options.
- // ●────●────●
- // Hello Bye World
- //
- // chars_left is 2 for Hello => (5 - 1) / 2
- //
- // then the spacing is 2 for the slider but 0 for the legends.
- int chars_left = (text.Length - 1) / 2;
- legend_left_spaces_count = _config._startSpacing - chars_left;
- }
- // Option Left Spacing
- if (isTextVertical)
- {
- y += legend_left_spaces_count;
- }
- else
- {
- x += legend_left_spaces_count;
- }
- //Move (x, y);
- }
- // Legend
- Driver?.SetAttribute (isOptionSet ? setAttr : normalAttr);
- foreach (Rune c in text.EnumerateRunes ())
- {
- MoveAndAdd (x, y, c);
- //Driver.AddRune (c);
- if (isTextVertical)
- {
- y += 1;
- }
- else
- {
- x += 1;
- }
- }
- // Calculate End Spacing
- if (i == _options.Count () - 1)
- {
- // See Start Spacing explanation.
- int chars_right = text.Length / 2;
- legend_right_spaces_count = _config._endSpacing - chars_right;
- }
- // Option Right Spacing of Option
- Driver?.SetAttribute (spaceAttr);
- if (isTextVertical)
- {
- y += legend_right_spaces_count;
- }
- else
- {
- x += legend_right_spaces_count;
- }
- if (_config._sliderOrientation == Orientation.Horizontal
- && _config._legendsOrientation == Orientation.Vertical)
- {
- x += _config._innerSpacing + 1;
- }
- else if (_config._sliderOrientation == Orientation.Vertical
- && _config._legendsOrientation == Orientation.Horizontal)
- {
- y += _config._innerSpacing + 1;
- }
- }
- }
- #endregion
- #region Keys and Mouse
- // Mouse coordinates of current drag
- private Point? _dragPosition;
- // Coordinates of where the "move cursor" is drawn (in OnDrawContent)
- private Point? _moveRenderPosition;
- /// <inheritdoc/>
- protected internal override bool OnMouseEvent (MouseEvent mouseEvent)
- {
- // Note(jmperricone): Maybe we click to focus the cursor, and on next click we set the option.
- // That will makes OptionFocused Event more relevant.
- // (tig: I don't think so. Maybe an option if someone really wants it, but for now that
- // adss to much friction to UI.
- // TODO(jmperricone): Make Range Type work with mouse.
- if (!(mouseEvent.Flags.HasFlag (MouseFlags.Button1Clicked)
- || mouseEvent.Flags.HasFlag (MouseFlags.Button1Pressed)
- || mouseEvent.Flags.HasFlag (MouseFlags.ReportMousePosition)
- || mouseEvent.Flags.HasFlag (MouseFlags.Button1Released)))
- {
- return false;
- }
- Point ClampMovePosition (Point position)
- {
- int Clamp (int value, int min, int max) { return Math.Max (min, Math.Min (max, value)); }
- if (Orientation == Orientation.Horizontal)
- {
- int left = _config._startSpacing;
- int width = _options.Count + (_options.Count - 1) * _config._innerSpacing;
- int right = left + width - 1;
- int clampedX = Clamp (position.X, left, right);
- position = new Point (clampedX, 0);
- }
- else
- {
- int top = _config._startSpacing;
- int height = _options.Count + (_options.Count - 1) * _config._innerSpacing;
- int bottom = top + height - 1;
- int clampedY = Clamp (position.Y, top, bottom);
- position = new Point (0, clampedY);
- }
- return position;
- }
- SetFocus ();
- if (!_dragPosition.HasValue && mouseEvent.Flags.HasFlag (MouseFlags.Button1Pressed))
- {
- if (mouseEvent.Flags.HasFlag (MouseFlags.ReportMousePosition))
- {
- _dragPosition = new Point (mouseEvent.X, mouseEvent.Y);
- _moveRenderPosition = ClampMovePosition ((Point)_dragPosition);
- Application.GrabMouse (this);
- }
- SetNeedsDisplay ();
- return true;
- }
- if (_dragPosition.HasValue
- && mouseEvent.Flags.HasFlag (MouseFlags.ReportMousePosition)
- && mouseEvent.Flags.HasFlag (MouseFlags.Button1Pressed))
- {
- // Continue Drag
- _dragPosition = new Point (mouseEvent.X, mouseEvent.Y);
- _moveRenderPosition = ClampMovePosition ((Point)_dragPosition);
- var success = false;
- var option = 0;
- // how far has user dragged from original location?
- if (Orientation == Orientation.Horizontal)
- {
- success = TryGetOptionByPosition (mouseEvent.X, 0, Math.Max (0, _config._innerSpacing / 2), out option);
- }
- else
- {
- success = TryGetOptionByPosition (0, mouseEvent.Y, Math.Max (0, _config._innerSpacing / 2), out option);
- }
- if (!_config._allowEmpty && success)
- {
- if (!OnOptionFocused (option, new SliderEventArgs<T> (GetSetOptionDictionary (), FocusedOption)))
- {
- SetFocusedOption ();
- }
- }
- SetNeedsDisplay ();
- return true;
- }
- if ((_dragPosition.HasValue && mouseEvent.Flags.HasFlag (MouseFlags.Button1Released))
- || mouseEvent.Flags.HasFlag (MouseFlags.Button1Clicked))
- {
- // End Drag
- Application.UngrabMouse ();
- _dragPosition = null;
- _moveRenderPosition = null;
- // TODO: Add func to calc distance between options to use as the MouseClickXOptionThreshold
- var success = false;
- var option = 0;
- if (Orientation == Orientation.Horizontal)
- {
- success = TryGetOptionByPosition (mouseEvent.X, 0, Math.Max (0, _config._innerSpacing / 2), out option);
- }
- else
- {
- success = TryGetOptionByPosition (0, mouseEvent.Y, Math.Max (0, _config._innerSpacing / 2), out option);
- }
- if (success)
- {
- if (!OnOptionFocused (option, new SliderEventArgs<T> (GetSetOptionDictionary (), FocusedOption)))
- {
- SetFocusedOption ();
- }
- }
- SetNeedsDisplay ();
- return true;
- }
- return false;
- }
- private void SetCommands ()
- {
- AddCommand (Command.Right, () => MovePlus ());
- AddCommand (Command.LineDown, () => MovePlus ());
- AddCommand (Command.Left, () => MoveMinus ());
- AddCommand (Command.LineUp, () => MoveMinus ());
- AddCommand (Command.LeftHome, () => MoveStart ());
- AddCommand (Command.RightEnd, () => MoveEnd ());
- AddCommand (Command.RightExtend, () => ExtendPlus ());
- AddCommand (Command.LeftExtend, () => ExtendMinus ());
- AddCommand (Command.Accept, () => Set ());
- SetKeyBindings ();
- }
- // This is called during initialization and anytime orientation changes
- private void SetKeyBindings ()
- {
- if (_config._sliderOrientation == Orientation.Horizontal)
- {
- KeyBindings.Add (Key.CursorRight, Command.Right);
- KeyBindings.Remove (Key.CursorDown);
- KeyBindings.Add (Key.CursorLeft, Command.Left);
- KeyBindings.Remove (Key.CursorUp);
- KeyBindings.Add (Key.CursorRight.WithCtrl, Command.RightExtend);
- KeyBindings.Remove (Key.CursorDown.WithCtrl);
- KeyBindings.Add (Key.CursorLeft.WithCtrl, Command.LeftExtend);
- KeyBindings.Remove (Key.CursorUp.WithCtrl);
- }
- else
- {
- KeyBindings.Remove (Key.CursorRight);
- KeyBindings.Add (Key.CursorDown, Command.LineDown);
- KeyBindings.Remove (Key.CursorLeft);
- KeyBindings.Add (Key.CursorUp, Command.LineUp);
- KeyBindings.Remove (Key.CursorRight.WithCtrl);
- KeyBindings.Add (Key.CursorDown.WithCtrl, Command.RightExtend);
- KeyBindings.Remove (Key.CursorLeft.WithCtrl);
- KeyBindings.Add (Key.CursorUp.WithCtrl, Command.LeftExtend);
- }
- KeyBindings.Add (Key.Home, Command.LeftHome);
- KeyBindings.Add (Key.End, Command.RightEnd);
- KeyBindings.Add (Key.Enter, Command.Accept);
- KeyBindings.Add (Key.Space, Command.Accept);
- }
- private Dictionary<int, SliderOption<T>> GetSetOptionDictionary () { return _setOptions.ToDictionary (e => e, e => _options [e]); }
- private void SetFocusedOption ()
- {
- switch (_config._type)
- {
- case SliderType.Single:
- case SliderType.LeftRange:
- case SliderType.RightRange:
- if (_setOptions.Count == 1)
- {
- int prev = _setOptions [0];
- if (!_config._allowEmpty && prev == FocusedOption)
- {
- break;
- }
- _setOptions.Clear ();
- _options [FocusedOption].OnUnSet ();
- if (FocusedOption != prev)
- {
- _setOptions.Add (FocusedOption);
- _options [FocusedOption].OnSet ();
- }
- }
- else
- {
- _setOptions.Add (FocusedOption);
- _options [FocusedOption].OnSet ();
- }
- // Raise slider changed event.
- OnOptionsChanged ();
- break;
- case SliderType.Multiple:
- if (_setOptions.Contains (FocusedOption))
- {
- if (!_config._allowEmpty && _setOptions.Count () == 1)
- {
- break;
- }
- _setOptions.Remove (FocusedOption);
- _options [FocusedOption].OnUnSet ();
- }
- else
- {
- _setOptions.Add (FocusedOption);
- _options [FocusedOption].OnSet ();
- }
- OnOptionsChanged ();
- break;
- case SliderType.Range:
- if (_config._rangeAllowSingle)
- {
- if (_setOptions.Count == 1)
- {
- int prev = _setOptions [0];
- if (!_config._allowEmpty && prev == FocusedOption)
- {
- break;
- }
- if (FocusedOption == prev)
- {
- // un-set
- _setOptions.Clear ();
- _options [FocusedOption].OnUnSet ();
- }
- else
- {
- _setOptions [0] = FocusedOption;
- _setOptions.Add (prev);
- _setOptions.Sort ();
- _options [FocusedOption].OnSet ();
- }
- }
- else if (_setOptions.Count == 0)
- {
- _setOptions.Add (FocusedOption);
- _options [FocusedOption].OnSet ();
- }
- else
- {
- // Extend/Shrink
- if (FocusedOption < _setOptions [0])
- {
- // extend left
- _options [_setOptions [0]].OnUnSet ();
- _setOptions [0] = FocusedOption;
- }
- else if (FocusedOption > _setOptions [1])
- {
- // extend right
- _options [_setOptions [1]].OnUnSet ();
- _setOptions [1] = FocusedOption;
- }
- else if (FocusedOption >= _setOptions [0] && FocusedOption <= _setOptions [1])
- {
- if (FocusedOption < _lastFocusedOption)
- {
- // shrink to the left
- _options [_setOptions [1]].OnUnSet ();
- _setOptions [1] = FocusedOption;
- }
- else if (FocusedOption > _lastFocusedOption)
- {
- // shrink to the right
- _options [_setOptions [0]].OnUnSet ();
- _setOptions [0] = FocusedOption;
- }
- if (_setOptions.Count > 1 && _setOptions [0] == _setOptions [1])
- {
- _setOptions.Clear ();
- _setOptions.Add (FocusedOption);
- }
- }
- }
- }
- else
- {
- if (_setOptions.Count == 1)
- {
- int prev = _setOptions [0];
- if (!_config._allowEmpty && prev == FocusedOption)
- {
- break;
- }
- _setOptions [0] = FocusedOption;
- _setOptions.Add (prev);
- _setOptions.Sort ();
- _options [FocusedOption].OnSet ();
- }
- else if (_setOptions.Count == 0)
- {
- _setOptions.Add (FocusedOption);
- _options [FocusedOption].OnSet ();
- int next = FocusedOption < _options.Count - 1 ? FocusedOption + 1 : FocusedOption - 1;
- _setOptions.Add (next);
- _options [next].OnSet ();
- }
- else
- {
- // Extend/Shrink
- if (FocusedOption < _setOptions [0])
- {
- // extend left
- _options [_setOptions [0]].OnUnSet ();
- _setOptions [0] = FocusedOption;
- }
- else if (FocusedOption > _setOptions [1])
- {
- // extend right
- _options [_setOptions [1]].OnUnSet ();
- _setOptions [1] = FocusedOption;
- }
- else if (FocusedOption >= _setOptions [0]
- && FocusedOption <= _setOptions [1]
- && _setOptions [1] - _setOptions [0] > 1)
- {
- if (FocusedOption < _lastFocusedOption)
- {
- // shrink to the left
- _options [_setOptions [1]].OnUnSet ();
- _setOptions [1] = FocusedOption;
- }
- else if (FocusedOption > _lastFocusedOption)
- {
- // shrink to the right
- _options [_setOptions [0]].OnUnSet ();
- _setOptions [0] = FocusedOption;
- }
- }
- //if (_setOptions.Count > 1 && _setOptions [0] == _setOptions [1]) {
- // SetFocusedOption ();
- //}
- }
- }
- // Raise Slider Option Changed Event.
- OnOptionsChanged ();
- break;
- default:
- throw new ArgumentOutOfRangeException (_config._type.ToString ());
- }
- }
- internal bool ExtendPlus ()
- {
- int next = FocusedOption < _options.Count - 1 ? FocusedOption + 1 : FocusedOption;
- if (next != FocusedOption
- && !OnOptionFocused (
- next,
- new SliderEventArgs<T> (
- GetSetOptionDictionary (),
- FocusedOption
- )
- ))
- {
- SetFocusedOption ();
- }
- return true;
- //// TODO: Support RangeMultiple
- //if (_setOptions.Contains (FocusedOption)) {
- // var next = FocusedOption < _options.Count - 1 ? FocusedOption + 1 : FocusedOption;
- // if (!_setOptions.Contains (next)) {
- // if (_config._type == SliderType.Range) {
- // if (_setOptions.Count == 1) {
- // if (!OnOptionFocused (next, new SliderEventArgs<T> (GetSetOptionDictionary (), FocusedOption))) {
- // _setOptions.Add (FocusedOption);
- // _setOptions.Sort (); // Range Type
- // OnOptionsChanged ();
- // }
- // } else if (_setOptions.Count == 2) {
- // if (!OnOptionFocused (next, new SliderEventArgs<T> (GetSetOptionDictionary (), FocusedOption))) {
- // _setOptions [1] = FocusedOption;
- // _setOptions.Sort (); // Range Type
- // OnOptionsChanged ();
- // }
- // }
- // } else {
- // _setOptions.Remove (FocusedOption);
- // // Note(jmperricone): We are setting the option here, do we send the OptionFocused Event too ?
- // if (!OnOptionFocused (next, new SliderEventArgs<T> (GetSetOptionDictionary (), FocusedOption))) {
- // _setOptions.Add (FocusedOption);
- // _setOptions.Sort (); // Range Type
- // OnOptionsChanged ();
- // }
- // }
- // } else {
- // if (_config._type == SliderType.Range) {
- // if (!OnOptionFocused (next, new SliderEventArgs<T> (GetSetOptionDictionary (), FocusedOption))) {
- // _setOptions.Clear();
- // _setOptions.Add (FocusedOption);
- // OnOptionsChanged ();
- // }
- // } else if (/*_settingRange == true ||*/ !AllowEmpty) {
- // SetFocusedOption ();
- // }
- // }
- //}
- //return true;
- }
- internal bool ExtendMinus ()
- {
- int prev = FocusedOption > 0 ? FocusedOption - 1 : FocusedOption;
- if (prev != FocusedOption
- && !OnOptionFocused (
- prev,
- new SliderEventArgs<T> (
- GetSetOptionDictionary (),
- FocusedOption
- )
- ))
- {
- SetFocusedOption ();
- }
- return true;
- }
- internal bool Set ()
- {
- SetFocusedOption ();
- return true;
- }
- internal bool MovePlus ()
- {
- bool cancelled = OnOptionFocused (
- FocusedOption + 1,
- new SliderEventArgs<T> (GetSetOptionDictionary (), FocusedOption)
- );
- if (cancelled)
- {
- return false;
- }
- if (!AllowEmpty)
- {
- SetFocusedOption ();
- }
- return true;
- }
- internal bool MoveMinus ()
- {
- bool cancelled = OnOptionFocused (
- FocusedOption - 1,
- new SliderEventArgs<T> (GetSetOptionDictionary (), FocusedOption)
- );
- if (cancelled)
- {
- return false;
- }
- if (!AllowEmpty)
- {
- SetFocusedOption ();
- }
- return true;
- }
- internal bool MoveStart ()
- {
- if (OnOptionFocused (0, new SliderEventArgs<T> (GetSetOptionDictionary (), FocusedOption)))
- {
- return false;
- }
- if (!AllowEmpty)
- {
- SetFocusedOption ();
- }
- return true;
- }
- internal bool MoveEnd ()
- {
- if (OnOptionFocused (_options.Count - 1, new SliderEventArgs<T> (GetSetOptionDictionary (), FocusedOption)))
- {
- return false;
- }
- if (!AllowEmpty)
- {
- SetFocusedOption ();
- }
- return true;
- }
- #endregion
- }
|