1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 00:27:26 +08:00
osu-lazer/osu.Game/Overlays/Options/Online/InGameChatOptions.cs

46 lines
1.7 KiB
C#
Raw Normal View History

2016-11-11 06:40:42 +08:00
using osu.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
using osu.Game.Configuration;
2016-11-08 10:24:41 +08:00
namespace osu.Game.Overlays.Options.Online
2016-11-03 12:43:05 +08:00
{
public class InGameChatOptions : OptionsSubsection
{
2016-11-11 06:40:42 +08:00
protected override string Header => "In-game Chat";
2016-11-09 11:38:40 +08:00
2016-11-11 06:40:42 +08:00
[Initializer]
private void Load(OsuConfigManager config)
2016-11-03 12:43:05 +08:00
{
Children = new Drawable[]
{
2016-11-11 06:40:42 +08:00
new CheckBoxOption
{
LabelText = "Filter offensive words",
Bindable = config.GetBindable<bool>(OsuConfig.ChatFilter)
},
new CheckBoxOption
{
LabelText = "Filter foreign characters",
Bindable = config.GetBindable<bool>(OsuConfig.ChatRemoveForeign)
},
new CheckBoxOption
{
LabelText = "Log private messages",
Bindable = config.GetBindable<bool>(OsuConfig.LogPrivateMessages)
},
new CheckBoxOption
{
LabelText = "Block private messages from non-friends",
Bindable = config.GetBindable<bool>(OsuConfig.BlockNonFriendPM)
},
2016-11-03 12:43:05 +08:00
new SpriteText { Text = "Chat ignore list (space-seperated list)" },
new TextBox { Height = 20, RelativeSizeAxes = Axes.X },
new SpriteText { Text = "Chat highlight words (space-seperated list)" },
new TextBox { Height = 20, RelativeSizeAxes = Axes.X },
};
}
}
}