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/OnlineIntegrationOptions.cs

38 lines
1.5 KiB
C#
Raw Normal View History

2016-11-09 11:38:40 +08:00
using osu.Framework;
using osu.Framework.Graphics;
2016-11-03 12:43:05 +08:00
using osu.Framework.Graphics.UserInterface;
2016-11-09 11:38:40 +08:00
using osu.Game.Configuration;
2016-11-03 12:43:05 +08:00
2016-11-08 10:24:41 +08:00
namespace osu.Game.Overlays.Options.Online
2016-11-03 12:43:05 +08:00
{
public class OnlineIntegrationOptions : OptionsSubsection
{
2016-11-09 11:38:40 +08:00
protected override string Header => "Integration";
private CheckBoxOption yahoo, msn, autoDirect, noVideo;
2016-11-03 12:43:05 +08:00
public OnlineIntegrationOptions()
{
Children = new Drawable[]
{
2016-11-09 11:38:40 +08:00
yahoo = new CheckBoxOption { LabelText = "Integrate with Yahoo! status display" },
msn = new CheckBoxOption { LabelText = "Integrate with MSN Live status display" },
autoDirect = new CheckBoxOption { LabelText = "Automatically start osu!direct downloads" },
noVideo = new CheckBoxOption { LabelText = "Prefer no-video downloads" },
2016-11-03 12:43:05 +08:00
};
2016-11-09 11:38:40 +08:00
}
protected override void Load(BaseGame game)
{
base.Load(game);
var osuGame = game as OsuGameBase;
if (osuGame != null)
{
yahoo.Bindable = osuGame.Config.GetBindable<bool>(OsuConfig.YahooIntegration);
msn.Bindable = osuGame.Config.GetBindable<bool>(OsuConfig.MsnIntegration);
autoDirect.Bindable = osuGame.Config.GetBindable<bool>(OsuConfig.AutomaticDownload);
noVideo.Bindable = osuGame.Config.GetBindable<bool>(OsuConfig.AutomaticDownloadNoVideo);
}
2016-11-03 12:43:05 +08:00
}
}
}