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
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2017-03-22 07:49:21 +08:00
|
|
|
|
using System.Collections.Generic;
|
2018-11-14 18:02:38 +09:00
|
|
|
|
using System.Linq;
|
2019-02-28 20:19:51 +09:00
|
|
|
|
using osu.Framework.Bindables;
|
2016-12-01 16:36:04 -05:00
|
|
|
|
using osu.Framework.Graphics;
|
2022-05-16 14:09:37 +09:00
|
|
|
|
using osu.Framework.Localisation;
|
2017-02-03 19:13:10 +09:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-05-15 10:55:29 +09:00
|
|
|
|
namespace osu.Game.Overlays.Settings
|
2016-12-01 16:36:04 -05:00
|
|
|
|
{
|
2017-05-15 10:55:29 +09:00
|
|
|
|
public partial class SettingsDropdown<T> : SettingsItem<T>
|
2016-12-01 16:36:04 -05:00
|
|
|
|
{
|
2018-11-14 18:02:38 +09:00
|
|
|
|
protected new OsuDropdown<T> Control => (OsuDropdown<T>)base.Control;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2018-11-14 18:02:38 +09:00
|
|
|
|
public IEnumerable<T> Items
|
2017-02-06 01:21:26 +01:00
|
|
|
|
{
|
2019-06-25 12:00:05 +09:00
|
|
|
|
get => Control.Items;
|
|
|
|
|
set => Control.Items = value;
|
2017-02-06 01:21:26 +01:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-02-28 20:19:51 +09:00
|
|
|
|
public IBindableList<T> ItemSource
|
|
|
|
|
{
|
2019-06-25 12:00:05 +09:00
|
|
|
|
get => Control.ItemSource;
|
|
|
|
|
set => Control.ItemSource = value;
|
2019-02-28 20:19:51 +09:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-16 14:09:37 +09:00
|
|
|
|
public override IEnumerable<LocalisableString> FilterTerms => base.FilterTerms.Concat(Control.Items.Select(i => (LocalisableString)i.ToString()));
|
2019-01-23 17:30:05 +09:00
|
|
|
|
|
2018-11-14 18:02:38 +09:00
|
|
|
|
protected sealed override Drawable CreateControl() => CreateDropdown();
|
|
|
|
|
|
2019-06-25 12:00:05 +09:00
|
|
|
|
protected virtual OsuDropdown<T> CreateDropdown() => new DropdownControl();
|
2018-11-14 18:02:38 +09:00
|
|
|
|
|
2021-10-13 21:57:34 +02:00
|
|
|
|
protected partial class DropdownControl : OsuDropdown<T>
|
2016-12-01 16:36:04 -05:00
|
|
|
|
{
|
2018-11-14 18:02:38 +09:00
|
|
|
|
public DropdownControl()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
}
|
2020-08-01 10:02:46 +03:00
|
|
|
|
|
|
|
|
|
protected override DropdownMenu CreateMenu() => base.CreateMenu().With(m => m.MaxHeight = 200);
|
2018-11-14 18:02:38 +09:00
|
|
|
|
}
|
2016-12-01 16:36:04 -05:00
|
|
|
|
}
|
2016-12-02 06:35:55 -05:00
|
|
|
|
}
|