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