123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- #nullable enable
- using Terminal.Gui;
- using Attribute = Terminal.Gui.Attribute;
- /// <summary>
- /// Adornments are a special form of <see cref="View"/> that appear outside the <see cref="View.Viewport"/>:
- /// <see cref="Margin"/>, <see cref="Border"/>, and <see cref="Padding"/>. They are defined using the
- /// <see cref="Thickness"/> class, which specifies the thickness of the sides of a rectangle.
- /// </summary>
- /// <remarsk>
- /// <para>
- /// Each of <see cref="Margin"/>, <see cref="Border"/>, and <see cref="Padding"/> has slightly different
- /// behavior relative to <see cref="ColorScheme"/>, <see cref="View.SetFocus()"/>, keyboard input, and
- /// mouse input. Each can be customized by manipulating their Subviews.
- /// </para>
- /// </remarsk>
- public class Adornment : View, IDesignable
- {
- /// <inheritdoc/>
- public Adornment ()
- {
- /* Do nothing; A parameter-less constructor is required to support all views unit tests. */
- }
- /// <summary>Constructs a new adornment for the view specified by <paramref name="parent"/>.</summary>
- /// <param name="parent"></param>
- public Adornment (View parent)
- {
- // By default, Adornments can't get focus; has to be enabled specifically.
- CanFocus = false;
- TabStop = TabBehavior.NoStop;
- Parent = parent;
- }
- /// <summary>The Parent of this Adornment (the View this Adornment surrounds).</summary>
- /// <remarks>
- /// Adornments are distinguished from typical View classes in that they are not sub-views, but have a parent/child
- /// relationship with their containing View.
- /// </remarks>
- public View? Parent { get; set; }
- #region Thickness
- /// <summary>
- /// Gets or sets whether the Adornment will draw diagnostic information. This is a bit-field of
- /// <see cref="ViewDiagnosticFlags"/>.
- /// </summary>
- /// <remarks>
- /// The <see cref="View.Diagnostics"/> static property is used as the default value for this property.
- /// </remarks>
- public new ViewDiagnosticFlags Diagnostics { get; set; } = View.Diagnostics;
- private Thickness _thickness = Thickness.Empty;
- /// <summary>Defines the rectangle that the <see cref="Adornment"/> will use to draw its content.</summary>
- public Thickness Thickness
- {
- get => _thickness;
- set
- {
- Thickness current = _thickness;
- _thickness = value;
- if (current != _thickness)
- {
- Parent?.SetAdornmentFrames ();
- SetNeedsLayout ();
- SetNeedsDraw ();
- OnThicknessChanged ();
- }
- }
- }
- /// <summary>Fired whenever the <see cref="Thickness"/> property changes.</summary>
- public event EventHandler? ThicknessChanged;
- /// <summary>Called whenever the <see cref="Thickness"/> property changes.</summary>
- public void OnThicknessChanged () { ThicknessChanged?.Invoke (this, EventArgs.Empty); }
- #endregion Thickness
- #region View Overrides
- /// <summary>
- /// Adornments cannot be used as sub-views (see <see cref="Parent"/>); setting this property will throw
- /// <see cref="InvalidOperationException"/>.
- /// </summary>
- /// <remarks>
- /// While there are no real use cases for an Adornment being a subview, it is not explicitly dis-allowed to support
- /// testing. E.g. in AllViewsTester.
- /// </remarks>
- public override View? SuperView
- {
- get => base.SuperView!;
- set => throw new InvalidOperationException (@"Adornments can not be Subviews or have SuperViews. Use Parent instead.");
- }
- /// <summary>
- /// Gets the rectangle that describes the area of the Adornment. The Location is always (0,0).
- /// The size is the size of the <see cref="View.Frame"/>.
- /// </summary>
- /// <remarks>
- /// The Viewport of an Adornment cannot be modified. Attempting to set this property will throw an
- /// <see cref="InvalidOperationException"/>.
- /// </remarks>
- public override Rectangle Viewport
- {
- get => base.Viewport;
- set => throw new InvalidOperationException (@"The Viewport of an Adornment cannot be modified.");
- }
- /// <inheritdoc/>
- public override Rectangle FrameToScreen ()
- {
- if (Parent is null)
- {
- // While there are no real use cases for an Adornment being a subview, we support it for
- // testing. E.g. in AllViewsTester.
- if (SuperView is { })
- {
- Point super = SuperView.ViewportToScreen (Frame.Location);
- return new (super, Frame.Size);
- }
- return Frame;
- }
- // Adornments are *Children* of a View, not SubViews. Thus View.FrameToScreen will not work.
- // To get the screen-relative coordinates of an Adornment, we need get the parent's Frame
- // in screen coords, ...
- Rectangle parentScreen = Parent.FrameToScreen ();
- // ...and add our Frame location to it.
- return new (new (parentScreen.X + Frame.X, parentScreen.Y + Frame.Y), Frame.Size);
- }
- /// <inheritdoc/>
- public override Point ScreenToFrame (in Point location)
- {
- View? parentOrSuperView = Parent;
- if (parentOrSuperView is null)
- {
- // While there are no real use cases for an Adornment being a subview, we support it for
- // testing. E.g. in AllViewsTester.
- parentOrSuperView = SuperView;
- if (parentOrSuperView is null)
- {
- return Point.Empty;
- }
- }
- return parentOrSuperView.ScreenToFrame (new (location.X - Frame.X, location.Y - Frame.Y));
- }
- /// <summary>
- /// Called when the <see cref="Thickness"/> of the Adornment is to be cleared.
- /// </summary>
- /// <param name="viewport"></param>
- /// <returns><see langword="true"/> to stop further clearing.</returns>
- protected override bool OnClearingViewport (Rectangle viewport)
- {
- if (Thickness == Thickness.Empty)
- {
- return true;
- }
- Attribute normalAttr = GetNormalColor ();
- SetAttribute (normalAttr);
- // This just draws/clears the thickness, not the insides.
- Thickness.Draw (ViewportToScreen (viewport), Diagnostics, ToString ());
- return true;
- }
- /// <inheritdoc/>
- protected override bool OnDrawingText (Rectangle viewport) { return Thickness == Thickness.Empty; }
- /// <inheritdoc/>
- protected override bool OnDrawingSubviews (Rectangle viewport) { return Thickness == Thickness.Empty; }
- /// <summary>Does nothing for Adornment</summary>
- /// <returns></returns>
- protected override bool OnRenderingLineCanvas () { return true; }
- /// <summary>
- /// Adornments only render to their <see cref="Parent"/>'s or Parent's SuperView's LineCanvas, so setting this
- /// property throws an <see cref="InvalidOperationException"/>.
- /// </summary>
- public override bool SuperViewRendersLineCanvas
- {
- get => false;
- set => throw new InvalidOperationException (@"Adornment can only render to their Parent or Parent's Superview.");
- }
- /// <inheritdoc/>
- protected override void OnDrawComplete () { }
- /// <summary>
- /// Indicates whether the specified Parent's SuperView-relative coordinates are within the Adornment's Thickness.
- /// </summary>
- /// <remarks>
- /// The <paramref name="location"/> is relative to the PARENT's SuperView.
- /// </remarks>
- /// <param name="location"></param>
- /// <returns>
- /// <see langword="true"/> if the specified Parent's SuperView-relative coordinates are within the Adornment's
- /// Thickness.
- /// </returns>
- public override bool Contains (in Point location)
- {
- View? parentOrSuperView = Parent;
- if (parentOrSuperView is null)
- {
- // While there are no real use cases for an Adornment being a subview, we support it for
- // testing. E.g. in AllViewsTester.
- parentOrSuperView = SuperView;
- if (parentOrSuperView is null)
- {
- return false;
- }
- }
- Rectangle outside = Frame;
- outside.Offset (parentOrSuperView.Frame.Location);
- return Thickness.Contains (outside, location);
- }
- #endregion View Overrides
- /// <inheritdoc/>
- bool IDesignable.EnableForDesign ()
- {
- // This enables AllViewsTester to show something useful.
- Thickness = new (3);
- Frame = new (0, 0, 10, 10);
- Diagnostics = ViewDiagnosticFlags.Thickness;
- return true;
- }
- }
|