Add slight animation when revert to default button is displayed

This also fixes the transforms running too often (could make the initial
transform take longer than expected if adjusting a slider bar, for
instance).
This commit is contained in:
Dean Herbert 2024-07-08 15:50:27 +09:00
parent 9375f79879
commit 03bd6069d8
No known key found for this signature in database
1 changed files with 23 additions and 5 deletions

View File

@ -87,6 +87,7 @@ private void load()
protected override void LoadComplete() protected override void LoadComplete()
{ {
base.LoadComplete(); base.LoadComplete();
updateState(); updateState();
FinishTransforms(true); FinishTransforms(true);
} }
@ -95,33 +96,50 @@ protected override void LoadComplete()
protected override bool OnHover(HoverEvent e) protected override bool OnHover(HoverEvent e)
{ {
UpdateState(); updateHover();
return false; return false;
} }
protected override void OnHoverLost(HoverLostEvent e) protected override void OnHoverLost(HoverLostEvent e)
{ {
UpdateState(); updateHover();
} }
public void UpdateState() => Scheduler.AddOnce(updateState); public void UpdateState() => Scheduler.AddOnce(updateState);
private const double fade_duration = 200; private const double fade_duration = 200;
private bool? isDisplayed;
private void updateState() private void updateState()
{ {
if (current == null) if (current == null)
return; return;
Enabled.Value = !current.Disabled; // Avoid running animations if we are already in an up-to-date state.
if (Enabled.Value == !current.Disabled && isDisplayed == !current.IsDefault)
return;
if (current.IsDefault) Enabled.Value = !current.Disabled;
isDisplayed = !current.IsDefault;
updateHover();
if (isDisplayed == false)
this.FadeTo(0, fade_duration, Easing.OutQuint); this.FadeTo(0, fade_duration, Easing.OutQuint);
else if (current.Disabled) else if (current.Disabled)
this.FadeTo(0.2f, fade_duration, Easing.OutQuint); this.FadeTo(0.2f, fade_duration, Easing.OutQuint);
else else
this.FadeTo(1, fade_duration, Easing.OutQuint); {
icon.RotateTo(150).RotateTo(0, fade_duration * 2, Easing.OutQuint);
icon.ScaleTo(0.7f).ScaleTo(1, fade_duration * 2, Easing.OutQuint);
this.FadeTo(1, fade_duration, Easing.OutQuint);
}
}
private void updateHover()
{
if (IsHovered && Enabled.Value) if (IsHovered && Enabled.Value)
{ {
icon.RotateTo(-40, 500, Easing.OutQuint); icon.RotateTo(-40, 500, Easing.OutQuint);