1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 12:47:25 +08:00
osu-lazer/osu.Game/Screens/Edit/EditorScreen.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
2.4 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
2018-04-13 17:19:50 +08:00
2018-11-06 17:28:22 +08:00
namespace osu.Game.Screens.Edit
{
2018-03-14 14:18:21 +08:00
/// <summary>
2019-10-09 15:04:58 +08:00
/// TODO: eventually make this inherit Screen and add a local screen stack inside the Editor.
2018-03-14 14:18:21 +08:00
/// </summary>
public abstract partial class EditorScreen : VisibilityContainer
{
[Resolved]
protected EditorBeatmap EditorBeatmap { get; private set; } = null!;
2017-10-02 08:34:51 +08:00
protected override Container<Drawable> Content => content;
private readonly Container content;
2018-04-13 17:19:50 +08:00
public readonly EditorScreenMode Type;
protected EditorScreen(EditorScreenMode type)
{
Type = type;
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
RelativeSizeAxes = Axes.Both;
2018-04-13 17:19:50 +08:00
InternalChild = content = new PopoverContainer { RelativeSizeAxes = Axes.Both };
}
2018-04-13 17:19:50 +08:00
protected override void PopIn() => this.FadeIn();
2018-04-13 17:19:50 +08:00
protected override void PopOut() => this.FadeOut();
#region Clipboard operations
public BindableBool CanCut { get; } = new BindableBool();
/// <summary>
/// Performs a "cut to clipboard" operation appropriate for the given screen.
/// </summary>
/// <remarks>
/// Implementors are responsible for checking <see cref="CanCut"/> themselves.
/// </remarks>
public virtual void Cut()
{
}
public BindableBool CanCopy { get; } = new BindableBool();
/// <summary>
/// Performs a "copy to clipboard" operation appropriate for the given screen.
/// </summary>
/// <remarks>
/// Implementors are responsible for checking <see cref="CanCopy"/> themselves.
/// </remarks>
public virtual void Copy()
{
}
public BindableBool CanPaste { get; } = new BindableBool();
/// <summary>
/// Performs a "paste from clipboard" operation appropriate for the given screen.
/// </summary>
/// <remarks>
/// Implementors are responsible for checking <see cref="CanPaste"/> themselves.
/// </remarks>
public virtual void Paste()
{
}
#endregion
}
}