osu/osu.Game/Overlays/Options/Online/InGameChatOptions.cs

56 lines
2.1 KiB
C#
Raw Normal View History

2016-11-10 22:40:42 +00: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 02:24:41 +00:00
namespace osu.Game.Overlays.Options.Online
2016-11-03 04:43:05 +00:00
{
public class InGameChatOptions : OptionsSubsection
{
private TextBoxOption chatIgnoreList;
private TextBoxOption chatHighlightWords;
2016-11-10 22:40:42 +00:00
protected override string Header => "In-game Chat";
2016-11-09 03:38:40 +00:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
2016-11-03 04:43:05 +00:00
{
Children = new Drawable[]
{
2016-11-10 22:40:42 +00: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 04:43:05 +00:00
new SpriteText { Text = "Chat ignore list (space-seperated list)" },
chatIgnoreList = new TextBoxOption {
Height = 20,
RelativeSizeAxes = Axes.X,
Bindable = config.GetBindable<string>(OsuConfig.IgnoreList)
},
2016-11-03 04:43:05 +00:00
new SpriteText { Text = "Chat highlight words (space-seperated list)" },
chatHighlightWords = new TextBoxOption {
Height = 20,
RelativeSizeAxes = Axes.X,
Bindable = config.GetBindable<string>(OsuConfig.HighlightWords)
},
2016-11-03 04:43:05 +00:00
};
2016-11-09 03:38:40 +00:00
}
2016-11-03 04:43:05 +00:00
}
}