2022-01-06 08:15:42 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 08:43:03 +00:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2022-02-14 08:51:39 +00:00
|
|
|
namespace osu.Game.Graphics.Containers
|
2016-11-04 23:27:41 +00:00
|
|
|
{
|
2022-01-21 14:41:45 +00:00
|
|
|
/// <summary>
|
2022-02-04 02:45:12 +00:00
|
|
|
/// An <see cref="ExpandingContainer"/> with a long hover expansion delay.
|
2022-01-21 14:41:45 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <remarks>
|
|
|
|
/// Mostly used for buttons with explanatory labels, in which the label would display after a "long hover".
|
|
|
|
/// </remarks>
|
2022-02-04 02:45:12 +00:00
|
|
|
public partial class ExpandingButtonContainer : ExpandingContainer
|
2016-11-04 23:27:41 +00:00
|
|
|
{
|
2022-01-06 08:15:42 +00:00
|
|
|
protected ExpandingButtonContainer(float contractedWidth, float expandedWidth)
|
2022-01-21 14:41:45 +00:00
|
|
|
: base(contractedWidth, expandedWidth)
|
2016-11-04 23:27:41 +00:00
|
|
|
{
|
2017-07-13 07:55:48 +00:00
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2022-02-14 09:08:16 +00:00
|
|
|
protected override double HoverExpansionDelay => 400;
|
2022-01-06 13:56:56 +00:00
|
|
|
}
|
2017-11-21 02:49:42 +00:00
|
|
|
}
|