123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301 |
- using System.Data;
- namespace Terminal.Gui;
- /// <summary>Delegate for providing color to <see cref="TableView"/> cells based on the value being rendered</summary>
- /// <param name="args">Contains information about the cell for which color is needed</param>
- /// <returns></returns>
- public delegate ColorScheme CellColorGetterDelegate (CellColorGetterArgs args);
- /// <summary>Delegate for providing color for a whole row of a <see cref="TableView"/></summary>
- /// <param name="args"></param>
- /// <returns></returns>
- public delegate ColorScheme RowColorGetterDelegate (RowColorGetterArgs args);
- /// <summary>
- /// View for tabular data based on a <see cref="ITableSource"/>.
- /// <a href="../docs/tableview.md">See TableView Deep Dive for more information</a>.
- /// </summary>
- public class TableView : View
- {
- /// <summary>
- /// The default maximum cell width for <see cref="TableView.MaxCellWidth"/> and <see cref="ColumnStyle.MaxWidth"/>
- /// </summary>
- public const int DefaultMaxCellWidth = 100;
- /// <summary>The default minimum cell width for <see cref="ColumnStyle.MinAcceptableWidth"/></summary>
- public const int DefaultMinAcceptableWidth = 100;
- // TODO: Update to use Key instead of KeyCode
- private KeyCode cellActivationKey = KeyCode.Enter;
- private int columnOffset;
- private int rowOffset;
- private Point? scrollLeftPoint;
- private Point? scrollRightPoint;
- private int selectedColumn;
- private int selectedRow;
- private TableStyle style = new ();
- private ITableSource table;
- /// <summary>Initializes a <see cref="TableView"/> class.</summary>
- /// <param name="table">The table to display in the control</param>
- public TableView (ITableSource table) : this () { Table = table; }
- /// <summary>
- /// Initializes a <see cref="TableView"/> class. Set the
- /// <see cref="Table"/> property to begin editing
- /// </summary>
- public TableView ()
- {
- CanFocus = true;
- CollectionNavigator = new TableCollectionNavigator (this);
- // Things this view knows how to do
- AddCommand (
- Command.Right,
- () => ChangeSelectionByOffsetWithReturn (1, 0));
- AddCommand (
- Command.Left,
- () => ChangeSelectionByOffsetWithReturn (-1, 0));
- AddCommand (
- Command.Up,
- () => ChangeSelectionByOffsetWithReturn (0, -1));
- AddCommand (
- Command.Down,
- () => ChangeSelectionByOffsetWithReturn (0, 1));
- AddCommand (
- Command.PageUp,
- () =>
- {
- PageUp (false);
- return true;
- }
- );
- AddCommand (
- Command.PageDown,
- () =>
- {
- PageDown (false);
- return true;
- }
- );
- AddCommand (
- Command.LeftStart,
- () =>
- {
- ChangeSelectionToStartOfRow (false);
- return true;
- }
- );
- AddCommand (
- Command.RightEnd,
- () =>
- {
- ChangeSelectionToEndOfRow (false);
- return true;
- }
- );
- AddCommand (
- Command.Start,
- () =>
- {
- ChangeSelectionToStartOfTable (false);
- return true;
- }
- );
- AddCommand (
- Command.End,
- () =>
- {
- ChangeSelectionToEndOfTable (false);
- return true;
- }
- );
- AddCommand (
- Command.RightExtend,
- () =>
- {
- ChangeSelectionByOffset (1, 0, true);
- return true;
- }
- );
- AddCommand (
- Command.LeftExtend,
- () =>
- {
- ChangeSelectionByOffset (-1, 0, true);
- return true;
- }
- );
- AddCommand (
- Command.UpExtend,
- () =>
- {
- ChangeSelectionByOffset (0, -1, true);
- return true;
- }
- );
- AddCommand (
- Command.DownExtend,
- () =>
- {
- ChangeSelectionByOffset (0, 1, true);
- return true;
- }
- );
- AddCommand (
- Command.PageUpExtend,
- () =>
- {
- PageUp (true);
- return true;
- }
- );
- AddCommand (
- Command.PageDownExtend,
- () =>
- {
- PageDown (true);
- return true;
- }
- );
- AddCommand (
- Command.LeftStartExtend,
- () =>
- {
- ChangeSelectionToStartOfRow (true);
- return true;
- }
- );
- AddCommand (
- Command.RightEndExtend,
- () =>
- {
- ChangeSelectionToEndOfRow (true);
- return true;
- }
- );
- AddCommand (
- Command.StartExtend,
- () =>
- {
- ChangeSelectionToStartOfTable (true);
- return true;
- }
- );
- AddCommand (
- Command.EndExtend,
- () =>
- {
- ChangeSelectionToEndOfTable (true);
- return true;
- }
- );
- AddCommand (
- Command.SelectAll,
- () =>
- {
- SelectAll ();
- return true;
- }
- );
- AddCommand (Command.Accept, () => OnCellActivated (new CellActivatedEventArgs (Table, SelectedColumn, SelectedRow)));
- AddCommand (
- Command.Select, // was Command.ToggleChecked
- (ctx) =>
- {
- if (ToggleCurrentCellSelection () is true)
- {
- return RaiseSelecting (ctx) is true;
- }
- return false;
- }
- );
- // Default keybindings for this view
- KeyBindings.Add (Key.CursorLeft, Command.Left);
- KeyBindings.Add (Key.CursorRight, Command.Right);
- KeyBindings.Add (Key.CursorUp, Command.Up);
- KeyBindings.Add (Key.CursorDown, Command.Down);
- KeyBindings.Add (Key.PageUp, Command.PageUp);
- KeyBindings.Add (Key.PageDown, Command.PageDown);
- KeyBindings.Add (Key.Home, Command.LeftStart);
- KeyBindings.Add (Key.End, Command.RightEnd);
- KeyBindings.Add (Key.Home.WithCtrl, Command.Start);
- KeyBindings.Add (Key.End.WithCtrl, Command.End);
- KeyBindings.Add (Key.CursorLeft.WithShift, Command.LeftExtend);
- KeyBindings.Add (Key.CursorRight.WithShift, Command.RightExtend);
- KeyBindings.Add (Key.CursorUp.WithShift, Command.UpExtend);
- KeyBindings.Add (Key.CursorDown.WithShift, Command.DownExtend);
- KeyBindings.Add (Key.PageUp.WithShift, Command.PageUpExtend);
- KeyBindings.Add (Key.PageDown.WithShift, Command.PageDownExtend);
- KeyBindings.Add (Key.Home.WithShift, Command.LeftStartExtend);
- KeyBindings.Add (Key.End.WithShift, Command.RightEndExtend);
- KeyBindings.Add (Key.Home.WithCtrl.WithShift, Command.StartExtend);
- KeyBindings.Add (Key.End.WithCtrl.WithShift, Command.EndExtend);
- KeyBindings.Add (Key.A.WithCtrl, Command.SelectAll);
- KeyBindings.Remove (CellActivationKey);
- KeyBindings.Add (CellActivationKey, Command.Accept);
- }
- // TODO: Update to use Key instead of KeyCode
- /// <summary>The key which when pressed should trigger <see cref="CellActivated"/> event. Defaults to Enter.</summary>
- public KeyCode CellActivationKey
- {
- get => cellActivationKey;
- set
- {
- if (cellActivationKey != value)
- {
- if (KeyBindings.TryGet (cellActivationKey, out _))
- {
- KeyBindings.ReplaceKey (cellActivationKey, value);
- }
- else
- {
- KeyBindings.Add (value, Command.Accept);
- }
- cellActivationKey = value;
- }
- }
- }
- /// <summary>Navigator for cycling the selected item in the table by typing. Set to null to disable this feature.</summary>
- public CollectionNavigatorBase CollectionNavigator { get; set; }
- /// <summary>
- /// Horizontal scroll offset. The index of the first column in <see cref="Table"/> to display when when rendering
- /// the view.
- /// </summary>
- /// <remarks>This property allows very wide tables to be rendered with horizontal scrolling</remarks>
- public int ColumnOffset
- {
- get => columnOffset;
- //try to prevent this being set to an out of bounds column
- set
- {
- columnOffset = TableIsNullOrInvisible () ? 0 : Math.Max (0, Math.Min (Table.Columns - 1, value));
- SetNeedsDisplay ();
- }
- }
- /// <summary>True to select the entire row at once. False to select individual cells. Defaults to false</summary>
- public bool FullRowSelect { get; set; }
- /// <summary>
- /// The maximum number of characters to render in any given column. This prevents one long column from pushing
- /// out all the others
- /// </summary>
- public int MaxCellWidth { get; set; } = DefaultMaxCellWidth;
- /// <summary>The minimum number of characters to render in any given column.</summary>
- public int MinCellWidth { get; set; }
- /// <summary>True to allow regions to be selected</summary>
- /// <value></value>
- public bool MultiSelect { get; set; } = true;
- /// <summary>
- /// When <see cref="MultiSelect"/> is enabled this property contain all rectangles of selected cells. Rectangles
- /// describe column/rows selected in <see cref="Table"/> (not screen coordinates)
- /// </summary>
- /// <returns></returns>
- public Stack<TableSelection> MultiSelectedRegions { get; } = new ();
- /// <summary>The text representation that should be rendered for cells with the value <see cref="DBNull.Value"/></summary>
- public string NullSymbol { get; set; } = "-";
- /// <summary>
- /// Vertical scroll offset. The index of the first row in <see cref="Table"/> to display in the first non header
- /// line of the control when rendering the view.
- /// </summary>
- public int RowOffset
- {
- get => rowOffset;
- set => rowOffset = TableIsNullOrInvisible () ? 0 : Math.Max (0, Math.Min (Table.Rows - 1, value));
- }
- /// <summary>The index of <see cref="DataTable.Columns"/> in <see cref="Table"/> that the user has currently selected</summary>
- public int SelectedColumn
- {
- get => selectedColumn;
- set
- {
- int oldValue = selectedColumn;
- //try to prevent this being set to an out of bounds column
- selectedColumn = TableIsNullOrInvisible () ? 0 : Math.Min (Table.Columns - 1, Math.Max (0, value));
- if (oldValue != selectedColumn)
- {
- OnSelectedCellChanged (
- new SelectedCellChangedEventArgs (
- Table,
- oldValue,
- SelectedColumn,
- SelectedRow,
- SelectedRow
- )
- );
- }
- }
- }
- /// <summary>The index of <see cref="DataTable.Rows"/> in <see cref="Table"/> that the user has currently selected</summary>
- public int SelectedRow
- {
- get => selectedRow;
- set
- {
- int oldValue = selectedRow;
- selectedRow = TableIsNullOrInvisible () ? 0 : Math.Min (Table.Rows - 1, Math.Max (0, value));
- if (oldValue != selectedRow)
- {
- OnSelectedCellChanged (
- new SelectedCellChangedEventArgs (
- Table,
- SelectedColumn,
- SelectedColumn,
- oldValue,
- selectedRow
- )
- );
- }
- }
- }
- /// <summary>
- /// The symbol to add after each cell value and header value to visually separate values (if not using vertical
- /// gridlines)
- /// </summary>
- public char SeparatorSymbol { get; set; } = ' ';
- /// <summary>Contains options for changing how the table is rendered</summary>
- public TableStyle Style
- {
- get => style;
- set
- {
- style = value;
- Update ();
- }
- }
- /// <summary>The data table to render in the view. Setting this property automatically updates and redraws the control.</summary>
- public ITableSource Table
- {
- get => table;
- set
- {
- table = value;
- Update ();
- }
- }
- /// <summary>
- /// This event is raised when a cell is activated e.g. by double-clicking or pressing
- /// <see cref="CellActivationKey"/>
- /// </summary>
- public event EventHandler<CellActivatedEventArgs> CellActivated;
- /// <summary>This event is raised when a cell is toggled (see <see cref="Command.Select"/></summary>
- public event EventHandler<CellToggledEventArgs> CellToggled;
- /// <summary>
- /// Returns the screen position (relative to the control client area) that the given cell is rendered or null if
- /// it is outside the current scroll area or no table is loaded
- /// </summary>
- /// <param name="tableColumn">The index of the <see cref="Table"/> column you are looking for</param>
- /// <param name="tableRow">The index of the row in <see cref="Table"/> that you are looking for</param>
- /// <returns></returns>
- public Point? CellToScreen (int tableColumn, int tableRow)
- {
- if (TableIsNullOrInvisible ())
- {
- return null;
- }
- IEnumerable<ColumnToRender> viewPort = CalculateViewport (Viewport);
- int headerHeight = GetHeaderHeightIfAny ();
- ColumnToRender colHit = viewPort.FirstOrDefault (c => c.Column == tableColumn);
- // current column is outside the scroll area
- if (colHit is null)
- {
- return null;
- }
- // the cell is too far up above the current scroll area
- if (RowOffset > tableRow)
- {
- return null;
- }
- // the cell is way down below the scroll area and off the screen
- if (tableRow > RowOffset + (Viewport.Height - headerHeight))
- {
- return null;
- }
- return new Point (colHit.X, tableRow + headerHeight - RowOffset);
- }
- /// <summary>
- /// Private override of <see cref="ChangeSelectionByOffset"/> that returns true if the selection has
- /// changed as a result of moving the selection. Used by key handling logic to determine whether e.g.
- /// the cursor right resulted in a change or should be forwarded on to toggle logic handling.
- /// </summary>
- /// <param name="offsetX"></param>
- /// <param name="offsetY"></param>
- /// <returns></returns>
- private bool ChangeSelectionByOffsetWithReturn (int offsetX, int offsetY)
- {
- var oldSelection = GetSelectionSnapshot ();
- SetSelection (SelectedColumn + offsetX, SelectedRow + offsetY, false);
- Update ();
- return !SelectionIsSame (oldSelection);
- }
- private TableViewSelectionSnapshot GetSelectionSnapshot ()
- {
- return new (
- SelectedColumn,
- SelectedRow,
- MultiSelectedRegions.Select (s => s.Rectangle).ToArray ());
- }
- private bool SelectionIsSame (TableViewSelectionSnapshot oldSelection)
- {
- var newSelection = GetSelectionSnapshot ();
- return oldSelection.SelectedColumn == newSelection.SelectedColumn
- && oldSelection.SelectedRow == newSelection.SelectedRow
- && oldSelection.multiSelection.SequenceEqual (newSelection.multiSelection);
- }
- private record TableViewSelectionSnapshot (int SelectedColumn, int SelectedRow, Rectangle [] multiSelection);
- /// <summary>
- /// Moves the <see cref="SelectedRow"/> and <see cref="SelectedColumn"/> by the provided offsets. Optionally
- /// starting a box selection (see <see cref="MultiSelect"/>)
- /// </summary>
- /// <param name="offsetX">Offset in number of columns</param>
- /// <param name="offsetY">Offset in number of rows</param>
- /// <param name="extendExistingSelection">True to create a multi cell selection or adjust an existing one</param>
- public void ChangeSelectionByOffset (int offsetX, int offsetY, bool extendExistingSelection)
- {
- SetSelection (SelectedColumn + offsetX, SelectedRow + offsetY, extendExistingSelection);
- Update ();
- }
- /// <summary>Moves or extends the selection to the last cell in the current row</summary>
- /// <param name="extend">true to extend the current selection (if any) instead of replacing</param>
- public void ChangeSelectionToEndOfRow (bool extend)
- {
- SetSelection (Table.Columns - 1, SelectedRow, extend);
- Update ();
- }
- /// <summary>
- /// Moves or extends the selection to the final cell in the table (nX,nY). If <see cref="FullRowSelect"/> is
- /// enabled then selection instead moves to ( <see cref="SelectedColumn"/>,nY) i.e. no horizontal scrolling.
- /// </summary>
- /// <param name="extend">true to extend the current selection (if any) instead of replacing</param>
- public void ChangeSelectionToEndOfTable (bool extend)
- {
- int finalColumn = Table.Columns - 1;
- SetSelection (FullRowSelect ? SelectedColumn : finalColumn, Table.Rows - 1, extend);
- Update ();
- }
- /// <summary>Moves or extends the selection to the first cell in the current row</summary>
- /// <param name="extend">true to extend the current selection (if any) instead of replacing</param>
- public void ChangeSelectionToStartOfRow (bool extend)
- {
- SetSelection (0, SelectedRow, extend);
- Update ();
- }
- /// <summary>
- /// Moves or extends the selection to the first cell in the table (0,0). If <see cref="FullRowSelect"/> is enabled
- /// then selection instead moves to ( <see cref="SelectedColumn"/>,0) i.e. no horizontal scrolling.
- /// </summary>
- /// <param name="extend">true to extend the current selection (if any) instead of replacing</param>
- public void ChangeSelectionToStartOfTable (bool extend)
- {
- SetSelection (FullRowSelect ? SelectedColumn : 0, 0, extend);
- Update ();
- }
- /// <summary>
- /// Updates scroll offsets to ensure that the selected cell is visible. Has no effect if <see cref="Table"/> has
- /// not been set.
- /// </summary>
- /// <remarks>
- /// Changes will not be immediately visible in the display until you call <see cref="View.SetNeedsDisplay()"/>
- /// </remarks>
- public void EnsureSelectedCellIsVisible ()
- {
- if (Table is null || Table.Columns <= 0)
- {
- return;
- }
- ColumnToRender [] columnsToRender = CalculateViewport (Viewport).ToArray ();
- int headerHeight = GetHeaderHeightIfAny ();
- //if we have scrolled too far to the left
- if (SelectedColumn < columnsToRender.Min (r => r.Column))
- {
- ColumnOffset = SelectedColumn;
- }
- //if we have scrolled too far to the right
- if (SelectedColumn > columnsToRender.Max (r => r.Column))
- {
- if (Style.SmoothHorizontalScrolling)
- {
- // Scroll right 1 column at a time until the users selected column is visible
- while (SelectedColumn > columnsToRender.Max (r => r.Column))
- {
- ColumnOffset++;
- columnsToRender = CalculateViewport (Viewport).ToArray ();
- // if we are already scrolled to the last column then break
- // this will prevent any theoretical infinite loop
- if (ColumnOffset >= Table.Columns - 1)
- {
- break;
- }
- }
- }
- else
- {
- ColumnOffset = SelectedColumn;
- }
- }
- //if we have scrolled too far down
- if (SelectedRow >= RowOffset + (Viewport.Height - headerHeight))
- {
- RowOffset = SelectedRow - (Viewport.Height - headerHeight) + 1;
- }
- //if we have scrolled too far up
- if (SelectedRow < RowOffset)
- {
- RowOffset = SelectedRow;
- }
- }
- /// <summary>
- /// Updates <see cref="ColumnOffset"/> and <see cref="RowOffset"/> where they are outside the bounds of the table
- /// (by adjusting them to the nearest existing cell). Has no effect if <see cref="Table"/> has not been set.
- /// </summary>
- /// <remarks>
- /// Changes will not be immediately visible in the display until you call <see cref="View.SetNeedsDisplay()"/>
- /// </remarks>
- public void EnsureValidScrollOffsets ()
- {
- if (TableIsNullOrInvisible ())
- {
- return;
- }
- ColumnOffset = Math.Max (Math.Min (ColumnOffset, Table.Columns - 1), 0);
- RowOffset = Math.Max (Math.Min (RowOffset, Table.Rows - 1), 0);
- }
- /// <summary>
- /// Updates <see cref="SelectedColumn"/>, <see cref="SelectedRow"/> and <see cref="MultiSelectedRegions"/> where
- /// they are outside the bounds of the table (by adjusting them to the nearest existing cell). Has no effect if
- /// <see cref="Table"/> has not been set.
- /// </summary>
- /// <remarks>
- /// Changes will not be immediately visible in the display until you call <see cref="View.SetNeedsDisplay()"/>
- /// </remarks>
- public void EnsureValidSelection ()
- {
- if (TableIsNullOrInvisible ())
- {
- // Table doesn't exist, we should probably clear those selections
- ClearMultiSelectedRegions (false);
- return;
- }
- SelectedColumn = Math.Max (Math.Min (SelectedColumn, Table.Columns - 1), 0);
- SelectedRow = Math.Max (Math.Min (SelectedRow, Table.Rows - 1), 0);
- // If SelectedColumn is invisible move it to a visible one
- SelectedColumn = GetNearestVisibleColumn (SelectedColumn, true, true);
- IEnumerable<TableSelection> oldRegions = MultiSelectedRegions.ToArray ().Reverse ();
- MultiSelectedRegions.Clear ();
- // evaluate
- foreach (TableSelection region in oldRegions)
- {
- // ignore regions entirely below current table state
- if (region.Rectangle.Top >= Table.Rows)
- {
- continue;
- }
- // ignore regions entirely too far right of table columns
- if (region.Rectangle.Left >= Table.Columns)
- {
- continue;
- }
- // ensure region's origin exists
- region.Origin = new Point (
- Math.Max (Math.Min (region.Origin.X, Table.Columns - 1), 0),
- Math.Max (Math.Min (region.Origin.Y, Table.Rows - 1), 0)
- );
- // ensure regions do not go over edge of table bounds
- region.Rectangle = Rectangle.FromLTRB (
- region.Rectangle.Left,
- region.Rectangle.Top,
- Math.Max (Math.Min (region.Rectangle.Right, Table.Columns), 0),
- Math.Max (Math.Min (region.Rectangle.Bottom, Table.Rows), 0)
- );
- MultiSelectedRegions.Push (region);
- }
- }
- /// <summary>
- /// Returns all cells in any <see cref="MultiSelectedRegions"/> (if <see cref="MultiSelect"/> is enabled) and the
- /// selected cell
- /// </summary>
- /// <returns></returns>
- public IEnumerable<Point> GetAllSelectedCells ()
- {
- if (TableIsNullOrInvisible () || Table.Rows == 0)
- {
- return Enumerable.Empty<Point> ();
- }
- EnsureValidSelection ();
- HashSet<Point> toReturn = new ();
- // If there are one or more rectangular selections
- if (MultiSelect && MultiSelectedRegions.Any ())
- {
- // Quiz any cells for whether they are selected. For performance we only need to check those between the top left and lower right vertex of selection regions
- int yMin = MultiSelectedRegions.Min (r => r.Rectangle.Top);
- int yMax = MultiSelectedRegions.Max (r => r.Rectangle.Bottom);
- int xMin = FullRowSelect ? 0 : MultiSelectedRegions.Min (r => r.Rectangle.Left);
- int xMax = FullRowSelect ? Table.Columns : MultiSelectedRegions.Max (r => r.Rectangle.Right);
- for (int y = yMin; y < yMax; y++)
- {
- for (int x = xMin; x < xMax; x++)
- {
- if (IsSelected (x, y))
- {
- toReturn.Add (new Point (x, y));
- }
- }
- }
- }
- // if there are no region selections then it is just the active cell
- // if we are selecting the full row
- if (FullRowSelect)
- {
- // all cells in active row are selected
- for (var x = 0; x < Table.Columns; x++)
- {
- toReturn.Add (new Point (x, SelectedRow));
- }
- }
- else
- {
- // Not full row select and no multi selections
- toReturn.Add (new Point (SelectedColumn, SelectedRow));
- }
- return toReturn;
- }
- /// <summary>
- /// <para>
- /// Returns true if the given cell is selected either because it is the active cell or part of a multi cell
- /// selection (e.g. <see cref="FullRowSelect"/>).
- /// </para>
- /// <remarks>Returns <see langword="false"/> if <see cref="ColumnStyle.Visible"/> is <see langword="false"/>.</remarks>
- /// </summary>
- /// <param name="col"></param>
- /// <param name="row"></param>
- /// <returns></returns>
- public bool IsSelected (int col, int row)
- {
- if (!IsColumnVisible (col))
- {
- return false;
- }
- if (GetMultiSelectedRegionsContaining (col, row).Any ())
- {
- return true;
- }
- return row == SelectedRow && (col == SelectedColumn || FullRowSelect);
- }
- ///<inheritdoc/>
- protected override bool OnMouseEvent (MouseEvent me)
- {
- if (!me.Flags.HasFlag (MouseFlags.Button1Clicked)
- && !me.Flags.HasFlag (MouseFlags.Button1DoubleClicked)
- && me.Flags != MouseFlags.WheeledDown
- && me.Flags != MouseFlags.WheeledUp
- && me.Flags != MouseFlags.WheeledLeft
- && me.Flags != MouseFlags.WheeledRight)
- {
- return false;
- }
- if (!HasFocus && CanFocus)
- {
- SetFocus ();
- }
- if (TableIsNullOrInvisible ())
- {
- return false;
- }
- // Scroll wheel flags
- switch (me.Flags)
- {
- case MouseFlags.WheeledDown:
- RowOffset++;
- EnsureValidScrollOffsets ();
- SetNeedsDisplay ();
- return true;
- case MouseFlags.WheeledUp:
- RowOffset--;
- EnsureValidScrollOffsets ();
- SetNeedsDisplay ();
- return true;
- case MouseFlags.WheeledRight:
- ColumnOffset++;
- EnsureValidScrollOffsets ();
- SetNeedsDisplay ();
- return true;
- case MouseFlags.WheeledLeft:
- ColumnOffset--;
- EnsureValidScrollOffsets ();
- SetNeedsDisplay ();
- return true;
- }
- int boundsX = me.Position.X;
- int boundsY = me.Position.Y;
- if (me.Flags.HasFlag (MouseFlags.Button1Clicked))
- {
- if (scrollLeftPoint != null
- && scrollLeftPoint.Value.X == boundsX
- && scrollLeftPoint.Value.Y == boundsY)
- {
- ColumnOffset--;
- EnsureValidScrollOffsets ();
- SetNeedsDisplay ();
- }
- if (scrollRightPoint != null
- && scrollRightPoint.Value.X == boundsX
- && scrollRightPoint.Value.Y == boundsY)
- {
- ColumnOffset++;
- EnsureValidScrollOffsets ();
- SetNeedsDisplay ();
- }
- Point? hit = ScreenToCell (boundsX, boundsY);
- if (hit is { })
- {
- if (MultiSelect && HasControlOrAlt (me))
- {
- UnionSelection (hit.Value.X, hit.Value.Y);
- }
- else
- {
- SetSelection (hit.Value.X, hit.Value.Y, me.Flags.HasFlag (MouseFlags.ButtonShift));
- }
- Update ();
- me.Handled = true;
- }
- }
- // Double clicking a cell activates
- if (me.Flags == MouseFlags.Button1DoubleClicked)
- {
- Point? hit = ScreenToCell (boundsX, boundsY);
- if (hit is { })
- {
- return OnCellActivated (new CellActivatedEventArgs (Table, hit.Value.X, hit.Value.Y));
- }
- }
- return me.Handled;
- }
- ///<inheritdoc/>
- public override void OnDrawContent (Rectangle viewport)
- {
- base.OnDrawContent (viewport);
- Move (0, 0);
- scrollRightPoint = null;
- scrollLeftPoint = null;
- // What columns to render at what X offset in viewport
- ColumnToRender [] columnsToRender = CalculateViewport (Viewport).ToArray ();
- Driver?.SetAttribute (GetNormalColor ());
- //invalidate current row (prevents scrolling around leaving old characters in the frame
- Driver?.AddStr (new string (' ', Viewport.Width));
- var line = 0;
- if (ShouldRenderHeaders ())
- {
- // Render something like:
- /*
- ┌────────────────────┬──────────┬───────────┬──────────────┬─────────┐
- │ArithmeticComparator│chi │Healthboard│Interpretation│Labnumber│
- └────────────────────┴──────────┴───────────┴──────────────┴─────────┘
- */
- if (Style.ShowHorizontalHeaderOverline)
- {
- RenderHeaderOverline (line, Viewport.Width, columnsToRender);
- line++;
- }
- if (Style.ShowHeaders)
- {
- RenderHeaderMidline (line, columnsToRender);
- line++;
- }
- if (Style.ShowHorizontalHeaderUnderline)
- {
- RenderHeaderUnderline (line, Viewport.Width, columnsToRender);
- line++;
- }
- }
- int headerLinesConsumed = line;
- //render the cells
- for (; line < Viewport.Height; line++)
- {
- ClearLine (line, Viewport.Width);
- //work out what Row to render
- int rowToRender = RowOffset + (line - headerLinesConsumed);
- //if we have run off the end of the table
- if (TableIsNullOrInvisible () || rowToRender < 0)
- {
- continue;
- }
- // No more data
- if (rowToRender >= Table.Rows)
- {
- if (rowToRender == Table.Rows && Style.ShowHorizontalBottomline)
- {
- RenderBottomLine (line, Viewport.Width, columnsToRender);
- }
- continue;
- }
- RenderRow (line, rowToRender, columnsToRender);
- }
- }
- /// <inheritdoc/>
- protected override bool OnKeyDown (Key key)
- {
- if (TableIsNullOrInvisible ())
- {
- return false;
- }
- if (CollectionNavigator != null
- && HasFocus
- && Table.Rows != 0
- && key != KeyBindings.GetKeyFromCommands (Command.Accept)
- && key != CellActivationKey
- && CollectionNavigatorBase.IsCompatibleKey (key)
- && !key.KeyCode.HasFlag (KeyCode.CtrlMask)
- && !key.KeyCode.HasFlag (KeyCode.AltMask)
- && Rune.IsLetterOrDigit ((Rune)key))
- {
- return CycleToNextTableEntryBeginningWith (key);
- }
- return false;
- }
- /// <summary>Moves the selection down by one page</summary>
- /// <param name="extend">true to extend the current selection (if any) instead of replacing</param>
- public void PageDown (bool extend)
- {
- ChangeSelectionByOffset (0, Viewport.Height - GetHeaderHeightIfAny (), extend);
- Update ();
- }
- /// <summary>Moves the selection up by one page</summary>
- /// <param name="extend">true to extend the current selection (if any) instead of replacing</param>
- public void PageUp (bool extend)
- {
- ChangeSelectionByOffset (0, -(Viewport.Height - GetHeaderHeightIfAny ()), extend);
- Update ();
- }
- /// <summary>
- /// Positions the cursor in the area of the screen in which the start of the active cell is rendered. Calls base
- /// implementation if active cell is not visible due to scrolling or table is loaded etc
- /// </summary>
- public override Point? PositionCursor ()
- {
- if (TableIsNullOrInvisible ())
- {
- return base.PositionCursor ();
- }
- Point? screenPoint = CellToScreen (SelectedColumn, SelectedRow);
- if (screenPoint is { })
- {
- Move (screenPoint.Value.X, screenPoint.Value.Y);
- return null;//screenPoint;
- }
- return null;
- }
- /// <summary>
- /// Returns the column and row of <see cref="Table"/> that corresponds to a given point on the screen (relative
- /// to the control client area). Returns null if the point is in the header, no table is loaded or outside the control
- /// bounds.
- /// </summary>
- /// <param name="clientX">X offset from the top left of the control.</param>
- /// <param name="clientY">Y offset from the top left of the control.</param>
- /// <returns>Cell clicked or null.</returns>
- public Point? ScreenToCell (int clientX, int clientY) { return ScreenToCell (clientX, clientY, out _, out _); }
- /// <summary>
- /// Returns the column and row of <see cref="Table"/> that corresponds to a given point on the screen (relative
- /// to the control client area). Returns null if the point is in the header, no table is loaded or outside the control
- /// bounds.
- /// </summary>
- /// <param name="client">offset from the top left of the control.</param>
- /// <returns>The position.</returns>
- public Point? ScreenToCell (Point client) { return ScreenToCell (client, out _, out _); }
- /// <summary>
- /// . Returns the column and row of <see cref="Table"/> that corresponds to a given point on the screen (relative
- /// to the control client area). Returns null if the point is in the header, no table is loaded or outside the control
- /// bounds.
- /// </summary>
- /// <param name="clientX">X offset from the top left of the control.</param>
- /// <param name="clientY">Y offset from the top left of the control.</param>
- /// <param name="headerIfAny">If the click is in a header this is the column clicked.</param>
- public Point? ScreenToCell (int clientX, int clientY, out int? headerIfAny) { return ScreenToCell (clientX, clientY, out headerIfAny, out _); }
- /// <summary>
- /// Returns the column and row of <see cref="Table"/> that corresponds to a given point on the screen (relative
- /// to the control client area). Returns null if the point is in the header, no table is loaded or outside the control
- /// bounds.
- /// </summary>
- /// <param name="client">offset from the top left of the control.</param>
- /// <param name="headerIfAny">If the click is in a header this is the column clicked.</param>
- public Point? ScreenToCell (Point client, out int? headerIfAny) { return ScreenToCell (client, out headerIfAny, out _); }
- /// <summary>
- /// Returns the column and row of <see cref="Table"/> that corresponds to a given point on the screen (relative
- /// to the control client area). Returns null if the point is in the header, no table is loaded or outside the control
- /// bounds.
- /// </summary>
- /// <param name="clientX">X offset from the top left of the control.</param>
- /// <param name="clientY">Y offset from the top left of the control.</param>
- /// <param name="headerIfAny">If the click is in a header this is the column clicked.</param>
- /// <param name="offsetX">The horizontal offset of the click within the returned cell.</param>
- public Point? ScreenToCell (int clientX, int clientY, out int? headerIfAny, out int? offsetX)
- {
- headerIfAny = null;
- offsetX = null;
- if (TableIsNullOrInvisible ())
- {
- return null;
- }
- IEnumerable<ColumnToRender> viewPort = CalculateViewport (Viewport);
- int headerHeight = GetHeaderHeightIfAny ();
- ColumnToRender col = viewPort.LastOrDefault (c => c.X <= clientX);
- // Click is on the header section of rendered UI
- if (clientY < headerHeight)
- {
- headerIfAny = col?.Column;
- offsetX = col is { } ? clientX - col.X : null;
- return null;
- }
- int rowIdx = RowOffset - headerHeight + clientY;
- // if click is off bottom of the rows don't give an
- // invalid index back to user!
- if (rowIdx >= Table.Rows)
- {
- return null;
- }
- if (col is { } && rowIdx >= 0)
- {
- offsetX = clientX - col.X;
- return new Point (col.Column, rowIdx);
- }
- return null;
- }
- /// <summary>
- /// Returns the column and row of <see cref="Table"/> that corresponds to a given point on the screen (relative
- /// to the control client area). Returns null if the point is in the header, no table is loaded or outside the control
- /// bounds.
- /// </summary>
- /// <param name="client">offset from the top left of the control.</param>
- /// <param name="headerIfAny">If the click is in a header this is the column clicked.</param>
- /// <param name="offsetX">The horizontal offset of the click within the returned cell.</param>
- public Point? ScreenToCell (Point client, out int? headerIfAny, out int? offsetX)
- {
- return ScreenToCell (client.X, client.Y, out headerIfAny, out offsetX);
- }
- /// <summary>
- /// When <see cref="MultiSelect"/> is on, creates selection over all cells in the table (replacing any old
- /// selection regions)
- /// </summary>
- public void SelectAll ()
- {
- if (TableIsNullOrInvisible () || !MultiSelect || Table.Rows == 0)
- {
- return;
- }
- ClearMultiSelectedRegions (true);
- // Create a single region over entire table, set the origin of the selection to the active cell so that a followup spread selection e.g. shift-right behaves properly
- MultiSelectedRegions.Push (
- new TableSelection (
- new (SelectedColumn, SelectedRow),
- new (0, 0, Table.Columns, table.Rows)
- )
- );
- Update ();
- }
- /// <summary>This event is raised when the selected cell in the table changes.</summary>
- public event EventHandler<SelectedCellChangedEventArgs> SelectedCellChanged;
- /// <summary>
- /// Moves the <see cref="SelectedRow"/> and <see cref="SelectedColumn"/> to the given col/row in
- /// <see cref="Table"/>. Optionally starting a box selection (see <see cref="MultiSelect"/>)
- /// </summary>
- /// <param name="col"></param>
- /// <param name="row"></param>
- /// <param name="extendExistingSelection">True to create a multi cell selection or adjust an existing one</param>
- public void SetSelection (int col, int row, bool extendExistingSelection)
- {
- // if we are trying to increase the column index then
- // we are moving right otherwise we are moving left
- bool lookRight = col > selectedColumn;
- col = GetNearestVisibleColumn (col, lookRight, true);
- if (!MultiSelect || !extendExistingSelection)
- {
- ClearMultiSelectedRegions (true);
- }
- if (extendExistingSelection)
- {
- // If we are extending current selection but there isn't one
- if (MultiSelectedRegions.Count == 0 || MultiSelectedRegions.All (m => m.IsToggled))
- {
- // Create a new region between the old active cell and the new cell
- TableSelection rect = CreateTableSelection (SelectedColumn, SelectedRow, col, row);
- MultiSelectedRegions.Push (rect);
- }
- else
- {
- // Extend the current head selection to include the new cell
- TableSelection head = MultiSelectedRegions.Pop ();
- TableSelection newRect = CreateTableSelection (head.Origin.X, head.Origin.Y, col, row);
- MultiSelectedRegions.Push (newRect);
- }
- }
- SelectedColumn = col;
- SelectedRow = row;
- }
- /// <summary>
- /// Updates the view to reflect changes to <see cref="Table"/> and to (<see cref="ColumnOffset"/> /
- /// <see cref="RowOffset"/>) etc
- /// </summary>
- /// <remarks>This always calls <see cref="View.SetNeedsDisplay()"/></remarks>
- public void Update ()
- {
- if (!IsInitialized || TableIsNullOrInvisible ())
- {
- SetNeedsDisplay ();
- return;
- }
- EnsureValidScrollOffsets ();
- EnsureValidSelection ();
- EnsureSelectedCellIsVisible ();
- SetNeedsDisplay ();
- }
- /// <summary>Invokes the <see cref="CellActivated"/> event</summary>
- /// <param name="args"></param>
- /// <returns><see langword="true"/> if the CellActivated event was raised.</returns>
- protected virtual bool OnCellActivated (CellActivatedEventArgs args)
- {
- CellActivated?.Invoke (this, args);
- return CellActivated is { };
- }
- /// <summary>Invokes the <see cref="CellToggled"/> event</summary>
- /// <param name="args"></param>
- protected virtual void OnCellToggled (CellToggledEventArgs args) { CellToggled?.Invoke (this, args); }
- /// <summary>Invokes the <see cref="SelectedCellChanged"/> event</summary>
- protected virtual void OnSelectedCellChanged (SelectedCellChangedEventArgs args) { SelectedCellChanged?.Invoke (this, args); }
- /// <summary>
- /// Override to provide custom multi colouring to cells. Use <see cref="View.Driver"/> to with
- /// <see cref="ConsoleDriver.AddStr(string)"/>. The driver will already be in the correct place when rendering and you
- /// must render the full <paramref name="render"/> or the view will not look right. For simpler provision of color use
- /// <see cref="ColumnStyle.ColorGetter"/> For changing the content that is rendered use
- /// <see cref="ColumnStyle.RepresentationGetter"/>
- /// </summary>
- /// <param name="cellColor"></param>
- /// <param name="render"></param>
- /// <param name="isPrimaryCell"></param>
- protected virtual void RenderCell (Attribute cellColor, string render, bool isPrimaryCell)
- {
- // If the cell is the selected col/row then draw the first rune in inverted colors
- // this allows the user to track which cell is the active one during a multi cell
- // selection or in full row select mode
- if (Style.InvertSelectedCellFirstCharacter && isPrimaryCell)
- {
- if (render.Length > 0)
- {
- // invert the color of the current cell for the first character
- Driver.SetAttribute (new Attribute (cellColor.Background, cellColor.Foreground));
- Driver.AddRune ((Rune)render [0]);
- if (render.Length > 1)
- {
- Driver.SetAttribute (cellColor);
- Driver.AddStr (render.Substring (1));
- }
- }
- }
- else
- {
- Driver.SetAttribute (cellColor);
- Driver.AddStr (render);
- }
- }
- /// <summary>Returns the amount of vertical space required to display the header</summary>
- /// <returns></returns>
- internal int GetHeaderHeight ()
- {
- int heightRequired = Style.ShowHeaders ? 1 : 0;
- if (Style.ShowHorizontalHeaderOverline)
- {
- heightRequired++;
- }
- if (Style.ShowHorizontalHeaderUnderline)
- {
- heightRequired++;
- }
- return heightRequired;
- }
- /// <summary>Returns the amount of vertical space currently occupied by the header or 0 if it is not visible.</summary>
- /// <returns></returns>
- internal int GetHeaderHeightIfAny () { return ShouldRenderHeaders () ? GetHeaderHeight () : 0; }
- private void AddRuneAt (ConsoleDriver d, int col, int row, Rune ch)
- {
- Move (col, row);
- d.AddRune (ch);
- }
- /// <summary>
- /// Returns the maximum of the <paramref name="col"/> name and the maximum length of data that will be rendered
- /// starting at <see cref="RowOffset"/> and rendering <paramref name="rowsToRender"/>
- /// </summary>
- /// <param name="col"></param>
- /// <param name="rowsToRender"></param>
- /// <param name="colStyle"></param>
- /// <returns></returns>
- private int CalculateMaxCellWidth (int col, int rowsToRender, ColumnStyle colStyle)
- {
- int spaceRequired = table.ColumnNames [col].EnumerateRunes ().Sum (c => c.GetColumns ());
- // if table has no rows
- if (RowOffset < 0)
- {
- return spaceRequired;
- }
- for (int i = RowOffset; i < RowOffset + rowsToRender && i < Table.Rows; i++)
- {
- //expand required space if cell is bigger than the last biggest cell or header
- spaceRequired = Math.Max (
- spaceRequired,
- GetRepresentation (Table [i, col], colStyle)
- .EnumerateRunes ()
- .Sum (c => c.GetColumns ())
- );
- }
- // Don't require more space than the style allows
- if (colStyle is { })
- {
- // enforce maximum cell width based on style
- if (spaceRequired > colStyle.MaxWidth)
- {
- spaceRequired = colStyle.MaxWidth;
- }
- // enforce minimum cell width based on style
- if (spaceRequired < colStyle.MinWidth)
- {
- spaceRequired = colStyle.MinWidth;
- }
- }
- // enforce maximum cell width based on global table style
- if (spaceRequired > MaxCellWidth)
- {
- spaceRequired = MaxCellWidth;
- }
- return spaceRequired;
- }
- /// <summary>
- /// Calculates which columns should be rendered given the <paramref name="bounds"/> in which to display and the
- /// <see cref="ColumnOffset"/>
- /// </summary>
- /// <param name="bounds"></param>
- /// <param name="padding"></param>
- /// <returns></returns>
- private IEnumerable<ColumnToRender> CalculateViewport (Rectangle bounds, int padding = 1)
- {
- if (TableIsNullOrInvisible ())
- {
- return Enumerable.Empty<ColumnToRender> ();
- }
- List<ColumnToRender> toReturn = new ();
- var usedSpace = 0;
- //if horizontal space is required at the start of the line (before the first header)
- if (Style.ShowVerticalHeaderLines || Style.ShowVerticalCellLines)
- {
- usedSpace += 1;
- }
- int availableHorizontalSpace = bounds.Width;
- int rowsToRender = bounds.Height;
- // reserved for the headers row
- if (ShouldRenderHeaders ())
- {
- rowsToRender -= GetHeaderHeight ();
- }
- var first = true;
- int lastColumn = Table.Columns - 1;
- // TODO : Maybe just a for loop?
- foreach (int col in Enumerable.Range (0, Table.Columns).Skip (ColumnOffset))
- {
- int startingIdxForCurrentHeader = usedSpace;
- ColumnStyle colStyle = Style.GetColumnStyleIfAny (col);
- int colWidth;
- // if column is not being rendered
- if (colStyle?.Visible == false)
- {
- // do not add it to the returned columns
- continue;
- }
- // is there enough space for this column (and it's data)?
- colWidth = CalculateMaxCellWidth (col, rowsToRender, colStyle) + padding;
- if (MinCellWidth > 0 && colWidth < MinCellWidth + padding)
- {
- if (MinCellWidth > MaxCellWidth)
- {
- colWidth = MaxCellWidth + padding;
- }
- else
- {
- colWidth = MinCellWidth + padding;
- }
- }
- // there is not enough space for this columns
- // visible content
- if (usedSpace + colWidth > availableHorizontalSpace)
- {
- var showColumn = false;
- // if this column accepts flexible width rendering and
- // is therefore happy rendering into less space
- if (colStyle != null
- && colStyle.MinAcceptableWidth > 0
- &&
- // is there enough space to meet the MinAcceptableWidth
- availableHorizontalSpace - usedSpace >= colStyle.MinAcceptableWidth)
- {
- // show column and use whatever space is
- // left for rendering it
- showColumn = true;
- colWidth = availableHorizontalSpace - usedSpace;
- }
- // If it's the only column we are able to render then
- // accept it anyway (that must be one massively wide column!)
- if (first)
- {
- showColumn = true;
- }
- // no special exceptions and we are out of space
- // so stop accepting new columns for the render area
- if (!showColumn)
- {
- break;
- }
- }
- usedSpace += colWidth;
- // required for if we end up here because first == true i.e. we have a single massive width (overspilling bounds) column to present
- colWidth = Math.Min (availableHorizontalSpace, colWidth);
- bool isVeryLast = lastColumn == col;
- // there is space
- toReturn.Add (new ColumnToRender (col, startingIdxForCurrentHeader, colWidth, isVeryLast));
- first = false;
- }
- if (Style.ExpandLastColumn)
- {
- ColumnToRender last = toReturn.Last ();
- last.Width = Math.Max (last.Width, availableHorizontalSpace - last.X);
- }
- return toReturn;
- }
- /// <summary>Clears a line of the console by filling it with spaces</summary>
- /// <param name="row"></param>
- /// <param name="width"></param>
- private void ClearLine (int row, int width)
- {
- Move (0, row);
- Driver.SetAttribute (GetNormalColor ());
- Driver.AddStr (new string (' ', width));
- }
- private void ClearMultiSelectedRegions (bool keepToggledSelections)
- {
- if (!keepToggledSelections)
- {
- MultiSelectedRegions.Clear ();
- return;
- }
- IEnumerable<TableSelection> oldRegions = MultiSelectedRegions.ToArray ().Reverse ();
- MultiSelectedRegions.Clear ();
- foreach (TableSelection region in oldRegions)
- {
- if (region.IsToggled)
- {
- MultiSelectedRegions.Push (region);
- }
- }
- }
- /// <summary>
- /// Returns a new rectangle between the two points with positive width/height regardless of relative positioning
- /// of the points. pt1 is always considered the <see cref="TableSelection.Origin"/> point
- /// </summary>
- /// <param name="pt1X">Origin point for the selection in X</param>
- /// <param name="pt1Y">Origin point for the selection in Y</param>
- /// <param name="pt2X">End point for the selection in X</param>
- /// <param name="pt2Y">End point for the selection in Y</param>
- /// <param name="toggle">True if selection is result of <see cref="Command.Select"/></param>
- /// <returns></returns>
- private TableSelection CreateTableSelection (int pt1X, int pt1Y, int pt2X, int pt2Y, bool toggle = false)
- {
- int top = Math.Max (Math.Min (pt1Y, pt2Y), 0);
- int bot = Math.Max (Math.Max (pt1Y, pt2Y), 0);
- int left = Math.Max (Math.Min (pt1X, pt2X), 0);
- int right = Math.Max (Math.Max (pt1X, pt2X), 0);
- // Rect class is inclusive of Top Left but exclusive of Bottom Right so extend by 1
- return new TableSelection (new (pt1X, pt1Y), new (left, top, right - left + 1, bot - top + 1))
- {
- IsToggled = toggle
- };
- }
- /// <summary>Returns a single point as a <see cref="TableSelection"/></summary>
- /// <param name="x"></param>
- /// <param name="y"></param>
- /// <returns></returns>
- private TableSelection CreateTableSelection (int x, int y) { return CreateTableSelection (x, y, x, y); }
- private bool CycleToNextTableEntryBeginningWith (Key keyEvent)
- {
- int row = SelectedRow;
- // There is a multi select going on and not just for the current row
- if (GetAllSelectedCells ().Any (c => c.Y != row))
- {
- return false;
- }
- int match = CollectionNavigator.GetNextMatchingItem (row, (char)keyEvent);
- if (match != -1)
- {
- SelectedRow = match;
- EnsureValidSelection ();
- EnsureSelectedCellIsVisible ();
- SetNeedsDisplay ();
- return true;
- }
- return false;
- }
- private IEnumerable<TableSelection> GetMultiSelectedRegionsContaining (int col, int row)
- {
- if (!MultiSelect)
- {
- return Enumerable.Empty<TableSelection> ();
- }
- if (FullRowSelect)
- {
- return MultiSelectedRegions.Where (r => r.Rectangle.Bottom > row && r.Rectangle.Top <= row);
- }
- return MultiSelectedRegions.Where (r => r.Rectangle.Contains (col, row));
- }
- /// <summary>
- /// Returns <paramref name="columnIndex"/> unless the <see cref="ColumnStyle.Visible"/> is false for the indexed
- /// column. If so then the index returned is nudged to the nearest visible column.
- /// </summary>
- /// <remarks>Returns <paramref name="columnIndex"/> unchanged if it is invalid (e.g. out of bounds).</remarks>
- /// <param name="columnIndex">The input column index.</param>
- /// <param name="lookRight">
- /// When nudging invisible selections look right first. <see langword="true"/> to look right,
- /// <see langword="false"/> to look left.
- /// </param>
- /// <param name="allowBumpingInOppositeDirection">
- /// If we cannot find anything visible when looking in direction of
- /// <paramref name="lookRight"/> then should we look in the opposite direction instead? Use true if you want to push a
- /// selection to a valid index no matter what. Use false if you are primarily interested in learning about directional
- /// column visibility.
- /// </param>
- private int GetNearestVisibleColumn (int columnIndex, bool lookRight, bool allowBumpingInOppositeDirection)
- {
- if (TryGetNearestVisibleColumn (columnIndex, lookRight, allowBumpingInOppositeDirection, out int answer))
- {
- return answer;
- }
- return columnIndex;
- }
- /// <summary>
- /// Returns the value that should be rendered to best represent a strongly typed <paramref name="value"/> read
- /// from <see cref="Table"/>
- /// </summary>
- /// <param name="value"></param>
- /// <param name="colStyle">Optional style defining how to represent cell values</param>
- /// <returns></returns>
- private string GetRepresentation (object value, ColumnStyle colStyle)
- {
- if (value is null || value == DBNull.Value)
- {
- return NullSymbol;
- }
- return colStyle is { } ? colStyle.GetRepresentation (value) : value.ToString ();
- }
- private bool HasControlOrAlt (MouseEvent me) { return me.Flags.HasFlag (MouseFlags.ButtonAlt) || me.Flags.HasFlag (MouseFlags.ButtonCtrl); }
- /// <summary>
- /// Returns true if the given <paramref name="columnIndex"/> indexes a visible column otherwise false. Returns
- /// false for indexes that are out of bounds.
- /// </summary>
- /// <param name="columnIndex"></param>
- /// <returns></returns>
- private bool IsColumnVisible (int columnIndex)
- {
- // if the column index provided is out of bounds
- if (columnIndex < 0 || columnIndex >= table.Columns)
- {
- return false;
- }
- return Style.GetColumnStyleIfAny (columnIndex)?.Visible ?? true;
- }
- private void RenderBottomLine (int row, int availableWidth, ColumnToRender [] columnsToRender)
- {
- // Renders a line at the bottom of the table after all the data like:
- // └─────────────────────────────────┴──────────┴──────┴──────────┴────────┴────────────────────────────────────────────┘
- for (var c = 0; c < availableWidth; c++)
- {
- // Start by assuming we just draw a straight line the
- // whole way but update to instead draw BottomTee / Corner etc
- Rune rune = Glyphs.HLine;
- if (Style.ShowVerticalCellLines)
- {
- if (c == 0)
- {
- // for first character render line
- rune = Glyphs.LLCorner;
- }
- else if (columnsToRender.Any (r => r.X == c + 1))
- {
- // if the next column is the start of a header
- rune = Glyphs.BottomTee;
- }
- else if (c == availableWidth - 1)
- {
- // for the last character in the table
- rune = Glyphs.LRCorner;
- }
- else if (Style.ExpandLastColumn == false && columnsToRender.Any (r => r.IsVeryLast && r.X + r.Width - 1 == c))
- {
- // if the next console column is the last column's end
- rune = Glyphs.BottomTee;
- }
- }
- AddRuneAt (Driver, c, row, rune);
- }
- }
- private void RenderHeaderMidline (int row, ColumnToRender [] columnsToRender)
- {
- // Renders something like:
- // │ArithmeticComparator│chi │Healthboard│Interpretation│Labnumber│
- ClearLine (row, Viewport.Width);
- //render start of line
- if (style.ShowVerticalHeaderLines)
- {
- AddRune (0, row, Glyphs.VLine);
- }
- for (var i = 0; i < columnsToRender.Length; i++)
- {
- ColumnToRender current = columnsToRender [i];
- ColumnStyle colStyle = Style.GetColumnStyleIfAny (current.Column);
- string colName = table.ColumnNames [current.Column];
- RenderSeparator (current.X - 1, row, true);
- Move (current.X, row);
- Driver.AddStr (TruncateOrPad (colName, colName, current.Width, colStyle));
- if (Style.ExpandLastColumn == false && current.IsVeryLast)
- {
- RenderSeparator (current.X + current.Width - 1, row, true);
- }
- }
- //render end of line
- if (style.ShowVerticalHeaderLines)
- {
- AddRune (Viewport.Width - 1, row, Glyphs.VLine);
- }
- }
- private void RenderHeaderOverline (int row, int availableWidth, ColumnToRender [] columnsToRender)
- {
- // Renders a line above table headers (when visible) like:
- // ┌────────────────────┬──────────┬───────────┬──────────────┬─────────┐
- for (var c = 0; c < availableWidth; c++)
- {
- Rune rune = Glyphs.HLine;
- if (Style.ShowVerticalHeaderLines)
- {
- if (c == 0)
- {
- rune = Glyphs.ULCorner;
- }
- // if the next column is the start of a header
- else if (columnsToRender.Any (r => r.X == c + 1))
- {
- rune = Glyphs.TopTee;
- }
- else if (c == availableWidth - 1)
- {
- rune = Glyphs.URCorner;
- }
- // if the next console column is the last column's end
- else if (Style.ExpandLastColumn == false && columnsToRender.Any (r => r.IsVeryLast && r.X + r.Width - 1 == c))
- {
- rune = Glyphs.TopTee;
- }
- }
- AddRuneAt (Driver, c, row, rune);
- }
- }
- private void RenderHeaderUnderline (int row, int availableWidth, ColumnToRender [] columnsToRender)
- {
- /*
- * First lets work out if we should be rendering scroll indicators
- */
- // are there are visible columns to the left that have been pushed
- // off the screen due to horizontal scrolling?
- bool moreColumnsToLeft = ColumnOffset > 0;
- // if we moved left would we find a new column (or are they all invisible?)
- if (!TryGetNearestVisibleColumn (ColumnOffset - 1, false, false, out _))
- {
- moreColumnsToLeft = false;
- }
- // are there visible columns to the right that have not yet been reached?
- // lets find out, what is the column index of the last column we are rendering
- int lastColumnIdxRendered = ColumnOffset + columnsToRender.Length - 1;
- // are there more valid indexes?
- bool moreColumnsToRight = lastColumnIdxRendered < Table.Columns;
- // if we went right from the last column would we find a new visible column?
- if (!TryGetNearestVisibleColumn (lastColumnIdxRendered + 1, true, false, out _))
- {
- // no we would not
- moreColumnsToRight = false;
- }
- /*
- * Now lets draw the line itself
- */
- // Renders a line below the table headers (when visible) like:
- // ├──────────┼───────────┼───────────────────┼──────────┼────────┼─────────────┤
- for (var c = 0; c < availableWidth; c++)
- {
- // Start by assuming we just draw a straight line the
- // whole way but update to instead draw a header indicator
- // or scroll arrow etc
- Rune rune = Glyphs.HLine;
- if (Style.ShowVerticalHeaderLines)
- {
- if (c == 0)
- {
- // for first character render line
- rune = Style.ShowVerticalCellLines ? Glyphs.LeftTee : Glyphs.LLCorner;
- // unless we have horizontally scrolled along
- // in which case render an arrow, to indicate user
- // can scroll left
- if (Style.ShowHorizontalScrollIndicators && moreColumnsToLeft)
- {
- rune = Glyphs.LeftArrow;
- scrollLeftPoint = new Point (c, row);
- }
- }
- // if the next column is the start of a header
- else if (columnsToRender.Any (r => r.X == c + 1))
- {
- /*TODO: is ┼ symbol in Driver?*/
- rune = Style.ShowVerticalCellLines ? Glyphs.Cross : Glyphs.BottomTee;
- }
- else if (c == availableWidth - 1)
- {
- // for the last character in the table
- rune = Style.ShowVerticalCellLines ? Glyphs.RightTee : Glyphs.LRCorner;
- // unless there is more of the table we could horizontally
- // scroll along to see. In which case render an arrow,
- // to indicate user can scroll right
- if (Style.ShowHorizontalScrollIndicators && moreColumnsToRight)
- {
- rune = Glyphs.RightArrow;
- scrollRightPoint = new Point (c, row);
- }
- }
- // if the next console column is the last column's end
- else if (Style.ExpandLastColumn == false && columnsToRender.Any (r => r.IsVeryLast && r.X + r.Width - 1 == c))
- {
- rune = Style.ShowVerticalCellLines ? Glyphs.Cross : Glyphs.BottomTee;
- }
- }
- AddRuneAt (Driver, c, row, rune);
- }
- }
- private void RenderRow (int row, int rowToRender, ColumnToRender [] columnsToRender)
- {
- bool focused = HasFocus;
- ColorScheme rowScheme = Style.RowColorGetter?.Invoke (
- new RowColorGetterArgs (Table, rowToRender)
- )
- ?? ColorScheme;
- //start by clearing the entire line
- Move (0, row);
- Attribute color;
- if (FullRowSelect && IsSelected (0, rowToRender))
- {
- color = focused ? rowScheme.Focus : rowScheme.HotNormal;
- }
- else
- {
- color = Enabled ? rowScheme.Normal : rowScheme.Disabled;
- }
- Driver.SetAttribute (color);
- Driver.AddStr (new string (' ', Viewport.Width));
- // Render cells for each visible header for the current row
- for (var i = 0; i < columnsToRender.Length; i++)
- {
- ColumnToRender current = columnsToRender [i];
- ColumnStyle colStyle = Style.GetColumnStyleIfAny (current.Column);
- // move to start of cell (in line with header positions)
- Move (current.X, row);
- // Set color scheme based on whether the current cell is the selected one
- bool isSelectedCell = IsSelected (current.Column, rowToRender);
- object val = Table [rowToRender, current.Column];
- // Render the (possibly truncated) cell value
- string representation = GetRepresentation (val, colStyle);
- // to get the colour scheme
- CellColorGetterDelegate colorSchemeGetter = colStyle?.ColorGetter;
- ColorScheme scheme;
- if (colorSchemeGetter is { })
- {
- // user has a delegate for defining row color per cell, call it
- scheme = colorSchemeGetter (
- new CellColorGetterArgs (
- Table,
- rowToRender,
- current.Column,
- val,
- representation,
- rowScheme
- )
- );
- // if users custom color getter returned null, use the row scheme
- if (scheme is null)
- {
- scheme = rowScheme;
- }
- }
- else
- {
- // There is no custom cell coloring delegate so use the scheme for the row
- scheme = rowScheme;
- }
- Attribute cellColor;
- if (isSelectedCell)
- {
- cellColor = focused ? scheme.Focus : scheme.HotNormal;
- }
- else
- {
- cellColor = Enabled ? scheme.Normal : scheme.Disabled;
- }
- string render = TruncateOrPad (val, representation, current.Width, colStyle);
- // While many cells can be selected (see MultiSelectedRegions) only one cell is the primary (drives navigation etc)
- bool isPrimaryCell = current.Column == selectedColumn && rowToRender == selectedRow;
- RenderCell (cellColor, render, isPrimaryCell);
- // Reset color scheme to normal for drawing separators if we drew text with custom scheme
- if (scheme != rowScheme)
- {
- if (isSelectedCell)
- {
- color = focused ? rowScheme.Focus : rowScheme.HotNormal;
- }
- else
- {
- color = Enabled ? rowScheme.Normal : rowScheme.Disabled;
- }
- Driver.SetAttribute (color);
- }
- // If not in full row select mode always, reset color scheme to normal and render the vertical line (or space) at the end of the cell
- if (!FullRowSelect)
- {
- Driver.SetAttribute (Enabled ? rowScheme.Normal : rowScheme.Disabled);
- }
- if (style.AlwaysUseNormalColorForVerticalCellLines && style.ShowVerticalCellLines)
- {
- Driver.SetAttribute (rowScheme.Normal);
- }
- RenderSeparator (current.X - 1, row, false);
- if (Style.ExpandLastColumn == false && current.IsVeryLast)
- {
- RenderSeparator (current.X + current.Width - 1, row, false);
- }
- }
- if (style.ShowVerticalCellLines)
- {
- Driver.SetAttribute (rowScheme.Normal);
- //render start and end of line
- AddRune (0, row, Glyphs.VLine);
- AddRune (Viewport.Width - 1, row, Glyphs.VLine);
- }
- }
- private void RenderSeparator (int col, int row, bool isHeader)
- {
- if (col < 0)
- {
- return;
- }
- bool renderLines = isHeader ? style.ShowVerticalHeaderLines : style.ShowVerticalCellLines;
- Rune symbol = renderLines ? Glyphs.VLine : (Rune)SeparatorSymbol;
- AddRune (col, row, symbol);
- }
- private bool ShouldRenderHeaders ()
- {
- if (TableIsNullOrInvisible ())
- {
- return false;
- }
- return Style.AlwaysShowHeaders || rowOffset == 0;
- }
- /// <summary>
- /// Returns true if the <see cref="Table"/> is not set or all the columns in the <see cref="Table"/> have an
- /// explicit <see cref="ColumnStyle"/> that marks them <see cref="ColumnStyle.Visible"/> <see langword="false"/>.
- /// </summary>
- /// <returns></returns>
- private bool TableIsNullOrInvisible ()
- {
- return Table == null
- || Table.Columns <= 0
- || Enumerable.Range (0, Table.Columns)
- .All (
- c => (Style.GetColumnStyleIfAny (c)?.Visible ?? true) == false
- );
- }
- private bool? ToggleCurrentCellSelection ()
- {
- var e = new CellToggledEventArgs (Table, selectedColumn, selectedRow);
- OnCellToggled (e);
- if (e.Cancel)
- {
- return false;
- }
- if (!MultiSelect)
- {
- return null;
- }
- TableSelection [] regions = GetMultiSelectedRegionsContaining (selectedColumn, selectedRow).ToArray ();
- TableSelection [] toggles = regions.Where (s => s.IsToggled).ToArray ();
- // Toggle it off
- if (toggles.Any ())
- {
- IEnumerable<TableSelection> oldRegions = MultiSelectedRegions.ToArray ().Reverse ();
- MultiSelectedRegions.Clear ();
- foreach (TableSelection region in oldRegions)
- {
- if (!toggles.Contains (region))
- {
- MultiSelectedRegions.Push (region);
- }
- }
- }
- else
- {
- // user is toggling selection within a rectangular
- // select. So toggle the full region
- if (regions.Any ())
- {
- foreach (TableSelection r in regions)
- {
- r.IsToggled = true;
- }
- }
- else
- {
- // Toggle on a single cell selection
- MultiSelectedRegions.Push (
- CreateTableSelection (
- selectedColumn,
- SelectedRow,
- selectedColumn,
- selectedRow,
- true
- )
- );
- }
- }
- return true;
- }
- /// <summary>
- /// Truncates or pads <paramref name="representation"/> so that it occupies a exactly
- /// <paramref name="availableHorizontalSpace"/> using the alignment specified in <paramref name="colStyle"/> (or left
- /// if no style is defined)
- /// </summary>
- /// <param name="originalCellValue">The object in this cell of the <see cref="Table"/></param>
- /// <param name="representation">The string representation of <paramref name="originalCellValue"/></param>
- /// <param name="availableHorizontalSpace"></param>
- /// <param name="colStyle">Optional style indicating custom alignment for the cell</param>
- /// <returns></returns>
- private string TruncateOrPad (
- object originalCellValue,
- string representation,
- int availableHorizontalSpace,
- ColumnStyle colStyle
- )
- {
- if (string.IsNullOrEmpty (representation))
- {
- return new string (' ', availableHorizontalSpace);
- }
- // if value is not wide enough
- if (representation.EnumerateRunes ().Sum (c => c.GetColumns ()) < availableHorizontalSpace)
- {
- // pad it out with spaces to the given alignment
- int toPad = availableHorizontalSpace
- - (representation.EnumerateRunes ().Sum (c => c.GetColumns ())
- + 1 /*leave 1 space for cell boundary*/);
- switch (colStyle?.GetAlignment (originalCellValue) ?? Alignment.Start)
- {
- case Alignment.Start:
- return representation + new string (' ', toPad);
- case Alignment.End:
- return new string (' ', toPad) + representation;
- // TODO: With single line cells, centered and justified are the same right?
- case Alignment.Center:
- case Alignment.Fill:
- return
- new string (' ', (int)Math.Floor (toPad / 2.0))
- + // round down
- representation
- + new string (' ', (int)Math.Ceiling (toPad / 2.0)); // round up
- }
- }
- // value is too wide
- return new string (
- representation.TakeWhile (c => (availableHorizontalSpace -= ((Rune)c).GetColumns ()) > 0)
- .ToArray ()
- );
- }
- private bool TryGetNearestVisibleColumn (
- int columnIndex,
- bool lookRight,
- bool allowBumpingInOppositeDirection,
- out int idx
- )
- {
- // if the column index provided is out of bounds
- if (table is null || columnIndex < 0 || columnIndex >= table.Columns)
- {
- idx = columnIndex;
- return false;
- }
- // get the column visibility by index (if no style visible is true)
- bool [] columnVisibility =
- Enumerable.Range (0, Table.Columns)
- .Select (c => Style.GetColumnStyleIfAny (c)?.Visible ?? true)
- .ToArray ();
- // column is visible
- if (columnVisibility [columnIndex])
- {
- idx = columnIndex;
- return true;
- }
- int increment = lookRight ? 1 : -1;
- // move in that direction
- for (int i = columnIndex; i >= 0 && i < columnVisibility.Length; i += increment)
- {
- // if we find a visible column
- if (columnVisibility [i])
- {
- idx = i;
- return true;
- }
- }
- // Caller only wants to look in one direction and we did not find any
- // visible columns in that direction
- if (!allowBumpingInOppositeDirection)
- {
- idx = columnIndex;
- return false;
- }
- // Caller will let us look in the other direction so
- // now look other way
- increment = -increment;
- for (int i = columnIndex; i >= 0 && i < columnVisibility.Length; i += increment)
- {
- // if we find a visible column
- if (columnVisibility [i])
- {
- idx = i;
- return true;
- }
- }
- // nothing seems to be visible so just return input index
- idx = columnIndex;
- return false;
- }
- /// <summary>Unions the current selected cell (and/or regions) with the provided cell and makes it the active one.</summary>
- /// <param name="col"></param>
- /// <param name="row"></param>
- private void UnionSelection (int col, int row)
- {
- if (!MultiSelect || TableIsNullOrInvisible ())
- {
- return;
- }
- EnsureValidSelection ();
- int oldColumn = SelectedColumn;
- int oldRow = SelectedRow;
- // move us to the new cell
- SelectedColumn = col;
- SelectedRow = row;
- MultiSelectedRegions.Push (
- CreateTableSelection (col, row)
- );
- // if the old cell was not part of a rectangular select
- // or otherwise selected we need to retain it in the selection
- if (!IsSelected (oldColumn, oldRow))
- {
- MultiSelectedRegions.Push (
- CreateTableSelection (oldColumn, oldRow)
- );
- }
- }
- /// <summary>Describes a desire to render a column at a given horizontal position in the UI</summary>
- internal class ColumnToRender
- {
- public ColumnToRender (int col, int x, int width, bool isVeryLast)
- {
- Column = col;
- X = x;
- Width = width;
- IsVeryLast = isVeryLast;
- }
- /// <summary>The column to render</summary>
- public int Column { get; set; }
- /// <summary>True if this column is the very last column in the <see cref="Table"/> (not just the last visible column)</summary>
- public bool IsVeryLast { get; }
- /// <summary>
- /// The width that the column should occupy as calculated by <see cref="CalculateViewport(Rectangle, int)"/>. Note
- /// that this includes space for padding i.e. the separator between columns.
- /// </summary>
- public int Width { get; internal set; }
- /// <summary>The horizontal position to begin rendering the column at</summary>
- public int X { get; set; }
- }
- }
|