2022-02-20 00:52:16 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2022-05-07 16:56:03 +08:00
|
|
|
using System.Diagnostics;
|
2022-02-20 00:52:16 +08:00
|
|
|
using System.Linq;
|
|
|
|
using System.Threading;
|
2022-03-01 04:36:13 +08:00
|
|
|
using System.Threading.Tasks;
|
2022-02-20 00:52:16 +08:00
|
|
|
using Humanizer;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
2022-02-20 01:33:13 +08:00
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
2022-02-20 00:52:16 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2022-02-20 01:33:13 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2022-02-20 21:10:35 +08:00
|
|
|
using osu.Framework.Input.Events;
|
2022-06-21 19:10:22 +08:00
|
|
|
using osu.Game.Configuration;
|
2022-02-20 00:52:16 +08:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.Containers;
|
2022-02-20 01:33:13 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
2022-05-07 16:56:03 +08:00
|
|
|
using osu.Game.Localisation;
|
2022-06-21 18:49:01 +08:00
|
|
|
using osu.Game.Overlays.Mods.Input;
|
2022-02-20 00:52:16 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
using osuTK;
|
2022-02-20 01:33:13 +08:00
|
|
|
using osuTK.Graphics;
|
2022-02-20 00:52:16 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Mods
|
|
|
|
{
|
|
|
|
public class ModColumn : CompositeDrawable
|
|
|
|
{
|
2022-04-05 17:27:34 +08:00
|
|
|
public readonly Container TopLevelContent;
|
|
|
|
|
2022-03-28 06:16:10 +08:00
|
|
|
public readonly ModType ModType;
|
|
|
|
|
2022-05-12 01:02:45 +08:00
|
|
|
private IReadOnlyList<ModState> availableMods = Array.Empty<ModState>();
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sets the list of mods to show in this column.
|
|
|
|
/// </summary>
|
|
|
|
public IReadOnlyList<ModState> AvailableMods
|
|
|
|
{
|
|
|
|
get => availableMods;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
Debug.Assert(value.All(mod => mod.Mod.Type == ModType));
|
|
|
|
|
|
|
|
availableMods = value;
|
2022-05-12 02:23:56 +08:00
|
|
|
|
2022-05-12 02:28:11 +08:00
|
|
|
foreach (var mod in availableMods)
|
|
|
|
{
|
|
|
|
mod.Active.BindValueChanged(_ => updateState());
|
|
|
|
mod.Filtered.BindValueChanged(_ => updateState());
|
|
|
|
}
|
|
|
|
|
|
|
|
updateState();
|
|
|
|
|
2022-05-12 02:23:56 +08:00
|
|
|
if (IsLoaded)
|
|
|
|
asyncLoadPanels();
|
2022-05-12 01:02:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-08 20:44:54 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Determines whether this column should accept user input.
|
|
|
|
/// </summary>
|
2022-04-25 01:13:19 +08:00
|
|
|
public Bindable<bool> Active = new BindableBool(true);
|
|
|
|
|
|
|
|
protected override bool ReceivePositionalInputAtSubTree(Vector2 screenSpacePos) => base.ReceivePositionalInputAtSubTree(screenSpacePos) && Active.Value;
|
2022-03-27 05:43:17 +08:00
|
|
|
|
2022-05-12 00:37:31 +08:00
|
|
|
protected virtual ModPanel CreateModPanel(ModState mod) => new ModPanel(mod);
|
2022-03-28 04:55:52 +08:00
|
|
|
|
2022-06-21 19:10:22 +08:00
|
|
|
private Bindable<ModSelectHotkeyStyle> hotkeyStyle = null!;
|
|
|
|
private IModHotkeyHandler hotkeyHandler = null!;
|
2022-02-20 00:52:16 +08:00
|
|
|
|
|
|
|
private readonly TextFlowContainer headerText;
|
|
|
|
private readonly Box headerBackground;
|
|
|
|
private readonly Container contentContainer;
|
|
|
|
private readonly Box contentBackground;
|
|
|
|
private readonly FillFlowContainer<ModPanel> panelFlow;
|
2022-02-20 01:33:13 +08:00
|
|
|
private readonly ToggleAllCheckbox? toggleAllCheckbox;
|
2022-02-20 00:52:16 +08:00
|
|
|
|
|
|
|
private Colour4 accentColour;
|
|
|
|
|
2022-03-01 04:36:13 +08:00
|
|
|
private Task? latestLoadTask;
|
|
|
|
internal bool ItemsLoaded => latestLoadTask == null;
|
|
|
|
|
2022-02-28 06:08:31 +08:00
|
|
|
private const float header_height = 42;
|
2022-02-20 00:52:16 +08:00
|
|
|
|
2022-06-21 18:49:01 +08:00
|
|
|
public ModColumn(ModType modType, bool allowBulkSelection)
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
2022-03-28 06:16:10 +08:00
|
|
|
ModType = modType;
|
2022-02-20 00:52:16 +08:00
|
|
|
|
2022-02-28 06:08:31 +08:00
|
|
|
Width = 320;
|
2022-02-20 00:52:16 +08:00
|
|
|
RelativeSizeAxes = Axes.Y;
|
2022-04-20 15:30:58 +08:00
|
|
|
Shear = new Vector2(ShearedOverlayContainer.SHEAR, 0);
|
2022-02-20 00:52:16 +08:00
|
|
|
|
2022-02-20 01:33:13 +08:00
|
|
|
Container controlContainer;
|
2022-02-20 00:52:16 +08:00
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
2022-04-05 17:27:34 +08:00
|
|
|
TopLevelContent = new Container
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
2022-04-05 17:27:34 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
CornerRadius = ModPanel.CORNER_RADIUS,
|
|
|
|
Masking = true,
|
2022-02-20 00:52:16 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2022-04-05 17:27:34 +08:00
|
|
|
new Container
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2022-04-05 17:27:34 +08:00
|
|
|
Height = header_height + ModPanel.CORNER_RADIUS,
|
|
|
|
Children = new Drawable[]
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
2022-04-05 17:27:34 +08:00
|
|
|
headerBackground = new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Height = header_height + ModPanel.CORNER_RADIUS
|
|
|
|
},
|
|
|
|
headerText = new OsuTextFlowContainer(t =>
|
|
|
|
{
|
|
|
|
t.Font = OsuFont.TorusAlternate.With(size: 17);
|
|
|
|
t.Shadow = false;
|
|
|
|
t.Colour = Colour4.Black;
|
|
|
|
})
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
Origin = Anchor.CentreLeft,
|
2022-04-20 15:30:58 +08:00
|
|
|
Shear = new Vector2(-ShearedOverlayContainer.SHEAR, 0),
|
2022-04-05 17:27:34 +08:00
|
|
|
Padding = new MarginPadding
|
|
|
|
{
|
|
|
|
Horizontal = 17,
|
|
|
|
Bottom = ModPanel.CORNER_RADIUS
|
|
|
|
}
|
|
|
|
}
|
2022-02-20 00:52:16 +08:00
|
|
|
}
|
2022-04-05 17:27:34 +08:00
|
|
|
},
|
|
|
|
new Container
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
2022-04-05 17:27:34 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Padding = new MarginPadding { Top = header_height },
|
|
|
|
Child = contentContainer = new Container
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2022-04-05 17:27:34 +08:00
|
|
|
Masking = true,
|
|
|
|
CornerRadius = ModPanel.CORNER_RADIUS,
|
|
|
|
BorderThickness = 3,
|
|
|
|
Children = new Drawable[]
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
2022-04-05 17:27:34 +08:00
|
|
|
contentBackground = new Box
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
2022-04-05 17:27:34 +08:00
|
|
|
RelativeSizeAxes = Axes.Both
|
2022-02-20 00:52:16 +08:00
|
|
|
},
|
2022-04-05 17:27:34 +08:00
|
|
|
new GridContainer
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
2022-04-05 17:27:34 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
RowDimensions = new[]
|
|
|
|
{
|
|
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
|
|
new Dimension()
|
|
|
|
},
|
|
|
|
Content = new[]
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
2022-04-05 17:27:34 +08:00
|
|
|
new Drawable[]
|
|
|
|
{
|
|
|
|
controlContainer = new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Padding = new MarginPadding { Horizontal = 14 }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
new Drawable[]
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
2022-05-07 17:15:11 +08:00
|
|
|
new OsuScrollContainer(Direction.Vertical)
|
2022-04-05 17:27:34 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
ClampExtension = 100,
|
|
|
|
ScrollbarOverlapsContent = false,
|
|
|
|
Child = panelFlow = new FillFlowContainer<ModPanel>
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Spacing = new Vector2(0, 7),
|
|
|
|
Padding = new MarginPadding(7)
|
|
|
|
}
|
|
|
|
}
|
2022-02-20 00:52:16 +08:00
|
|
|
}
|
|
|
|
}
|
2022-02-20 19:18:59 +08:00
|
|
|
}
|
2022-02-20 00:52:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
createHeaderText();
|
2022-02-20 01:33:13 +08:00
|
|
|
|
|
|
|
if (allowBulkSelection)
|
|
|
|
{
|
2022-02-28 06:08:31 +08:00
|
|
|
controlContainer.Height = 35;
|
2022-02-20 01:45:04 +08:00
|
|
|
controlContainer.Add(toggleAllCheckbox = new ToggleAllCheckbox(this)
|
2022-02-20 01:33:13 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
Origin = Anchor.CentreLeft,
|
2022-02-28 06:08:31 +08:00
|
|
|
Scale = new Vector2(0.8f),
|
2022-02-20 01:33:13 +08:00
|
|
|
RelativeSizeAxes = Axes.X,
|
2022-04-20 15:30:58 +08:00
|
|
|
Shear = new Vector2(-ShearedOverlayContainer.SHEAR, 0)
|
2022-02-20 01:33:13 +08:00
|
|
|
});
|
2022-02-20 19:18:59 +08:00
|
|
|
panelFlow.Padding = new MarginPadding
|
|
|
|
{
|
|
|
|
Top = 0,
|
2022-02-28 06:08:31 +08:00
|
|
|
Bottom = 7,
|
|
|
|
Horizontal = 7
|
2022-02-20 19:18:59 +08:00
|
|
|
};
|
2022-02-20 01:33:13 +08:00
|
|
|
}
|
2022-02-20 00:52:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void createHeaderText()
|
|
|
|
{
|
2022-03-28 06:16:10 +08:00
|
|
|
IEnumerable<string> headerTextWords = ModType.Humanize(LetterCasing.Title).Split(' ');
|
2022-02-20 00:52:16 +08:00
|
|
|
|
|
|
|
if (headerTextWords.Count() > 1)
|
|
|
|
{
|
|
|
|
headerText.AddText($"{headerTextWords.First()} ", t => t.Font = t.Font.With(weight: FontWeight.SemiBold));
|
|
|
|
headerTextWords = headerTextWords.Skip(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
headerText.AddText(string.Join(' ', headerTextWords));
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2022-06-21 19:10:22 +08:00
|
|
|
private void load(OverlayColourProvider colourProvider, OsuColour colours, OsuConfigManager configManager)
|
2022-02-20 00:52:16 +08:00
|
|
|
{
|
2022-03-28 06:16:10 +08:00
|
|
|
headerBackground.Colour = accentColour = colours.ForModType(ModType);
|
2022-02-20 00:52:16 +08:00
|
|
|
|
2022-02-20 01:33:13 +08:00
|
|
|
if (toggleAllCheckbox != null)
|
|
|
|
{
|
|
|
|
toggleAllCheckbox.AccentColour = accentColour;
|
|
|
|
toggleAllCheckbox.AccentHoverColour = accentColour.Lighten(0.3f);
|
|
|
|
}
|
|
|
|
|
2022-02-20 00:52:16 +08:00
|
|
|
contentContainer.BorderColour = ColourInfo.GradientVertical(colourProvider.Background4, colourProvider.Background3);
|
|
|
|
contentBackground.Colour = colourProvider.Background4;
|
2022-06-21 19:10:22 +08:00
|
|
|
|
|
|
|
hotkeyStyle = configManager.GetBindable<ModSelectHotkeyStyle>(OsuSetting.ModSelectHotkeyStyle);
|
2022-02-20 00:52:16 +08:00
|
|
|
}
|
|
|
|
|
2022-05-07 16:56:03 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
toggleAllCheckbox?.Current.BindValueChanged(_ => updateToggleAllText(), true);
|
2022-06-21 19:10:22 +08:00
|
|
|
hotkeyStyle.BindValueChanged(val => hotkeyHandler = ModHotkeyHandler.Create(ModType, val.NewValue), true);
|
2022-05-12 02:23:56 +08:00
|
|
|
asyncLoadPanels();
|
2022-05-07 16:56:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void updateToggleAllText()
|
|
|
|
{
|
|
|
|
Debug.Assert(toggleAllCheckbox != null);
|
|
|
|
toggleAllCheckbox.LabelText = toggleAllCheckbox.Current.Value ? CommonStrings.DeselectAll : CommonStrings.SelectAll;
|
|
|
|
}
|
|
|
|
|
2022-05-04 03:44:44 +08:00
|
|
|
private CancellationTokenSource? cancellationTokenSource;
|
|
|
|
|
2022-05-06 23:33:32 +08:00
|
|
|
private void asyncLoadPanels()
|
2022-05-04 03:44:44 +08:00
|
|
|
{
|
2022-02-20 00:52:16 +08:00
|
|
|
cancellationTokenSource?.Cancel();
|
|
|
|
|
2022-05-24 04:19:01 +08:00
|
|
|
var panels = availableMods.Select(mod => CreateModPanel(mod).With(panel => panel.Shear = Vector2.Zero));
|
2022-02-20 00:52:16 +08:00
|
|
|
|
2022-03-01 04:36:13 +08:00
|
|
|
Task? loadTask;
|
|
|
|
|
2022-05-12 01:30:06 +08:00
|
|
|
latestLoadTask = loadTask = LoadComponentsAsync(panels, loaded =>
|
|
|
|
{
|
|
|
|
panelFlow.ChildrenEnumerable = loaded;
|
|
|
|
updateState();
|
|
|
|
}, (cancellationTokenSource = new CancellationTokenSource()).Token);
|
2022-03-01 04:36:13 +08:00
|
|
|
loadTask.ContinueWith(_ =>
|
|
|
|
{
|
|
|
|
if (loadTask == latestLoadTask)
|
|
|
|
latestLoadTask = null;
|
|
|
|
});
|
2022-02-20 00:52:16 +08:00
|
|
|
}
|
2022-02-20 01:33:13 +08:00
|
|
|
|
2022-05-07 03:35:36 +08:00
|
|
|
private void updateState()
|
2022-03-28 06:16:10 +08:00
|
|
|
{
|
2022-05-12 01:30:06 +08:00
|
|
|
Alpha = availableMods.All(mod => mod.Filtered.Value) ? 0 : 1;
|
2022-05-08 20:44:54 +08:00
|
|
|
|
2022-05-07 03:35:36 +08:00
|
|
|
if (toggleAllCheckbox != null && !SelectionAnimationRunning)
|
|
|
|
{
|
2022-05-12 02:29:28 +08:00
|
|
|
toggleAllCheckbox.Alpha = availableMods.Any(panel => !panel.Filtered.Value) ? 1 : 0;
|
|
|
|
toggleAllCheckbox.Current.Value = availableMods.Where(panel => !panel.Filtered.Value).All(panel => panel.Active.Value);
|
2022-05-07 03:35:36 +08:00
|
|
|
}
|
2022-05-04 03:44:44 +08:00
|
|
|
}
|
|
|
|
|
2022-02-20 01:45:04 +08:00
|
|
|
#region Bulk select / deselect
|
|
|
|
|
|
|
|
private const double initial_multiple_selection_delay = 120;
|
|
|
|
|
|
|
|
private double selectionDelay = initial_multiple_selection_delay;
|
|
|
|
private double lastSelection;
|
|
|
|
|
|
|
|
private readonly Queue<Action> pendingSelectionOperations = new Queue<Action>();
|
|
|
|
|
2022-05-07 00:08:11 +08:00
|
|
|
internal bool SelectionAnimationRunning => pendingSelectionOperations.Count > 0;
|
2022-02-20 20:40:52 +08:00
|
|
|
|
2022-02-20 01:45:04 +08:00
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
if (selectionDelay == initial_multiple_selection_delay || Time.Current - lastSelection >= selectionDelay)
|
|
|
|
{
|
|
|
|
if (pendingSelectionOperations.TryDequeue(out var dequeuedAction))
|
|
|
|
{
|
|
|
|
dequeuedAction();
|
|
|
|
|
|
|
|
// each time we play an animation, we decrease the time until the next animation (to ramp the visual and audible elements).
|
|
|
|
selectionDelay = Math.Max(30, selectionDelay * 0.8f);
|
|
|
|
lastSelection = Time.Current;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// reset the selection delay after all animations have been completed.
|
|
|
|
// this will cause the next action to be immediately performed.
|
|
|
|
selectionDelay = initial_multiple_selection_delay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Selects all mods.
|
|
|
|
/// </summary>
|
|
|
|
public void SelectAll()
|
|
|
|
{
|
|
|
|
pendingSelectionOperations.Clear();
|
|
|
|
|
2022-05-12 02:29:28 +08:00
|
|
|
foreach (var button in availableMods.Where(b => !b.Active.Value && !b.Filtered.Value))
|
2022-02-20 01:45:04 +08:00
|
|
|
pendingSelectionOperations.Enqueue(() => button.Active.Value = true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Deselects all mods.
|
|
|
|
/// </summary>
|
|
|
|
public void DeselectAll()
|
|
|
|
{
|
|
|
|
pendingSelectionOperations.Clear();
|
|
|
|
|
2022-05-12 02:29:28 +08:00
|
|
|
foreach (var button in availableMods.Where(b => b.Active.Value && !b.Filtered.Value))
|
2022-02-20 01:45:04 +08:00
|
|
|
pendingSelectionOperations.Enqueue(() => button.Active.Value = false);
|
|
|
|
}
|
|
|
|
|
2022-04-18 02:32:45 +08:00
|
|
|
/// <summary>
|
2022-05-04 18:40:08 +08:00
|
|
|
/// Run any delayed selections (due to animation) immediately to leave mods in a good (final) state.
|
2022-04-18 02:32:45 +08:00
|
|
|
/// </summary>
|
2022-05-04 18:40:08 +08:00
|
|
|
public void FlushPendingSelections()
|
2022-04-18 02:32:45 +08:00
|
|
|
{
|
|
|
|
while (pendingSelectionOperations.TryDequeue(out var dequeuedAction))
|
|
|
|
dequeuedAction();
|
|
|
|
}
|
|
|
|
|
2022-02-20 01:33:13 +08:00
|
|
|
private class ToggleAllCheckbox : OsuCheckbox
|
|
|
|
{
|
|
|
|
private Color4 accentColour;
|
|
|
|
|
|
|
|
public Color4 AccentColour
|
|
|
|
{
|
|
|
|
get => accentColour;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
accentColour = value;
|
|
|
|
updateState();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private Color4 accentHoverColour;
|
|
|
|
|
|
|
|
public Color4 AccentHoverColour
|
|
|
|
{
|
|
|
|
get => accentHoverColour;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
accentHoverColour = value;
|
|
|
|
updateState();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-20 01:45:04 +08:00
|
|
|
private readonly ModColumn column;
|
|
|
|
|
|
|
|
public ToggleAllCheckbox(ModColumn column)
|
2022-02-20 01:33:13 +08:00
|
|
|
: base(false)
|
|
|
|
{
|
2022-02-20 01:45:04 +08:00
|
|
|
this.column = column;
|
2022-02-20 01:33:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void ApplyLabelParameters(SpriteText text)
|
|
|
|
{
|
|
|
|
base.ApplyLabelParameters(text);
|
|
|
|
text.Font = text.Font.With(weight: FontWeight.SemiBold);
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
updateState();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateState()
|
|
|
|
{
|
|
|
|
Nub.AccentColour = AccentColour;
|
|
|
|
Nub.GlowingAccentColour = AccentHoverColour;
|
|
|
|
Nub.GlowColour = AccentHoverColour.Opacity(0.2f);
|
|
|
|
}
|
2022-02-20 01:45:04 +08:00
|
|
|
|
|
|
|
protected override void OnUserChange(bool value)
|
|
|
|
{
|
|
|
|
if (value)
|
|
|
|
column.SelectAll();
|
|
|
|
else
|
|
|
|
column.DeselectAll();
|
|
|
|
}
|
2022-02-20 01:33:13 +08:00
|
|
|
}
|
2022-02-20 01:45:04 +08:00
|
|
|
|
|
|
|
#endregion
|
2022-02-20 20:40:52 +08:00
|
|
|
|
2022-02-20 21:10:35 +08:00
|
|
|
#region Keyboard selection support
|
|
|
|
|
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
|
|
|
{
|
2022-06-21 18:49:01 +08:00
|
|
|
if (e.ControlPressed || e.AltPressed || e.SuperPressed || e.Repeat)
|
|
|
|
return false;
|
2022-02-20 21:10:35 +08:00
|
|
|
|
2022-06-21 19:37:17 +08:00
|
|
|
return hotkeyHandler.HandleHotkeyPressed(e, availableMods);
|
2022-02-20 21:10:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
2022-02-20 00:52:16 +08:00
|
|
|
}
|
|
|
|
}
|