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/Sections/Online/InGameChatOptions.cs

55 lines
2.1 KiB
C#
Raw Normal View History

2016-12-06 17:56:20 +08:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-11-11 06:40:42 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
2016-11-11 06:40:42 +08:00
namespace osu.Game.Overlays.Options.Sections.Online
2016-11-03 12:43:05 +08:00
{
public class InGameChatOptions : OptionsSubsection
{
private OptionTextBox chatIgnoreList;
private OptionTextBox chatHighlightWords;
2016-11-11 06:40:42 +08:00
protected override string Header => "In-game Chat";
2016-11-09 11:38:40 +08:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
2016-11-03 12:43:05 +08:00
{
Children = new Drawable[]
{
new OsuCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Filter offensive words",
Bindable = config.GetBindable<bool>(OsuConfig.ChatFilter)
},
new OsuCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Filter foreign characters",
Bindable = config.GetBindable<bool>(OsuConfig.ChatRemoveForeign)
},
new OsuCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Log private messages",
Bindable = config.GetBindable<bool>(OsuConfig.LogPrivateMessages)
},
new OsuCheckbox
2016-11-11 06:40:42 +08:00
{
LabelText = "Block private messages from non-friends",
Bindable = config.GetBindable<bool>(OsuConfig.BlockNonFriendPM)
},
new OptionLabel { Text = "Chat ignore list (space-seperated list)" },
chatIgnoreList = new OptionTextBox {
RelativeSizeAxes = Axes.X,
Bindable = config.GetBindable<string>(OsuConfig.IgnoreList)
},
new OptionLabel { Text = "Chat highlight words (space-seperated list)" },
chatHighlightWords = new OptionTextBox {
RelativeSizeAxes = Axes.X,
Bindable = config.GetBindable<string>(OsuConfig.HighlightWords)
},
2016-11-03 12:43:05 +08:00
};
2016-11-09 11:38:40 +08:00
}
2016-11-03 12:43:05 +08:00
}
}