12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496 |
- using System.ComponentModel;
- using System.Diagnostics;
- namespace Terminal.Gui;
- /// <summary>
- /// <para>Indicates the LayoutStyle for the <see cref="View"/>.</para>
- /// <para>
- /// If Absolute, the <see cref="View.X"/>, <see cref="View.Y"/>, <see cref="View.Width"/>, and
- /// <see cref="View.Height"/> objects are all absolute values and are not relative. The position and size of the
- /// view is described by <see cref="View.Frame"/>.
- /// </para>
- /// <para>
- /// If Computed, one or more of the <see cref="View.X"/>, <see cref="View.Y"/>, <see cref="View.Width"/>, or
- /// <see cref="View.Height"/> objects are relative to the <see cref="View.SuperView"/> and are computed at layout
- /// time.
- /// </para>
- /// </summary>
- public enum LayoutStyle
- {
- /// <summary>
- /// Indicates the <see cref="View.X"/>, <see cref="View.Y"/>, <see cref="View.Width"/>, and
- /// <see cref="View.Height"/> objects are all absolute values and are not relative. The position and size of the view
- /// is described by <see cref="View.Frame"/>.
- /// </summary>
- Absolute,
- /// <summary>
- /// Indicates one or more of the <see cref="View.X"/>, <see cref="View.Y"/>, <see cref="View.Width"/>, or
- /// <see cref="View.Height"/> objects are relative to the <see cref="View.SuperView"/> and are computed at layout time.
- /// The position and size of the view will be computed based on these objects at layout time. <see cref="View.Frame"/>
- /// will provide the absolute computed values.
- /// </summary>
- Computed
- }
- public partial class View
- {
- private bool _autoSize;
- private Rectangle _frame;
- private Dim _height = Dim.Sized (0);
- private Dim _width = Dim.Sized (0);
- private Pos _x = Pos.At (0);
- private Pos _y = Pos.At (0);
- /// <summary>
- /// Gets or sets a flag that determines whether the View will be automatically resized to fit the <see cref="Text"/>
- /// within <see cref="Bounds"/>.
- /// <para>
- /// The default is <see langword="false"/>. Set to <see langword="true"/> to turn on AutoSize. If
- /// <see langword="true"/> then <see cref="Width"/> and <see cref="Height"/> will be used if <see cref="Text"/> can
- /// fit; if <see cref="Text"/> won't fit the view will be resized as needed.
- /// </para>
- /// <para>
- /// If <see cref="AutoSize"/> is set to <see langword="true"/> then <see cref="Width"/> and <see cref="Height"/>
- /// will be changed to <see cref="Dim.DimAbsolute"/> if they are not already.
- /// </para>
- /// <para>
- /// If <see cref="AutoSize"/> is set to <see langword="false"/> then <see cref="Width"/> and <see cref="Height"/>
- /// will left unchanged.
- /// </para>
- /// </summary>
- public virtual bool AutoSize
- {
- get => _autoSize;
- set
- {
- if (Width != Dim.Sized (0) && Height != Dim.Sized (0))
- {
- Debug.WriteLine (
- $@"WARNING: {GetType ().Name} - Setting {nameof (AutoSize)} invalidates {nameof (Width)} and {nameof (Height)}."
- );
- }
- bool v = ResizeView (value);
- TextFormatter.AutoSize = v;
- if (_autoSize != v)
- {
- _autoSize = v;
- TextFormatter.NeedsFormat = true;
- UpdateTextFormatterText ();
- OnResizeNeeded ();
- }
- }
- }
- /// <summary>
- /// The adornment (specified as a <see cref="Thickness"/>) inside of the view that offsets the
- /// <see cref="Bounds"/> from the <see cref="Margin"/>. The Border provides the space for a visual border (drawn using
- /// line-drawing glyphs) and the Title. The Border expands inward; in other words if `Border.Thickness.Top == 2` the
- /// border and title will take up the first row and the second row will be filled with spaces.
- /// </summary>
- /// <remarks>
- /// <para><see cref="BorderStyle"/> provides a simple helper for turning a simple border frame on or off.</para>
- /// <para>
- /// The adornments (<see cref="Margin"/>, <see cref="Border"/>, and <see cref="Padding"/>) are not part of the
- /// View's content and are not clipped by the View's Clip Area.
- /// </para>
- /// <para>
- /// Changing the size of a frame (<see cref="Margin"/>, <see cref="Border"/>, or <see cref="Padding"/>) will
- /// change the size of the <see cref="Frame"/> and trigger <see cref="LayoutSubviews"/> to update the layout of the
- /// <see cref="SuperView"/> and its <see cref="Subviews"/>.
- /// </para>
- /// </remarks>
- public Border Border { get; private set; }
- /// <summary>Gets or sets whether the view has a one row/col thick border.</summary>
- /// <remarks>
- /// <para>
- /// This is a helper for manipulating the view's <see cref="Border"/>. Setting this property to any value other
- /// than <see cref="LineStyle.None"/> is equivalent to setting <see cref="Border"/>'s
- /// <see cref="Adornment.Thickness"/> to `1` and <see cref="BorderStyle"/> to the value.
- /// </para>
- /// <para>
- /// Setting this property to <see cref="LineStyle.None"/> is equivalent to setting <see cref="Border"/>'s
- /// <see cref="Adornment.Thickness"/> to `0` and <see cref="BorderStyle"/> to <see cref="LineStyle.None"/>.
- /// </para>
- /// <para>For more advanced customization of the view's border, manipulate see <see cref="Border"/> directly.</para>
- /// </remarks>
- public LineStyle BorderStyle
- {
- get => Border.LineStyle;
- set
- {
- if (value != LineStyle.None)
- {
- Border.Thickness = new Thickness (1);
- }
- else
- {
- Border.Thickness = new Thickness (0);
- }
- Border.LineStyle = value;
- LayoutAdornments ();
- SetNeedsLayout ();
- }
- }
- /// <summary>
- /// The bounds represent the View-relative rectangle used for this view; the area inside of the view where
- /// subviews and content are presented.
- /// </summary>
- /// <value>The rectangle describing the location and size of the area where the views' subviews and content are drawn.</value>
- /// <remarks>
- /// <para>
- /// If <see cref="LayoutStyle"/> is <see cref="LayoutStyle.Computed"/> the value of Bounds is indeterminate until
- /// the view has been initialized ( <see cref="IsInitialized"/> is true) and <see cref="LayoutSubviews"/> has been
- /// called.
- /// </para>
- /// <para>
- /// Updates to the Bounds updates <see cref="Frame"/>, and has the same effect as updating the
- /// <see cref="Frame"/>.
- /// </para>
- /// <para>
- /// Altering the Bounds will eventually (when the view is next laid out) cause the
- /// <see cref="LayoutSubview(View, Rectangle)"/> and <see cref="OnDrawContent(Rectangle)"/> methods to be called.
- /// </para>
- /// <para>
- /// Because <see cref="Bounds"/> coordinates are relative to the upper-left corner of the <see cref="View"/>, the
- /// coordinates of the upper-left corner of the rectangle returned by this property are (0,0). Use this property to
- /// obtain the size of the area of the view for tasks such as drawing the view's contents.
- /// </para>
- /// </remarks>
- public virtual Rectangle Bounds
- {
- get
- {
- #if DEBUG
- if (LayoutStyle == LayoutStyle.Computed && !IsInitialized)
- {
- Debug.WriteLine (
- $"WARNING: Bounds is being accessed before the View has been initialized. This is likely a bug in {this}"
- );
- }
- #endif // DEBUG
- // BUGBUG: I think there's a bug here. This should be && not ||
- if (Margin is null || Border is null || Padding is null)
- {
- return new Rectangle (default (Point), Frame.Size);
- }
- int width = Math.Max (
- 0,
- Frame.Size.Width
- - Margin.Thickness.Horizontal
- - Border.Thickness.Horizontal
- - Padding.Thickness.Horizontal
- );
- int height = Math.Max (
- 0,
- Frame.Size.Height - Margin.Thickness.Vertical - Border.Thickness.Vertical - Padding.Thickness.Vertical
- );
- return new Rectangle (Point.Empty, new Size (width, height));
- }
- set
- {
- // TODO: Should we enforce Bounds.X/Y == 0? The code currently ignores value.X/Y which is
- // TODO: correct behavior, but is silent. Perhaps an exception?
- #if DEBUG
- if (value.Location != Point.Empty)
- {
- Debug.WriteLine (
- $"WARNING: Bounds.Location must always be 0,0. Location ({value.Location}) is ignored. {this}"
- );
- }
- #endif // DEBUG
- Frame = new Rectangle (
- Frame.Location,
- new Size (
- value.Size.Width
- + Margin.Thickness.Horizontal
- + Border.Thickness.Horizontal
- + Padding.Thickness.Horizontal,
- value.Size.Height
- + Margin.Thickness.Vertical
- + Border.Thickness.Vertical
- + Padding.Thickness.Vertical
- )
- );
- }
- }
- /// <summary>Gets or sets the absolute location and dimension of the view.</summary>
- /// <value>
- /// The rectangle describing absolute location and dimension of the view, in coordinates relative to the
- /// <see cref="SuperView"/>'s <see cref="Bounds"/>.
- /// </value>
- /// <remarks>
- /// <para>Frame is relative to the <see cref="SuperView"/>'s <see cref="Bounds"/>.</para>
- /// <para>
- /// Setting Frame will set <see cref="X"/>, <see cref="Y"/>, <see cref="Width"/>, and <see cref="Height"/> to the
- /// values of the corresponding properties of the <paramref name="value"/> parameter.
- /// </para>
- /// <para>This causes <see cref="LayoutStyle"/> to be <see cref="LayoutStyle.Absolute"/>.</para>
- /// <para>
- /// Altering the Frame will eventually (when the view hierarchy is next laid out via see
- /// cref="LayoutSubviews"/>) cause <see cref="LayoutSubview(View, Rectangle)"/> and <see cref="OnDrawContent(Rectangle)"/>
- /// methods to be called.
- /// </para>
- /// </remarks>
- public Rectangle Frame
- {
- get => _frame;
- set
- {
- _frame = new Rectangle (value.X, value.Y, Math.Max (value.Width, 0), Math.Max (value.Height, 0));
- // If Frame gets set, by definition, the View is now LayoutStyle.Absolute, so
- // set all Pos/Dim to Absolute values.
- _x = _frame.X;
- _y = _frame.Y;
- _width = _frame.Width;
- _height = _frame.Height;
- // TODO: Figure out if the below can be optimized.
- if (IsInitialized /*|| LayoutStyle == LayoutStyle.Absolute*/)
- {
- LayoutAdornments ();
- SetTextFormatterSize ();
- SetNeedsLayout ();
- SetNeedsDisplay ();
- }
- }
- }
- /// <summary>Gets or sets the height dimension of the view.</summary>
- /// <value>The <see cref="Dim"/> object representing the height of the view (the number of rows).</value>
- /// <remarks>
- /// <para>
- /// If set to a relative value (e.g. <see cref="Dim.Fill(int)"/>) the value is indeterminate until the view has
- /// been initialized ( <see cref="IsInitialized"/> is true) and <see cref="SetRelativeLayout(Rectangle)"/> has been
- /// called.
- /// </para>
- /// <para>
- /// Changing this property will eventually (when the view is next drawn) cause the
- /// <see cref="LayoutSubview(View, Rectangle)"/> and <see cref="OnDrawContent(Rectangle)"/> methods to be called.
- /// </para>
- /// <para>
- /// Changing this property will cause <see cref="Frame"/> to be updated. If the new value is not of type
- /// <see cref="Dim.DimAbsolute"/> the <see cref="LayoutStyle"/> will change to <see cref="LayoutStyle.Computed"/>.
- /// </para>
- /// <para>The default value is <c>Dim.Sized (0)</c>.</para>
- /// </remarks>
- public Dim Height
- {
- get => VerifyIsInitialized (_height, nameof (Height));
- set
- {
- _height = value ?? throw new ArgumentNullException (nameof (value), @$"{nameof (Height)} cannot be null");
- if (AutoSize)
- {
- throw new InvalidOperationException (@$"Must set AutoSize to false before setting {nameof (Height)}.");
- }
- //if (ValidatePosDim) {
- bool isValidNewAutoSize = AutoSize && IsValidAutoSizeHeight (_height);
- if (IsAdded && AutoSize && !isValidNewAutoSize)
- {
- throw new InvalidOperationException (
- @$"Must set AutoSize to false before setting the {nameof (Height)}."
- );
- }
- //}
- OnResizeNeeded ();
- }
- }
- /// <summary>
- /// Controls how the View's <see cref="Frame"/> is computed during <see cref="LayoutSubviews"/>. If the style is
- /// set to <see cref="LayoutStyle.Absolute"/>, LayoutSubviews does not change the <see cref="Frame"/>. If the style is
- /// <see cref="LayoutStyle.Computed"/> the <see cref="Frame"/> is updated using the <see cref="X"/>, <see cref="Y"/>,
- /// <see cref="Width"/>, and <see cref="Height"/> properties.
- /// </summary>
- /// <remarks>
- /// <para>
- /// Setting this property to <see cref="LayoutStyle.Absolute"/> will cause <see cref="Frame"/> to determine the
- /// size and position of the view. <see cref="X"/> and <see cref="Y"/> will be set to <see cref="Dim.DimAbsolute"/>
- /// using <see cref="Frame"/>.
- /// </para>
- /// <para>
- /// Setting this property to <see cref="LayoutStyle.Computed"/> will cause the view to use the
- /// <see cref="LayoutSubviews"/> method to size and position of the view. If either of the <see cref="X"/> and
- /// <see cref="Y"/> properties are `null` they will be set to <see cref="Pos.PosAbsolute"/> using the current value
- /// of <see cref="Frame"/>. If either of the <see cref="Width"/> and <see cref="Height"/> properties are `null`
- /// they will be set to <see cref="Dim.DimAbsolute"/> using <see cref="Frame"/>.
- /// </para>
- /// </remarks>
- /// <value>The layout style.</value>
- public LayoutStyle LayoutStyle
- {
- get
- {
- if (_x is Pos.PosAbsolute
- && _y is Pos.PosAbsolute
- && _width is Dim.DimAbsolute
- && _height is Dim.DimAbsolute)
- {
- return LayoutStyle.Absolute;
- }
- return LayoutStyle.Computed;
- }
- }
- /// <summary>
- /// The frame (specified as a <see cref="Thickness"/>) that separates a View from other SubViews of the same
- /// SuperView. The margin offsets the <see cref="Bounds"/> from the <see cref="Frame"/>.
- /// </summary>
- /// <remarks>
- /// <para>
- /// The adornments (<see cref="Margin"/>, <see cref="Border"/>, and <see cref="Padding"/>) are not part of the
- /// View's content and are not clipped by the View's Clip Area.
- /// </para>
- /// <para>
- /// Changing the size of an adornment (<see cref="Margin"/>, <see cref="Border"/>, or <see cref="Padding"/>) will
- /// change the size of <see cref="Frame"/> and trigger <see cref="LayoutSubviews"/> to update the layout of the
- /// <see cref="SuperView"/> and its <see cref="Subviews"/>.
- /// </para>
- /// </remarks>
- public Margin Margin { get; private set; }
- /// <summary>
- /// The frame (specified as a <see cref="Thickness"/>) inside of the view that offsets the <see cref="Bounds"/>
- /// from the <see cref="Border"/>.
- /// </summary>
- /// <remarks>
- /// <para>
- /// The adornments (<see cref="Margin"/>, <see cref="Border"/>, and <see cref="Padding"/>) are not part of the
- /// View's content and are not clipped by the View's Clip Area.
- /// </para>
- /// <para>
- /// Changing the size of a frame (<see cref="Margin"/>, <see cref="Border"/>, or <see cref="Padding"/>) will
- /// change the size of the <see cref="Frame"/> and trigger <see cref="LayoutSubviews"/> to update the layout of the
- /// <see cref="SuperView"/> and its <see cref="Subviews"/>.
- /// </para>
- /// </remarks>
- public Padding Padding { get; private set; }
- /// <summary>Gets or sets whether validation of <see cref="Pos"/> and <see cref="Dim"/> occurs.</summary>
- /// <remarks>
- /// Setting this to <see langword="true"/> will enable validation of <see cref="X"/>, <see cref="Y"/>,
- /// <see cref="Width"/>, and <see cref="Height"/> during set operations and in <see cref="LayoutSubviews"/>. If invalid
- /// settings are discovered exceptions will be thrown indicating the error. This will impose a performance penalty and
- /// thus should only be used for debugging.
- /// </remarks>
- public bool ValidatePosDim { get; set; }
- /// <summary>Gets or sets the width dimension of the view.</summary>
- /// <value>The <see cref="Dim"/> object representing the width of the view (the number of columns).</value>
- /// <remarks>
- /// <para>
- /// If set to a relative value (e.g. <see cref="Dim.Fill(int)"/>) the value is indeterminate until the view has
- /// been initialized ( <see cref="IsInitialized"/> is true) and <see cref="SetRelativeLayout(Rectangle)"/> has been
- /// called.
- /// </para>
- /// <para>
- /// Changing this property will eventually (when the view is next drawn) cause the
- /// <see cref="LayoutSubview(View, Rectangle)"/> and <see cref="OnDrawContent(Rectangle)"/> methods to be called.
- /// </para>
- /// <para>
- /// Changing this property will cause <see cref="Frame"/> to be updated. If the new value is not of type
- /// <see cref="Dim.DimAbsolute"/> the <see cref="LayoutStyle"/> will change to <see cref="LayoutStyle.Computed"/>.
- /// </para>
- /// <para>The default value is <c>Dim.Sized (0)</c>.</para>
- /// </remarks>
- public Dim Width
- {
- get => VerifyIsInitialized (_width, nameof (Width));
- set
- {
- _width = value ?? throw new ArgumentNullException (nameof (value), @$"{nameof (Width)} cannot be null");
- if (AutoSize)
- {
- throw new InvalidOperationException (@$"Must set AutoSize to false before setting {nameof (Width)}.");
- }
- bool isValidNewAutoSize = AutoSize && IsValidAutoSizeWidth (_width);
- if (IsAdded && AutoSize && !isValidNewAutoSize)
- {
- throw new InvalidOperationException (@$"Must set AutoSize to false before setting {nameof (Width)}.");
- }
- OnResizeNeeded ();
- }
- }
- /// <summary>Gets or sets the X position for the view (the column).</summary>
- /// <value>The <see cref="Pos"/> object representing the X position.</value>
- /// <remarks>
- /// <para>
- /// If set to a relative value (e.g. <see cref="Pos.Center"/>) the value is indeterminate until the view has been
- /// initialized ( <see cref="IsInitialized"/> is true) and <see cref="SetRelativeLayout(Rectangle)"/> has been called.
- /// </para>
- /// <para>
- /// Changing this property will eventually (when the view is next drawn) cause the
- /// <see cref="LayoutSubview(View, Rectangle)"/> and <see cref="OnDrawContent(Rectangle)"/> methods to be called.
- /// </para>
- /// <para>
- /// Changing this property will cause <see cref="Frame"/> to be updated. If the new value is not of type
- /// <see cref="Pos.PosAbsolute"/> the <see cref="LayoutStyle"/> will change to <see cref="LayoutStyle.Computed"/>.
- /// </para>
- /// <para>The default value is <c>Pos.At (0)</c>.</para>
- /// </remarks>
- public Pos X
- {
- get => VerifyIsInitialized (_x, nameof (X));
- set
- {
- _x = value ?? throw new ArgumentNullException (nameof (value), @$"{nameof (X)} cannot be null");
- OnResizeNeeded ();
- }
- }
- /// <summary>Gets or sets the Y position for the view (the row).</summary>
- /// <value>The <see cref="Pos"/> object representing the Y position.</value>
- /// <remarks>
- /// <para>
- /// If set to a relative value (e.g. <see cref="Pos.Center"/>) the value is indeterminate until the view has been
- /// initialized ( <see cref="IsInitialized"/> is true) and <see cref="SetRelativeLayout(Rectangle)"/> has been called.
- /// </para>
- /// <para>
- /// Changing this property will eventually (when the view is next drawn) cause the
- /// <see cref="LayoutSubview(View, Rectangle)"/> and <see cref="OnDrawContent(Rectangle)"/> methods to be called.
- /// </para>
- /// <para>
- /// Changing this property will cause <see cref="Frame"/> to be updated. If the new value is not of type
- /// <see cref="Pos.PosAbsolute"/> the <see cref="LayoutStyle"/> will change to <see cref="LayoutStyle.Computed"/>.
- /// </para>
- /// <para>The default value is <c>Pos.At (0)</c>.</para>
- /// </remarks>
- public Pos Y
- {
- get => VerifyIsInitialized (_y, nameof (Y));
- set
- {
- _y = value ?? throw new ArgumentNullException (nameof (value), @$"{nameof (Y)} cannot be null");
- OnResizeNeeded ();
- }
- }
- internal bool LayoutNeeded { get; private set; } = true;
- /// <summary>
- /// Event called only once when the <see cref="View"/> is being initialized for the first time. Allows
- /// configurations and assignments to be performed before the <see cref="View"/> being shown. This derived from
- /// <see cref="ISupportInitializeNotification"/> to allow notify all the views that are being initialized.
- /// </summary>
- public event EventHandler Initialized;
- /// <summary>Converts a <see cref="Bounds"/>-relative region to a screen-relative region.</summary>
- public Rectangle BoundsToScreen (Rectangle region)
- {
- BoundsToScreen (region.X, region.Y, out int x, out int y, false);
- return new Rectangle (x, y, region.Width, region.Height);
- }
- /// <summary>
- /// Converts a <see cref="Bounds"/>-relative coordinate to a screen-relative coordinate. The output is optionally
- /// clamped to the screen dimensions.
- /// </summary>
- /// <param name="x"><see cref="Bounds"/>-relative column.</param>
- /// <param name="y"><see cref="Bounds"/>-relative row.</param>
- /// <param name="rx">Absolute column; screen-relative.</param>
- /// <param name="ry">Absolute row; screen-relative.</param>
- /// <param name="clamped">
- /// If <see langword="true"/>, <paramref name="rx"/> and <paramref name="ry"/> will be clamped to the
- /// screen dimensions (will never be negative and will always be less than <see cref="ConsoleDriver.Cols"/> and
- /// <see cref="ConsoleDriver.Rows"/>, respectively.
- /// </param>
- public virtual void BoundsToScreen (int x, int y, out int rx, out int ry, bool clamped = true)
- {
- Point boundsOffset = GetBoundsOffset ();
- rx = x + Frame.X + boundsOffset.X;
- ry = y + Frame.Y + boundsOffset.Y;
- View super = SuperView;
- while (super is { })
- {
- boundsOffset = super.GetBoundsOffset ();
- rx += super.Frame.X + boundsOffset.X;
- ry += super.Frame.Y + boundsOffset.Y;
- super = super.SuperView;
- }
- // The following ensures that the cursor is always in the screen boundaries.
- if (clamped)
- {
- ry = Math.Min (ry, Driver.Rows - 1);
- rx = Math.Min (rx, Driver.Cols - 1);
- }
- }
- /// <summary>Finds which view that belong to the <paramref name="start"/> superview at the provided location.</summary>
- /// <param name="start">The superview where to look for.</param>
- /// <param name="x">The column location in the superview.</param>
- /// <param name="y">The row location in the superview.</param>
- /// <param name="resx">The found view screen relative column location.</param>
- /// <param name="resy">The found view screen relative row location.</param>
- /// <returns>
- /// The view that was found at the <praramref name="x"/> and <praramref name="y"/> coordinates.
- /// <see langword="null"/> if no view was found.
- /// </returns>
- public static View FindDeepestView (View start, int x, int y, out int resx, out int resy)
- {
- resy = resx = 0;
- if (start is null || !start.Frame.Contains (x, y))
- {
- return null;
- }
- Rectangle startFrame = start.Frame;
- if (start.InternalSubviews is { })
- {
- int count = start.InternalSubviews.Count;
- if (count > 0)
- {
- Point boundsOffset = start.GetBoundsOffset ();
- int rx = x - (startFrame.X + boundsOffset.X);
- int ry = y - (startFrame.Y + boundsOffset.Y);
- for (int i = count - 1; i >= 0; i--)
- {
- View v = start.InternalSubviews [i];
- if (v.Visible && v.Frame.Contains (rx, ry))
- {
- View deep = FindDeepestView (v, rx, ry, out resx, out resy);
- if (deep is null)
- {
- return v;
- }
- return deep;
- }
- }
- }
- }
- resx = x - startFrame.X;
- resy = y - startFrame.Y;
- return start;
- }
- /// <summary>Gets the <see cref="Frame"/> with a screen-relative location.</summary>
- /// <returns>The location and size of the view in screen-relative coordinates.</returns>
- public virtual Rectangle FrameToScreen ()
- {
- Rectangle ret = Frame;
- View super = SuperView;
- while (super is { })
- {
- Point boundsOffset = super.GetBoundsOffset ();
- ret.X += super.Frame.X + boundsOffset.X;
- ret.Y += super.Frame.Y + boundsOffset.Y;
- super = super.SuperView;
- }
- return ret;
- }
- /// <summary>
- /// <para>Gets the thickness describing the sum of the Adornments' thicknesses.</para>
- /// </summary>
- /// <returns>A thickness that describes the sum of the Adornments' thicknesses.</returns>
- public Thickness GetAdornmentsThickness ()
- {
- int left = Margin.Thickness.Left + Border.Thickness.Left + Padding.Thickness.Left;
- int top = Margin.Thickness.Top + Border.Thickness.Top + Padding.Thickness.Top;
- int right = Margin.Thickness.Right + Border.Thickness.Right + Padding.Thickness.Right;
- int bottom = Margin.Thickness.Bottom + Border.Thickness.Bottom + Padding.Thickness.Bottom;
- return new Thickness (left, top, right, bottom);
- }
- /// <summary>
- /// Helper to get the X and Y offset of the Bounds from the Frame. This is the sum of the Left and Top properties
- /// of <see cref="Margin"/>, <see cref="Border"/> and <see cref="Padding"/>.
- /// </summary>
- public Point GetBoundsOffset ()
- {
- return new Point (
- Padding?.Thickness.GetInside (Padding.Frame).X ?? 0,
- Padding?.Thickness.GetInside (Padding.Frame).Y ?? 0
- );
- }
- /// <summary>Fired after the View's <see cref="LayoutSubviews"/> method has completed.</summary>
- /// <remarks>
- /// Subscribe to this event to perform tasks when the <see cref="View"/> has been resized or the layout has
- /// otherwise changed.
- /// </remarks>
- public event EventHandler<LayoutEventArgs> LayoutComplete;
- /// <summary>Fired after the View's <see cref="LayoutSubviews"/> method has completed.</summary>
- /// <remarks>
- /// Subscribe to this event to perform tasks when the <see cref="View"/> has been resized or the layout has
- /// otherwise changed.
- /// </remarks>
- public event EventHandler<LayoutEventArgs> LayoutStarted;
- /// <summary>
- /// Invoked when a view starts executing or when the dimensions of the view have changed, for example in response
- /// to the container view or terminal resizing.
- /// </summary>
- /// <remarks>
- /// <para>
- /// The position and dimensions of the view are indeterminate until the view has been initialized. Therefore, the
- /// behavior of this method is indeterminate if <see cref="IsInitialized"/> is <see langword="false"/>.
- /// </para>
- /// <para>Raises the <see cref="LayoutComplete"/> event) before it returns.</para>
- /// </remarks>
- public virtual void LayoutSubviews ()
- {
- if (!IsInitialized)
- {
- Debug.WriteLine (
- $"WARNING: LayoutSubviews called before view has been initialized. This is likely a bug in {this}"
- );
- }
- if (!LayoutNeeded)
- {
- return;
- }
- LayoutAdornments ();
- Rectangle oldBounds = Bounds;
- OnLayoutStarted (new LayoutEventArgs { OldBounds = oldBounds });
- SetTextFormatterSize ();
- // Sort out the dependencies of the X, Y, Width, Height properties
- HashSet<View> nodes = new ();
- HashSet<(View, View)> edges = new ();
- CollectAll (this, ref nodes, ref edges);
- List<View> ordered = TopologicalSort (SuperView, nodes, edges);
- foreach (View v in ordered)
- {
- LayoutSubview (v, new Rectangle (GetBoundsOffset (), Bounds.Size));
- }
- // If the 'to' is rooted to 'from' and the layoutstyle is Computed it's a special-case.
- // Use LayoutSubview with the Frame of the 'from'
- if (SuperView is { } && GetTopSuperView () is { } && LayoutNeeded && edges.Count > 0)
- {
- foreach ((View from, View to) in edges)
- {
- LayoutSubview (to, from.Frame);
- }
- }
- LayoutNeeded = false;
- OnLayoutComplete (new LayoutEventArgs { OldBounds = oldBounds });
- }
- /// <summary>Converts a screen-relative coordinate to a bounds-relative coordinate.</summary>
- /// <returns>The coordinate relative to this view's <see cref="Bounds"/>.</returns>
- /// <param name="x">Screen-relative column.</param>
- /// <param name="y">Screen-relative row.</param>
- public Point ScreenToBounds (int x, int y)
- {
- Point screen = ScreenToFrame (x, y);
- Point boundsOffset = GetBoundsOffset ();
- return new Point (screen.X - boundsOffset.X, screen.Y - boundsOffset.Y);
- }
- /// <summary>
- /// Converts a screen-relative coordinate to a Frame-relative coordinate. Frame-relative means relative to the
- /// View's <see cref="SuperView"/>'s <see cref="Bounds"/>.
- /// </summary>
- /// <returns>The coordinate relative to the <see cref="SuperView"/>'s <see cref="Bounds"/>.</returns>
- /// <param name="x">Screen-relative column.</param>
- /// <param name="y">Screen-relative row.</param>
- public Point ScreenToFrame (int x, int y)
- {
- Point superViewBoundsOffset = SuperView?.GetBoundsOffset () ?? Point.Empty;
- var ret = new Point (x - Frame.X - superViewBoundsOffset.X, y - Frame.Y - superViewBoundsOffset.Y);
- if (SuperView is { })
- {
- Point superFrame = SuperView.ScreenToFrame (x - superViewBoundsOffset.X, y - superViewBoundsOffset.Y);
- ret = new Point (superFrame.X - Frame.X, superFrame.Y - Frame.Y);
- }
- return ret;
- }
- /// <summary>Indicates that the view does not need to be laid out.</summary>
- protected void ClearLayoutNeeded () { LayoutNeeded = false; }
- internal void CollectAll (View from, ref HashSet<View> nNodes, ref HashSet<(View, View)> nEdges)
- {
- // BUGBUG: This should really only work on initialized subviews
- foreach (View v in from.InternalSubviews /*.Where(v => v.IsInitialized)*/)
- {
- nNodes.Add (v);
- if (v.LayoutStyle != LayoutStyle.Computed)
- {
- continue;
- }
- CollectPos (v.X, v, ref nNodes, ref nEdges);
- CollectPos (v.Y, v, ref nNodes, ref nEdges);
- CollectDim (v.Width, v, ref nNodes, ref nEdges);
- CollectDim (v.Height, v, ref nNodes, ref nEdges);
- }
- }
- internal void CollectDim (Dim dim, View from, ref HashSet<View> nNodes, ref HashSet<(View, View)> nEdges)
- {
- switch (dim)
- {
- case Dim.DimView dv:
- // See #2461
- //if (!from.InternalSubviews.Contains (dv.Target)) {
- // throw new InvalidOperationException ($"View {dv.Target} is not a subview of {from}");
- //}
- if (dv.Target != this)
- {
- nEdges.Add ((dv.Target, from));
- }
- return;
- case Dim.DimCombine dc:
- CollectDim (dc._left, from, ref nNodes, ref nEdges);
- CollectDim (dc._right, from, ref nNodes, ref nEdges);
- break;
- }
- }
- internal void CollectPos (Pos pos, View from, ref HashSet<View> nNodes, ref HashSet<(View, View)> nEdges)
- {
- switch (pos)
- {
- case Pos.PosView pv:
- // See #2461
- //if (!from.InternalSubviews.Contains (pv.Target)) {
- // throw new InvalidOperationException ($"View {pv.Target} is not a subview of {from}");
- //}
- if (pv.Target != this)
- {
- nEdges.Add ((pv.Target, from));
- }
- return;
- case Pos.PosCombine pc:
- CollectPos (pc._left, from, ref nNodes, ref nEdges);
- CollectPos (pc._right, from, ref nNodes, ref nEdges);
- break;
- }
- }
- /// <summary>
- /// This internal method is overridden by Adornment to do nothing to prevent recursion during View construction.
- /// And, because Adornments don't have Adornments. It's internal to support unit tests.
- /// </summary>
- /// <param name="adornmentType"></param>
- /// <exception cref="ArgumentNullException"></exception>
- /// <exception cref="ArgumentException"></exception>
- internal virtual Adornment CreateAdornment (Type adornmentType)
- {
- void ThicknessChangedHandler (object sender, EventArgs e)
- {
- if (IsInitialized)
- {
- LayoutAdornments ();
- }
- SetNeedsLayout ();
- SetNeedsDisplay ();
- }
- Adornment adornment;
- adornment = Activator.CreateInstance (adornmentType, this) as Adornment;
- adornment.ThicknessChanged += ThicknessChangedHandler;
- return adornment;
- }
- /// <summary>Overriden by <see cref="Adornment"/> to do nothing, as the <see cref="Adornment"/> does not have adornments.</summary>
- internal virtual void LayoutAdornments ()
- {
- if (Margin is null)
- {
- return; // CreateAdornments () has not been called yet
- }
- if (Margin.Frame.Size != Frame.Size)
- {
- Margin._frame = new Rectangle (Point.Empty, Frame.Size);
- Margin.X = 0;
- Margin.Y = 0;
- Margin.Width = Frame.Size.Width;
- Margin.Height = Frame.Size.Height;
- Margin.SetNeedsLayout ();
- Margin.SetNeedsDisplay ();
- }
- Rectangle border = Margin.Thickness.GetInside (Margin.Frame);
- if (border != Border.Frame)
- {
- Border._frame = new Rectangle (new Point (border.Location.X, border.Location.Y), border.Size);
- Border.X = border.Location.X;
- Border.Y = border.Location.Y;
- Border.Width = border.Size.Width;
- Border.Height = border.Size.Height;
- Border.SetNeedsLayout ();
- Border.SetNeedsDisplay ();
- }
- Rectangle padding = Border.Thickness.GetInside (Border.Frame);
- if (padding != Padding.Frame)
- {
- Padding._frame = new Rectangle (new Point (padding.Location.X, padding.Location.Y), padding.Size);
- Padding.X = padding.Location.X;
- Padding.Y = padding.Location.Y;
- Padding.Width = padding.Size.Width;
- Padding.Height = padding.Size.Height;
- Padding.SetNeedsLayout ();
- Padding.SetNeedsDisplay ();
- }
- }
- /// <summary>
- /// Raises the <see cref="LayoutComplete"/> event. Called from <see cref="LayoutSubviews"/> before all sub-views
- /// have been laid out.
- /// </summary>
- internal virtual void OnLayoutComplete (LayoutEventArgs args) { LayoutComplete?.Invoke (this, args); }
- /// <summary>
- /// Raises the <see cref="LayoutStarted"/> event. Called from <see cref="LayoutSubviews"/> before any subviews
- /// have been laid out.
- /// </summary>
- internal virtual void OnLayoutStarted (LayoutEventArgs args) { LayoutStarted?.Invoke (this, args); }
- /// <summary>
- /// Called whenever the view needs to be resized. This is called whenever <see cref="Frame"/>,
- /// <see cref="View.X"/>, <see cref="View.Y"/>, <see cref="View.Width"/>, or <see cref="View.Height"/> changes.
- /// </summary>
- /// <remarks>
- /// <para>
- /// Determines the relative bounds of the <see cref="View"/> and its <see cref="Frame"/>s, and then calls
- /// <see cref="SetRelativeLayout(Rectangle)"/> to update the view.
- /// </para>
- /// </remarks>
- internal void OnResizeNeeded ()
- {
- // TODO: Identify a real-world use-case where this API should be virtual.
- // TODO: Until then leave it `internal` and non-virtual
- // First try SuperView.Bounds, then Application.Top, then Driver.Bounds.
- // Finally, if none of those are valid, use int.MaxValue (for Unit tests).
- Rectangle relativeBounds = SuperView is { IsInitialized: true } ? SuperView.Bounds :
- Application.Top is { } && Application.Top.IsInitialized ? Application.Top.Bounds :
- Application.Driver?.Bounds ?? new Rectangle (0, 0, int.MaxValue, int.MaxValue);
- SetRelativeLayout (relativeBounds);
- // TODO: Determine what, if any of the below is actually needed here.
- if (IsInitialized)
- {
- if (AutoSize)
- {
- SetFrameToFitText ();
- SetTextFormatterSize ();
- }
- LayoutAdornments ();
- SetNeedsLayout ();
- SetNeedsDisplay ();
- }
- }
- /// <summary>
- /// Sets the internal <see cref="LayoutNeeded"/> flag for this View and all of it's subviews and it's SuperView.
- /// The main loop will call SetRelativeLayout and LayoutSubviews for any view with <see cref="LayoutNeeded"/> set.
- /// </summary>
- internal void SetNeedsLayout ()
- {
- if (LayoutNeeded)
- {
- return;
- }
- LayoutNeeded = true;
- foreach (View view in Subviews)
- {
- view.SetNeedsLayout ();
- }
- TextFormatter.NeedsFormat = true;
- SuperView?.SetNeedsLayout ();
- }
- /// <summary>
- /// Applies the view's position (<see cref="X"/>, <see cref="Y"/>) and dimension (<see cref="Width"/>, and
- /// <see cref="Height"/>) to <see cref="Frame"/>, given a rectangle describing the SuperView's Bounds (nominally the
- /// same as <c>this.SuperView.Bounds</c>).
- /// </summary>
- /// <param name="superviewBounds">
- /// The rectangle describing the SuperView's Bounds (nominally the same as
- /// <c>this.SuperView.Bounds</c>).
- /// </param>
- internal void SetRelativeLayout (Rectangle superviewBounds)
- {
- Debug.Assert (_x is { });
- Debug.Assert (_y is { });
- Debug.Assert (_width is { });
- Debug.Assert (_height is { });
- int newX, newW, newY, newH;
- var autosize = Size.Empty;
- if (AutoSize)
- {
- // Note this is global to this function and used as such within the local functions defined
- // below. In v2 AutoSize will be re-factored to not need to be dealt with in this function.
- autosize = GetAutoSize ();
- }
- // TODO: Since GetNewLocationAndDimension does not depend on View, it can be moved into PosDim.cs
- // TODO: to make architecture more clean. Do this after DimAuto is implemented and the
- // TODO: View.AutoSize stuff is removed.
- // Returns the new dimension (width or height) and location (x or y) for the View given
- // the superview's Bounds
- // the current Pos (View.X or View.Y)
- // the current Dim (View.Width or View.Height)
- // This method is called recursively if pos is Pos.PosCombine
- (int newLocation, int newDimension) GetNewLocationAndDimension (
- bool width,
- Rectangle superviewBounds,
- Pos pos,
- Dim dim,
- int autosizeDimension
- )
- {
- // Gets the new dimension (width or height, dependent on `width`) of the given Dim given:
- // location: the current location (x or y)
- // dimension: the new dimension (width or height) (if relevant for Dim type)
- // autosize: the size to use if autosize = true
- // This method is recursive if d is Dim.DimCombine
- int GetNewDimension (Dim d, int location, int dimension, int autosize)
- {
- int newDimension;
- switch (d)
- {
- case Dim.DimCombine combine:
- // TODO: Move combine logic into DimCombine?
- int leftNewDim = GetNewDimension (combine._left, location, dimension, autosize);
- int rightNewDim = GetNewDimension (combine._right, location, dimension, autosize);
- if (combine._add)
- {
- newDimension = leftNewDim + rightNewDim;
- }
- else
- {
- newDimension = leftNewDim - rightNewDim;
- }
- newDimension = AutoSize && autosize > newDimension ? autosize : newDimension;
- break;
- case Dim.DimFactor factor when !factor.IsFromRemaining ():
- newDimension = d.Anchor (dimension);
- newDimension = AutoSize && autosize > newDimension ? autosize : newDimension;
- break;
- case Dim.DimAbsolute:
- // DimAbsolute.Anchor (int width) ignores width and returns n
- newDimension = Math.Max (d.Anchor (0), 0);
- // BUGBUG: AutoSize does two things: makes text fit AND changes the view's dimensions
- newDimension = AutoSize && autosize > newDimension ? autosize : newDimension;
- break;
- case Dim.DimFill:
- default:
- newDimension = Math.Max (d.Anchor (dimension - location), 0);
- newDimension = AutoSize && autosize > newDimension ? autosize : newDimension;
- break;
- }
- return newDimension;
- }
- int newDimension, newLocation;
- int superviewDimension = width ? superviewBounds.Width : superviewBounds.Height;
- // Determine new location
- switch (pos)
- {
- case Pos.PosCenter posCenter:
- // For Center, the dimension is dependent on location, but we need to force getting the dimension first
- // using a location of 0
- newDimension = Math.Max (GetNewDimension (dim, 0, superviewDimension, autosizeDimension), 0);
- newLocation = posCenter.Anchor (superviewDimension - newDimension);
- newDimension = Math.Max (
- GetNewDimension (dim, newLocation, superviewDimension, autosizeDimension),
- 0
- );
- break;
- case Pos.PosCombine combine:
- // TODO: Move combine logic into PosCombine?
- int left, right;
- (left, newDimension) = GetNewLocationAndDimension (
- width,
- superviewBounds,
- combine._left,
- dim,
- autosizeDimension
- );
- (right, newDimension) = GetNewLocationAndDimension (
- width,
- superviewBounds,
- combine._right,
- dim,
- autosizeDimension
- );
- if (combine._add)
- {
- newLocation = left + right;
- }
- else
- {
- newLocation = left - right;
- }
- newDimension = Math.Max (
- GetNewDimension (dim, newLocation, superviewDimension, autosizeDimension),
- 0
- );
- break;
- case Pos.PosAnchorEnd:
- case Pos.PosAbsolute:
- case Pos.PosFactor:
- case Pos.PosFunc:
- case Pos.PosView:
- default:
- newLocation = pos?.Anchor (superviewDimension) ?? 0;
- newDimension = Math.Max (
- GetNewDimension (dim, newLocation, superviewDimension, autosizeDimension),
- 0
- );
- break;
- }
- return (newLocation, newDimension);
- }
- // horizontal/width
- (newX, newW) = GetNewLocationAndDimension (true, superviewBounds, _x, _width, autosize.Width);
- // vertical/height
- (newY, newH) = GetNewLocationAndDimension (false, superviewBounds, _y, _height, autosize.Height);
- var r = new Rectangle (newX, newY, newW, newH);
- if (Frame != r)
- {
- // Set the frame. Do NOT use `Frame` as it overwrites X, Y, Width, and Height, making
- // the view LayoutStyle.Absolute.
- _frame = r;
- if (_x is Pos.PosAbsolute)
- {
- _x = Frame.X;
- }
- if (_y is Pos.PosAbsolute)
- {
- _y = Frame.Y;
- }
- if (_width is Dim.DimAbsolute)
- {
- _width = Frame.Width;
- }
- if (_height is Dim.DimAbsolute)
- {
- _height = Frame.Height;
- }
- SetNeedsLayout ();
- SetNeedsDisplay ();
- }
- if (AutoSize)
- {
- if (autosize.Width == 0 || autosize.Height == 0)
- {
- // Set the frame. Do NOT use `Frame` as it overwrites X, Y, Width, and Height, making
- // the view LayoutStyle.Absolute.
- _frame = new Rectangle (Frame.Location, autosize);
- if (autosize.Width == 0)
- {
- _width = 0;
- }
- if (autosize.Height == 0)
- {
- _height = 0;
- }
- }
- else if (!SetFrameToFitText ())
- {
- SetTextFormatterSize ();
- }
- SetNeedsLayout ();
- SetNeedsDisplay ();
- }
- }
- // https://en.wikipedia.org/wiki/Topological_sorting
- internal static List<View> TopologicalSort (
- View superView,
- IEnumerable<View> nodes,
- ICollection<(View From, View To)> edges
- )
- {
- List<View> result = new ();
- // Set of all nodes with no incoming edges
- HashSet<View> noEdgeNodes = new (nodes.Where (n => edges.All (e => !e.To.Equals (n))));
- while (noEdgeNodes.Any ())
- {
- // remove a node n from S
- View n = noEdgeNodes.First ();
- noEdgeNodes.Remove (n);
- // add n to tail of L
- if (n != superView)
- {
- result.Add (n);
- }
- // for each node m with an edge e from n to m do
- foreach ((View From, View To) e in edges.Where (e => e.From.Equals (n)).ToArray ())
- {
- View m = e.To;
- // remove edge e from the graph
- edges.Remove (e);
- // if m has no other incoming edges then
- if (edges.All (me => !me.To.Equals (m)) && m != superView)
- {
- // insert m into S
- noEdgeNodes.Add (m);
- }
- }
- }
- if (!edges.Any ())
- {
- return result;
- }
- foreach ((View from, View to) in edges)
- {
- if (from == to)
- {
- // if not yet added to the result, add it and remove from edge
- if (result.Find (v => v == from) is null)
- {
- result.Add (from);
- }
- edges.Remove ((from, to));
- }
- else if (from.SuperView == to.SuperView)
- {
- // if 'from' is not yet added to the result, add it
- if (result.Find (v => v == from) is null)
- {
- result.Add (from);
- }
- // if 'to' is not yet added to the result, add it
- if (result.Find (v => v == to) is null)
- {
- result.Add (to);
- }
- // remove from edge
- edges.Remove ((from, to));
- }
- else if (from != superView?.GetTopSuperView (to, from) && !ReferenceEquals (from, to))
- {
- if (ReferenceEquals (from.SuperView, to))
- {
- throw new InvalidOperationException (
- $"ComputedLayout for \"{superView}\": \"{to}\" references a SubView (\"{from}\")."
- );
- }
- throw new InvalidOperationException (
- $"ComputedLayout for \"{superView}\": \"{from}\" linked with \"{to}\" was not found. Did you forget to add it to {superView}?"
- );
- }
- }
- // return L (a topologically sorted order)
- return result;
- } // TopologicalSort
- /// <summary>Determines if the View's <see cref="Height"/> can be set to a new value.</summary>
- /// <remarks>TrySetHeight can only be called when AutoSize is true (or being set to true).</remarks>
- /// <param name="desiredHeight"></param>
- /// <param name="resultHeight">
- /// Contains the width that would result if <see cref="Height"/> were set to
- /// <paramref name="desiredHeight"/>"/>
- /// </param>
- /// <returns>
- /// <see langword="true"/> if the View's <see cref="Height"/> can be changed to the specified value. False
- /// otherwise.
- /// </returns>
- internal bool TrySetHeight (int desiredHeight, out int resultHeight)
- {
- int h = desiredHeight;
- bool canSetHeight;
- switch (Height)
- {
- case Dim.DimCombine _:
- case Dim.DimView _:
- case Dim.DimFill _:
- // It's a Dim.DimCombine and so can't be assigned. Let it have it's height anchored.
- h = Height.Anchor (h);
- canSetHeight = !ValidatePosDim;
- break;
- case Dim.DimFactor factor:
- // Tries to get the SuperView height otherwise the view height.
- int sh = SuperView is { } ? SuperView.Frame.Height : h;
- if (factor.IsFromRemaining ())
- {
- sh -= Frame.Y;
- }
- h = Height.Anchor (sh);
- canSetHeight = !ValidatePosDim;
- break;
- default:
- canSetHeight = true;
- break;
- }
- resultHeight = h;
- return canSetHeight;
- }
- /// <summary>Determines if the View's <see cref="Width"/> can be set to a new value.</summary>
- /// <remarks>TrySetWidth can only be called when AutoSize is true (or being set to true).</remarks>
- /// <param name="desiredWidth"></param>
- /// <param name="resultWidth">
- /// Contains the width that would result if <see cref="Width"/> were set to
- /// <paramref name="desiredWidth"/>"/>
- /// </param>
- /// <returns>
- /// <see langword="true"/> if the View's <see cref="Width"/> can be changed to the specified value. False
- /// otherwise.
- /// </returns>
- internal bool TrySetWidth (int desiredWidth, out int resultWidth)
- {
- int w = desiredWidth;
- bool canSetWidth;
- switch (Width)
- {
- case Dim.DimCombine _:
- case Dim.DimView _:
- case Dim.DimFill _:
- // It's a Dim.DimCombine and so can't be assigned. Let it have it's Width anchored.
- w = Width.Anchor (w);
- canSetWidth = !ValidatePosDim;
- break;
- case Dim.DimFactor factor:
- // Tries to get the SuperView Width otherwise the view Width.
- int sw = SuperView is { } ? SuperView.Frame.Width : w;
- if (factor.IsFromRemaining ())
- {
- sw -= Frame.X;
- }
- w = Width.Anchor (sw);
- canSetWidth = !ValidatePosDim;
- break;
- default:
- canSetWidth = true;
- break;
- }
- resultWidth = w;
- return canSetWidth;
- }
- private void LayoutSubview (View v, Rectangle contentArea)
- {
- //if (v.LayoutStyle == LayoutStyle.Computed) {
- v.SetRelativeLayout (contentArea);
- //}
- v.LayoutSubviews ();
- v.LayoutNeeded = false;
- }
- /// <summary>Resizes the View to fit the specified size. Factors in the HotKey.</summary>
- /// <remarks>ResizeBoundsToFit can only be called when AutoSize is true (or being set to true).</remarks>
- /// <param name="size"></param>
- /// <returns>whether the Bounds was changed or not</returns>
- private bool ResizeBoundsToFit (Size size)
- {
- //if (AutoSize == false) {
- // throw new InvalidOperationException ("ResizeBoundsToFit can only be called when AutoSize is true");
- //}
- var boundsChanged = false;
- bool canSizeW = TrySetWidth (size.Width - GetHotKeySpecifierLength (), out int rW);
- bool canSizeH = TrySetHeight (size.Height - GetHotKeySpecifierLength (false), out int rH);
- if (canSizeW)
- {
- boundsChanged = true;
- _width = rW;
- }
- if (canSizeH)
- {
- boundsChanged = true;
- _height = rH;
- }
- if (boundsChanged)
- {
- Bounds = new Rectangle (Bounds.X, Bounds.Y, canSizeW ? rW : Bounds.Width, canSizeH ? rH : Bounds.Height);
- }
- return boundsChanged;
- }
- /// <summary>If <paramref name="autoSize"/> is true, resizes the view.</summary>
- /// <param name="autoSize"></param>
- /// <returns></returns>
- private bool ResizeView (bool autoSize)
- {
- if (!autoSize)
- {
- return false;
- }
- var boundsChanged = true;
- Size newFrameSize = GetAutoSize ();
- if (IsInitialized && newFrameSize != Frame.Size)
- {
- if (ValidatePosDim)
- {
- // BUGBUG: This ain't right, obviously. We need to figure out how to handle this.
- boundsChanged = ResizeBoundsToFit (newFrameSize);
- }
- else
- {
- Height = newFrameSize.Height;
- Width = newFrameSize.Width;
- }
- }
- return boundsChanged;
- }
- // Diagnostics to highlight when Width or Height is read before the view has been initialized
- private Dim VerifyIsInitialized (Dim dim, string member)
- {
- #if DEBUG
- if (LayoutStyle == LayoutStyle.Computed && !IsInitialized)
- {
- Debug.WriteLine (
- $"WARNING: \"{this}\" has not been initialized; {member} is indeterminate: {dim}. This is potentially a bug."
- );
- }
- #endif // DEBUG
- return dim;
- }
- // Diagnostics to highlight when X or Y is read before the view has been initialized
- private Pos VerifyIsInitialized (Pos pos, string member)
- {
- #if DEBUG
- if (LayoutStyle == LayoutStyle.Computed && !IsInitialized)
- {
- Debug.WriteLine (
- $"WARNING: \"{this}\" has not been initialized; {member} is indeterminate {pos}. This is potentially a bug."
- );
- }
- #endif // DEBUG
- return pos;
- }
- }
|