2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
2020-09-03 16:28:53 +09:00
|
|
|
|
using osu.Framework.Allocation;
|
2023-11-24 13:16:04 +09:00
|
|
|
|
using osu.Game.Graphics;
|
2020-06-14 11:22:38 -07:00
|
|
|
|
using osu.Game.Input.Bindings;
|
2022-10-11 09:30:32 +02:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Toolbar
|
|
|
|
|
{
|
2022-11-24 14:32:20 +09:00
|
|
|
|
public partial class ToolbarHomeButton : ToolbarButton
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
public ToolbarHomeButton()
|
|
|
|
|
{
|
2024-01-14 21:09:49 +01:00
|
|
|
|
ButtonContent.Width *= 1.4f;
|
2020-09-03 16:28:53 +09:00
|
|
|
|
Hotkey = GlobalAction.Home;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2022-10-11 10:59:07 +02:00
|
|
|
|
TooltipMain = ToolbarStrings.HomeHeaderTitle;
|
|
|
|
|
TooltipSub = ToolbarStrings.HomeHeaderDescription;
|
2023-12-27 15:35:03 +01:00
|
|
|
|
SetIcon(OsuIcon.Home);
|
2020-06-14 11:22:38 -07:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|