// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Cursor; namespace osu.Game.Screens.Edit { /// /// TODO: eventually make this inherit Screen and add a local screen stack inside the Editor. /// public abstract partial class EditorScreen : VisibilityContainer { [Resolved] protected EditorBeatmap EditorBeatmap { get; private set; } = null!; protected override Container Content => content; private readonly Container content; public readonly EditorScreenMode Type; protected EditorScreen(EditorScreenMode type) { Type = type; Anchor = Anchor.Centre; Origin = Anchor.Centre; RelativeSizeAxes = Axes.Both; InternalChild = content = new PopoverContainer { RelativeSizeAxes = Axes.Both }; } protected override void PopIn() => this.FadeIn(); protected override void PopOut() => this.FadeOut(); #region Clipboard operations public BindableBool CanCut { get; } = new BindableBool(); /// /// Performs a "cut to clipboard" operation appropriate for the given screen. /// /// /// Implementors are responsible for checking themselves. /// public virtual void Cut() { } public BindableBool CanCopy { get; } = new BindableBool(); /// /// Performs a "copy to clipboard" operation appropriate for the given screen. /// /// /// Implementors are responsible for checking themselves. /// public virtual void Copy() { } public BindableBool CanPaste { get; } = new BindableBool(); /// /// Performs a "paste from clipboard" operation appropriate for the given screen. /// /// /// Implementors are responsible for checking themselves. /// public virtual void Paste() { } #endregion } }