mirror of
https://github.com/osukey/osukey.git
synced 2025-05-07 06:37:18 +09:00
51 lines
1.9 KiB
C#
51 lines
1.9 KiB
C#
using osu.Framework;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Configuration;
|
|
|
|
namespace osu.Game.Overlays.Options.Online
|
|
{
|
|
public class NotificationsOptions : OptionsSubsection
|
|
{
|
|
protected override string Header => "Notifications";
|
|
|
|
[Initializer]
|
|
private void Load(OsuConfigManager config)
|
|
{
|
|
Children = new Drawable[]
|
|
{
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Enable chat ticker",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.Ticker)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Show a notification popup when someone says your name",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.ChatHighlightName)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Show chat message notifications",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.ChatMessageNotification)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Play a sound when someone says your name",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.ChatAudibleHighlight)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Show notification popups instantly during gameplay",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.PopupDuringGameplay)
|
|
},
|
|
new CheckBoxOption
|
|
{
|
|
LabelText = "Show notification popups when friends change status",
|
|
Bindable = config.GetBindable<bool>(OsuConfig.NotifyFriends)
|
|
},
|
|
};
|
|
}
|
|
}
|
|
} |