1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 19:27:31 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/ScreenBreadcrumbControl.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.6 KiB
C#
Raw Normal View History

// 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.
2018-05-11 08:35:26 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2018-05-11 08:35:26 +08:00
using System.Linq;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics.UserInterface;
2018-05-11 08:35:26 +08:00
using osu.Framework.Screens;
namespace osu.Game.Graphics.UserInterface
{
2018-05-15 20:08:55 +08:00
/// <summary>
2019-04-25 16:36:17 +08:00
/// A <see cref="BreadcrumbControl{IScreen}"/> which follows the active screen (and allows navigation) in a <see cref="Screen"/> stack.
2018-05-15 20:08:55 +08:00
/// </summary>
2019-01-23 19:52:00 +08:00
public class ScreenBreadcrumbControl : BreadcrumbControl<IScreen>
2018-05-11 08:35:26 +08:00
{
2019-01-23 19:52:00 +08:00
public ScreenBreadcrumbControl(ScreenStack stack)
2018-05-11 08:35:26 +08:00
{
2019-01-23 19:52:00 +08:00
stack.ScreenPushed += onPushed;
stack.ScreenExited += onExited;
2018-05-11 08:35:26 +08:00
if (stack.CurrentScreen != null)
onPushed(null, stack.CurrentScreen);
}
protected override void SelectTab(TabItem<IScreen> tab)
{
// override base method to prevent current item from being changed on click.
// depend on screen push/exit to change current item instead.
tab.Value.MakeCurrent();
2018-05-11 08:35:26 +08:00
}
2019-01-23 19:52:00 +08:00
private void onPushed(IScreen lastScreen, IScreen newScreen)
2018-05-11 08:35:26 +08:00
{
2019-01-23 19:52:00 +08:00
AddItem(newScreen);
Current.Value = newScreen;
2018-05-11 08:35:26 +08:00
}
2019-01-23 19:52:00 +08:00
private void onExited(IScreen lastScreen, IScreen newScreen)
2018-05-11 08:35:26 +08:00
{
if (newScreen != null)
Current.Value = newScreen;
2019-01-23 19:52:00 +08:00
Items.ToList().SkipWhile(s => s != Current.Value).Skip(1).ForEach(RemoveItem);
2018-05-11 08:35:26 +08:00
}
}
}