2016-11-09 11:38:40 +08:00
|
|
|
|
using osu.Framework;
|
2016-11-11 06:40:42 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-11-09 11:38:40 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-11-08 11:15:48 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2016-11-09 11:38:40 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2016-11-08 11:15:48 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Options.Online
|
|
|
|
|
{
|
|
|
|
|
public class NotificationsOptions : OptionsSubsection
|
|
|
|
|
{
|
|
|
|
|
protected override string Header => "Notifications";
|
2016-11-09 11:38:40 +08:00
|
|
|
|
|
2016-11-11 06:40:42 +08:00
|
|
|
|
[Initializer]
|
|
|
|
|
private void Load(OsuConfigManager config)
|
2016-11-08 11:15:48 +08:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2016-11-11 06:40:42 +08:00
|
|
|
|
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)
|
|
|
|
|
},
|
2016-11-08 11:15:48 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|