2016-11-03 10:49:26 +08:00
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
|
|
|
{
|
|
|
|
|
public class LayoutOptions : OptionsSubsection
|
|
|
|
|
{
|
2016-11-04 11:01:11 +08:00
|
|
|
|
protected override string Header => "Layout";
|
|
|
|
|
|
2016-11-03 10:49:26 +08:00
|
|
|
|
public LayoutOptions()
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SpriteText { Text = "Resolution: TODO dropdown" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Fullscreen mode" },
|
|
|
|
|
new BasicCheckBox { LabelText = "Letterboxing" },
|
|
|
|
|
new SpriteText { Text = "Horizontal position" },
|
|
|
|
|
new SpriteText { Text = "TODO: slider" },
|
|
|
|
|
new SpriteText { Text = "Vertical position" },
|
|
|
|
|
new SpriteText { Text = "TODO: slider" },
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|