2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio.Track;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Components
|
|
|
|
|
{
|
|
|
|
|
public class BottomBarContainer : Container
|
|
|
|
|
{
|
|
|
|
|
private const float corner_radius = 5;
|
|
|
|
|
private const float contents_padding = 15;
|
|
|
|
|
|
2018-05-23 16:37:39 +08:00
|
|
|
|
protected readonly IBindable<WorkingBeatmap> Beatmap = new Bindable<WorkingBeatmap>();
|
2020-09-24 18:01:28 +08:00
|
|
|
|
|
|
|
|
|
protected readonly IBindable<Track> Track = new Bindable<Track>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
private readonly Drawable background;
|
|
|
|
|
private readonly Container content;
|
|
|
|
|
|
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
|
|
|
|
|
public BottomBarContainer()
|
|
|
|
|
{
|
|
|
|
|
Masking = true;
|
|
|
|
|
CornerRadius = corner_radius;
|
|
|
|
|
|
|
|
|
|
InternalChildren = new[]
|
|
|
|
|
{
|
|
|
|
|
background = new Box { RelativeSizeAxes = Axes.Both },
|
|
|
|
|
content = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Horizontal = contents_padding },
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-09-24 18:01:28 +08:00
|
|
|
|
private void load(IBindable<WorkingBeatmap> beatmap, OsuColour colours, EditorClock clock)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-05-23 16:37:39 +08:00
|
|
|
|
Beatmap.BindTo(beatmap);
|
2020-09-24 18:01:28 +08:00
|
|
|
|
Track.BindTo(clock.Track);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
background.Colour = colours.Gray1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|