2016-11-08 10:28:06 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-11-03 12:43:05 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
|
2016-11-08 10:24:41 +08:00
|
|
|
|
namespace osu.Game.Overlays.Options.Online
|
2016-11-03 12:43:05 +08:00
|
|
|
|
{
|
|
|
|
|
public class AlertsPrivacyOptions : OptionsSubsection
|
|
|
|
|
{
|
2016-11-04 11:01:11 +08:00
|
|
|
|
protected override string Header => "Alerts & Privacy";
|
|
|
|
|
|
2016-11-03 12:43:05 +08:00
|
|
|
|
public AlertsPrivacyOptions()
|
|
|
|
|
{
|
|
|
|
|
// TODO: this should probably be split into Alerts and Privacy
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new BasicCheckBox { LabelText = "Chat ticker" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Automatically hide chat during gameplay" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Show a notification popup when someone says your name" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Show chat message notifications" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Play a sound when someone says your name" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Share your city location with others" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Show spectators" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Automatically link beatmaps to spectators" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Show notification popups instantly during gameplay" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Show notification popups when friends change status" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Allow multiplayer game invites from all users" },
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|