1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 21:17:18 +08:00

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

39 lines
1.3 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-04-13 18:19:50 +09:00
using osu.Framework.Allocation;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Localisation;
using osu.Game.Extensions;
using osu.Game.Graphics;
using osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Parts
{
/// <summary>
/// The part of the timeline that displays bookmarks.
/// </summary>
public partial class BookmarkPart : TimelinePart
{
protected override void LoadBeatmap(EditorBeatmap beatmap)
{
base.LoadBeatmap(beatmap);
foreach (int bookmark in beatmap.BeatmapInfo.Bookmarks)
Add(new BookmarkVisualisation(bookmark));
}
2018-04-13 18:19:50 +09:00
private partial class BookmarkVisualisation : PointVisualisation, IHasTooltip
{
public BookmarkVisualisation(double startTime)
: base(startTime)
{
}
2018-04-13 18:19:50 +09:00
[BackgroundDependencyLoader]
private void load(OsuColour colours) => Colour = colours.Blue;
public LocalisableString TooltipText => $"{StartTime.ToEditorFormattedString()} bookmark";
}
}
}