12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Threading.Tasks;
- using Terminal.Gui;
- using Xunit;
- using System.Globalization;
- using Xunit.Abstractions;
- using System.Reflection;
- namespace Terminal.Gui.Views {
- public class TableViewTests {
- readonly ITestOutputHelper output;
- public TableViewTests (ITestOutputHelper output)
- {
- this.output = output;
- }
- [Fact]
- public void EnsureValidScrollOffsets_WithNoCells ()
- {
- var tableView = new TableView ();
- Assert.Equal (0, tableView.RowOffset);
- Assert.Equal (0, tableView.ColumnOffset);
- // Set empty table
- tableView.Table = new DataTable ();
- // Since table has no rows or columns scroll offset should default to 0
- tableView.EnsureValidScrollOffsets ();
- Assert.Equal (0, tableView.RowOffset);
- Assert.Equal (0, tableView.ColumnOffset);
- }
- [Fact]
- public void EnsureValidScrollOffsets_LoadSmallerTable ()
- {
- var tableView = new TableView ();
- tableView.Bounds = new Rect (0, 0, 25, 10);
- Assert.Equal (0, tableView.RowOffset);
- Assert.Equal (0, tableView.ColumnOffset);
- // Set big table
- tableView.Table = BuildTable (25, 50);
- // Scroll down and along
- tableView.RowOffset = 20;
- tableView.ColumnOffset = 10;
- tableView.EnsureValidScrollOffsets ();
- // The scroll should be valid at the moment
- Assert.Equal (20, tableView.RowOffset);
- Assert.Equal (10, tableView.ColumnOffset);
- // Set small table
- tableView.Table = BuildTable (2, 2);
- // Setting a small table should automatically trigger fixing the scroll offsets to ensure valid cells
- Assert.Equal (0, tableView.RowOffset);
- Assert.Equal (0, tableView.ColumnOffset);
- // Trying to set invalid indexes should not be possible
- tableView.RowOffset = 20;
- tableView.ColumnOffset = 10;
- Assert.Equal (1, tableView.RowOffset);
- Assert.Equal (1, tableView.ColumnOffset);
- }
- [Fact]
- [AutoInitShutdown]
- public void Redraw_EmptyTable ()
- {
- var tableView = new TableView ();
- tableView.ColorScheme = new ColorScheme();
- tableView.Bounds = new Rect (0, 0, 25, 10);
- // Set a table with 1 column
- tableView.Table = BuildTable (1, 50);
- tableView.Redraw(tableView.Bounds);
- tableView.Table.Columns.Remove(tableView.Table.Columns[0]);
- tableView.Redraw(tableView.Bounds);
- }
- [Fact]
- public void SelectedCellChanged_NotFiredForSameValue ()
- {
- var tableView = new TableView () {
- Table = BuildTable (25, 50)
- };
- bool called = false;
- tableView.SelectedCellChanged += (e) => { called = true; };
- Assert.Equal (0, tableView.SelectedColumn);
- Assert.False (called);
- // Changing value to same as it already was should not raise an event
- tableView.SelectedColumn = 0;
- Assert.False (called);
- tableView.SelectedColumn = 10;
- Assert.True (called);
- }
- [Fact]
- public void SelectedCellChanged_SelectedColumnIndexesCorrect ()
- {
- var tableView = new TableView () {
- Table = BuildTable (25, 50)
- };
- bool called = false;
- tableView.SelectedCellChanged += (e) => {
- called = true;
- Assert.Equal (0, e.OldCol);
- Assert.Equal (10, e.NewCol);
- };
- tableView.SelectedColumn = 10;
- Assert.True (called);
- }
- [Fact]
- public void SelectedCellChanged_SelectedRowIndexesCorrect ()
- {
- var tableView = new TableView () {
- Table = BuildTable (25, 50)
- };
- bool called = false;
- tableView.SelectedCellChanged += (e) => {
- called = true;
- Assert.Equal (0, e.OldRow);
- Assert.Equal (10, e.NewRow);
- };
- tableView.SelectedRow = 10;
- Assert.True (called);
- }
- [Fact]
- public void Test_SumColumnWidth_UnicodeLength ()
- {
- Assert.Equal (11, "hello there".Sum (c => Rune.ColumnWidth (c)));
- // Creates a string with the peculiar (french?) r symbol
- String surrogate = "Les Mise" + Char.ConvertFromUtf32 (Int32.Parse ("0301", NumberStyles.HexNumber)) + "rables";
- // The unicode width of this string is shorter than the string length!
- Assert.Equal (14, surrogate.Sum (c => Rune.ColumnWidth (c)));
- Assert.Equal (15, surrogate.Length);
- }
- [Fact]
- public void IsSelected_MultiSelectionOn_Vertical ()
- {
- var tableView = new TableView () {
- Table = BuildTable (25, 50),
- MultiSelect = true
- };
- // 3 cell vertical selection
- tableView.SetSelection (1, 1, false);
- tableView.SetSelection (1, 3, true);
- Assert.False (tableView.IsSelected (0, 0));
- Assert.False (tableView.IsSelected (1, 0));
- Assert.False (tableView.IsSelected (2, 0));
- Assert.False (tableView.IsSelected (0, 1));
- Assert.True (tableView.IsSelected (1, 1));
- Assert.False (tableView.IsSelected (2, 1));
- Assert.False (tableView.IsSelected (0, 2));
- Assert.True (tableView.IsSelected (1, 2));
- Assert.False (tableView.IsSelected (2, 2));
- Assert.False (tableView.IsSelected (0, 3));
- Assert.True (tableView.IsSelected (1, 3));
- Assert.False (tableView.IsSelected (2, 3));
- Assert.False (tableView.IsSelected (0, 4));
- Assert.False (tableView.IsSelected (1, 4));
- Assert.False (tableView.IsSelected (2, 4));
- }
- [Fact]
- public void IsSelected_MultiSelectionOn_Horizontal ()
- {
- var tableView = new TableView () {
- Table = BuildTable (25, 50),
- MultiSelect = true
- };
- // 2 cell horizontal selection
- tableView.SetSelection (1, 0, false);
- tableView.SetSelection (2, 0, true);
- Assert.False (tableView.IsSelected (0, 0));
- Assert.True (tableView.IsSelected (1, 0));
- Assert.True (tableView.IsSelected (2, 0));
- Assert.False (tableView.IsSelected (3, 0));
- Assert.False (tableView.IsSelected (0, 1));
- Assert.False (tableView.IsSelected (1, 1));
- Assert.False (tableView.IsSelected (2, 1));
- Assert.False (tableView.IsSelected (3, 1));
- }
- [Fact]
- public void IsSelected_MultiSelectionOn_BoxSelection ()
- {
- var tableView = new TableView () {
- Table = BuildTable (25, 50),
- MultiSelect = true
- };
- // 4 cell horizontal in box 2x2
- tableView.SetSelection (0, 0, false);
- tableView.SetSelection (1, 1, true);
- Assert.True (tableView.IsSelected (0, 0));
- Assert.True (tableView.IsSelected (1, 0));
- Assert.False (tableView.IsSelected (2, 0));
- Assert.True (tableView.IsSelected (0, 1));
- Assert.True (tableView.IsSelected (1, 1));
- Assert.False (tableView.IsSelected (2, 1));
- Assert.False (tableView.IsSelected (0, 2));
- Assert.False (tableView.IsSelected (1, 2));
- Assert.False (tableView.IsSelected (2, 2));
- }
- [AutoInitShutdown]
- [Fact]
- public void PageDown_ExcludesHeaders ()
- {
- var tableView = new TableView () {
- Table = BuildTable (25, 50),
- MultiSelect = true,
- Bounds = new Rect (0, 0, 10, 5)
- };
- // Header should take up 2 lines
- tableView.Style.ShowHorizontalHeaderOverline = false;
- tableView.Style.ShowHorizontalHeaderUnderline = true;
- tableView.Style.AlwaysShowHeaders = false;
- // ensure that TableView has the input focus
- Application.Top.Add (tableView);
- Application.Top.FocusFirst ();
- Assert.True (tableView.HasFocus);
- Assert.Equal (0, tableView.RowOffset);
- tableView.ProcessKey (new KeyEvent (Key.PageDown, new KeyModifiers ()));
- // window height is 5 rows 2 are header so page down should give 3 new rows
- Assert.Equal (3, tableView.SelectedRow);
- Assert.Equal (1, tableView.RowOffset);
- // header is no longer visible so page down should give 5 new rows
- tableView.ProcessKey (new KeyEvent (Key.PageDown, new KeyModifiers ()));
- Assert.Equal (8, tableView.SelectedRow);
- Assert.Equal (4, tableView.RowOffset);
- }
- [Fact]
- public void DeleteRow_SelectAll_AdjustsSelectionToPreventOverrun ()
- {
- // create a 4 by 4 table
- var tableView = new TableView () {
- Table = BuildTable (4, 4),
- MultiSelect = true,
- Bounds = new Rect (0, 0, 10, 5)
- };
- tableView.SelectAll ();
- Assert.Equal (16, tableView.GetAllSelectedCells ().Count ());
- // delete one of the columns
- tableView.Table.Columns.RemoveAt (2);
- // table should now be 3x4
- Assert.Equal (12, tableView.GetAllSelectedCells ().Count ());
- // remove a row
- tableView.Table.Rows.RemoveAt (1);
- // table should now be 3x3
- Assert.Equal (9, tableView.GetAllSelectedCells ().Count ());
- }
- [Fact]
- public void DeleteRow_SelectLastRow_AdjustsSelectionToPreventOverrun ()
- {
- // create a 4 by 4 table
- var tableView = new TableView () {
- Table = BuildTable (4, 4),
- MultiSelect = true,
- Bounds = new Rect (0, 0, 10, 5)
- };
- // select the last row
- tableView.MultiSelectedRegions.Clear ();
- tableView.MultiSelectedRegions.Push (new TableView.TableSelection (new Point (0, 3), new Rect (0, 3, 4, 1)));
- Assert.Equal (4, tableView.GetAllSelectedCells ().Count ());
- // remove a row
- tableView.Table.Rows.RemoveAt (0);
- tableView.EnsureValidSelection ();
- // since the selection no longer exists it should be removed
- Assert.Empty (tableView.MultiSelectedRegions);
- }
- [Theory]
- [InlineData (true)]
- [InlineData (false)]
- public void GetAllSelectedCells_SingleCellSelected_ReturnsOne (bool multiSelect)
- {
- var tableView = new TableView () {
- Table = BuildTable (3, 3),
- MultiSelect = multiSelect,
- Bounds = new Rect (0, 0, 10, 5)
- };
- tableView.SetSelection (1, 1, false);
- Assert.Single (tableView.GetAllSelectedCells ());
- Assert.Equal (new Point (1, 1), tableView.GetAllSelectedCells ().Single ());
- }
- [Fact]
- public void GetAllSelectedCells_SquareSelection_ReturnsFour ()
- {
- var tableView = new TableView () {
- Table = BuildTable (3, 3),
- MultiSelect = true,
- Bounds = new Rect (0, 0, 10, 5)
- };
- // move cursor to 1,1
- tableView.SetSelection (1, 1, false);
- // spread selection across to 2,2 (e.g. shift+right then shift+down)
- tableView.SetSelection (2, 2, true);
- var selected = tableView.GetAllSelectedCells ().ToArray ();
- Assert.Equal (4, selected.Length);
- Assert.Equal (new Point (1, 1), selected [0]);
- Assert.Equal (new Point (2, 1), selected [1]);
- Assert.Equal (new Point (1, 2), selected [2]);
- Assert.Equal (new Point (2, 2), selected [3]);
- }
- [Fact]
- public void GetAllSelectedCells_SquareSelection_FullRowSelect ()
- {
- var tableView = new TableView () {
- Table = BuildTable (3, 3),
- MultiSelect = true,
- FullRowSelect = true,
- Bounds = new Rect (0, 0, 10, 5)
- };
- // move cursor to 1,1
- tableView.SetSelection (1, 1, false);
- // spread selection across to 2,2 (e.g. shift+right then shift+down)
- tableView.SetSelection (2, 2, true);
- var selected = tableView.GetAllSelectedCells ().ToArray ();
- Assert.Equal (6, selected.Length);
- Assert.Equal (new Point (0, 1), selected [0]);
- Assert.Equal (new Point (1, 1), selected [1]);
- Assert.Equal (new Point (2, 1), selected [2]);
- Assert.Equal (new Point (0, 2), selected [3]);
- Assert.Equal (new Point (1, 2), selected [4]);
- Assert.Equal (new Point (2, 2), selected [5]);
- }
- [Fact]
- public void GetAllSelectedCells_TwoIsolatedSelections_ReturnsSix ()
- {
- var tableView = new TableView () {
- Table = BuildTable (20, 20),
- MultiSelect = true,
- Bounds = new Rect (0, 0, 10, 5)
- };
- /*
- Sets up disconnected selections like:
- 00000000000
- 01100000000
- 01100000000
- 00000001100
- 00000000000
- */
- tableView.MultiSelectedRegions.Clear ();
- tableView.MultiSelectedRegions.Push (new TableView.TableSelection (new Point (1, 1), new Rect (1, 1, 2, 2)));
- tableView.MultiSelectedRegions.Push (new TableView.TableSelection (new Point (7, 3), new Rect (7, 3, 2, 1)));
- tableView.SelectedColumn = 8;
- tableView.SelectedRow = 3;
- var selected = tableView.GetAllSelectedCells ().ToArray ();
- Assert.Equal (6, selected.Length);
- Assert.Equal (new Point (1, 1), selected [0]);
- Assert.Equal (new Point (2, 1), selected [1]);
- Assert.Equal (new Point (1, 2), selected [2]);
- Assert.Equal (new Point (2, 2), selected [3]);
- Assert.Equal (new Point (7, 3), selected [4]);
- Assert.Equal (new Point (8, 3), selected [5]);
- }
- [Fact]
- public void TableView_ExpandLastColumn_True ()
- {
- var tv = SetUpMiniTable ();
- // the thing we are testing
- tv.Style.ExpandLastColumn = true;
- tv.Redraw (tv.Bounds);
- string expected = @"
- ┌─┬──────┐
- │A│B │
- ├─┼──────┤
- │1│2 │
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- public void TableView_ExpandLastColumn_False ()
- {
- var tv = SetUpMiniTable ();
- // the thing we are testing
- tv.Style.ExpandLastColumn = false;
- tv.Redraw (tv.Bounds);
- string expected = @"
- ┌─┬─┬────┐
- │A│B│ │
- ├─┼─┼────┤
- │1│2│ │
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- public void TableView_ExpandLastColumn_False_ExactBounds ()
- {
- var tv = SetUpMiniTable ();
- // the thing we are testing
- tv.Style.ExpandLastColumn = false;
- // width exactly matches the max col widths
- tv.Bounds = new Rect (0, 0, 5, 4);
- tv.Redraw (tv.Bounds);
- string expected = @"
- ┌─┬─┐
- │A│B│
- ├─┼─┤
- │1│2│
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- [AutoInitShutdown]
- public void TableView_Activate()
- {
- string activatedValue = null;
- var tv = new TableView (BuildTable(1,1));
- tv.CellActivated += (c) => activatedValue = c.Table.Rows[c.Row][c.Col].ToString();
- Application.Top.Add (tv);
- Application.Begin (Application.Top);
- // pressing enter should activate the first cell (selected cell)
- tv.ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()));
- Assert.Equal ("R0C0",activatedValue);
- // reset the test
- activatedValue = null;
- // clear keybindings and ensure that Enter does not trigger the event anymore
- tv.ClearKeybindings ();
- tv.ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()));
- Assert.Null(activatedValue);
- // New method for changing the activation key
- tv.AddKeyBinding (Key.z, Command.Accept);
- tv.ProcessKey (new KeyEvent (Key.z, new KeyModifiers ()));
- Assert.Equal ("R0C0", activatedValue);
- // reset the test
- activatedValue = null;
- tv.ClearKeybindings ();
- // Old method for changing the activation key
- tv.CellActivationKey = Key.z;
- tv.ProcessKey (new KeyEvent (Key.z, new KeyModifiers ()));
- Assert.Equal ("R0C0", activatedValue);
- }
- [Fact]
- public void TableViewMultiSelect_CannotFallOffLeft()
- {
- var tv = SetUpMiniTable ();
- tv.Table.Rows.Add (1, 2); // add another row (brings us to 2 rows)
- tv.MultiSelect = true;
- tv.SelectedColumn = 1;
- tv.SelectedRow = 1;
- tv.ProcessKey (new KeyEvent (Key.CursorLeft | Key.ShiftMask, new KeyModifiers { Shift = true }));
- Assert.Equal (new Rect (0, 1, 2, 1), tv.MultiSelectedRegions.Single().Rect);
- // this next shift left should be ignored because we are already at the bounds
- tv.ProcessKey (new KeyEvent (Key.CursorLeft | Key.ShiftMask, new KeyModifiers { Shift = true }));
- Assert.Equal (new Rect (0, 1, 2, 1), tv.MultiSelectedRegions.Single ().Rect);
- Assert.Equal (0, tv.SelectedColumn);
- Assert.Equal (1, tv.SelectedRow);
- Application.Shutdown ();
- }
- [Fact]
- public void TableViewMultiSelect_CannotFallOffRight()
- {
- var tv = SetUpMiniTable ();
- tv.Table.Rows.Add (1, 2); // add another row (brings us to 2 rows)
- tv.MultiSelect = true;
- tv.SelectedColumn = 0;
- tv.SelectedRow = 1;
- tv.ProcessKey (new KeyEvent (Key.CursorRight | Key.ShiftMask, new KeyModifiers { Shift = true }));
- Assert.Equal (new Rect (0, 1, 2, 1), tv.MultiSelectedRegions.Single ().Rect);
- // this next shift right should be ignored because we are already at the right bounds
- tv.ProcessKey (new KeyEvent (Key.CursorRight | Key.ShiftMask, new KeyModifiers { Shift = true }));
- Assert.Equal (new Rect (0, 1, 2, 1), tv.MultiSelectedRegions.Single ().Rect);
- Assert.Equal (1, tv.SelectedColumn);
- Assert.Equal (1, tv.SelectedRow);
- Application.Shutdown ();
- }
- [Fact]
- public void TableViewMultiSelect_CannotFallOffBottom ()
- {
- var tv = SetUpMiniTable ();
- tv.Table.Rows.Add (1, 2); // add another row (brings us to 2 rows)
- tv.MultiSelect = true;
- tv.SelectedColumn = 0;
- tv.SelectedRow = 0;
- tv.ProcessKey (new KeyEvent (Key.CursorRight | Key.ShiftMask, new KeyModifiers { Shift = true }));
- tv.ProcessKey (new KeyEvent (Key.CursorDown | Key.ShiftMask, new KeyModifiers { Shift = true }));
- Assert.Equal (new Rect (0, 0, 2, 2), tv.MultiSelectedRegions.Single ().Rect);
- // this next moves should be ignored because we already selected the whole table
- tv.ProcessKey (new KeyEvent (Key.CursorRight | Key.ShiftMask, new KeyModifiers { Shift = true }));
- tv.ProcessKey (new KeyEvent (Key.CursorDown | Key.ShiftMask, new KeyModifiers { Shift = true }));
- Assert.Equal (new Rect (0, 0, 2, 2), tv.MultiSelectedRegions.Single ().Rect);
- Assert.Equal (1, tv.SelectedColumn);
- Assert.Equal (1, tv.SelectedRow);
- Application.Shutdown ();
- }
- [Fact]
- public void TableViewMultiSelect_CannotFallOffTop()
- {
- var tv = SetUpMiniTable ();
- tv.Table.Rows.Add (1, 2); // add another row (brings us to 2 rows)
- tv.MultiSelect = true;
- tv.SelectedColumn = 1;
- tv.SelectedRow = 1;
- tv.ProcessKey (new KeyEvent (Key.CursorLeft | Key.ShiftMask, new KeyModifiers { Shift = true }));
- tv.ProcessKey (new KeyEvent (Key.CursorUp | Key.ShiftMask, new KeyModifiers { Shift = true }));
- Assert.Equal (new Rect (0, 0, 2, 2), tv.MultiSelectedRegions.Single ().Rect);
- // this next moves should be ignored because we already selected the whole table
- tv.ProcessKey (new KeyEvent (Key.CursorLeft | Key.ShiftMask, new KeyModifiers { Shift = true }));
- tv.ProcessKey (new KeyEvent (Key.CursorUp | Key.ShiftMask, new KeyModifiers { Shift = true }));
- Assert.Equal (new Rect (0, 0, 2, 2), tv.MultiSelectedRegions.Single ().Rect);
- Assert.Equal (0, tv.SelectedColumn);
- Assert.Equal (0, tv.SelectedRow);
- Application.Shutdown ();
- }
- [Theory]
- [InlineData (false)]
- [InlineData (true)]
- public void TableView_ColorTests_FocusedOrNot (bool focused)
- {
- var tv = SetUpMiniTable ();
- // width exactly matches the max col widths
- tv.Bounds = new Rect (0, 0, 5, 4);
- // private method for forcing the view to be focused/not focused
- var setFocusMethod = typeof (View).GetMethod ("SetHasFocus", BindingFlags.Instance | BindingFlags.NonPublic);
- // when the view is/isn't focused
- setFocusMethod.Invoke (tv, new object [] { focused, tv, true });
- tv.Redraw (tv.Bounds);
- string expected = @"
- ┌─┬─┐
- │A│B│
- ├─┼─┤
- │1│2│
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- string expectedColors = @"
- 00000
- 00000
- 00000
- 01000
- ";
-
- TestHelpers.AssertDriverColorsAre (expectedColors, new Attribute [] {
- // 0
- tv.ColorScheme.Normal,
- // 1
- focused ? tv.ColorScheme.HotFocus : tv.ColorScheme.HotNormal});
- Application.Shutdown();
- }
- [Theory]
- [InlineData (false)]
- [InlineData (true)]
- public void TableView_ColorTests_InvertSelectedCellFirstCharacter (bool focused)
- {
- var tv = SetUpMiniTable ();
- tv.Style.InvertSelectedCellFirstCharacter = true;
- // width exactly matches the max col widths
- tv.Bounds = new Rect (0, 0, 5, 4);
- // private method for forcing the view to be focused/not focused
- var setFocusMethod = typeof (View).GetMethod ("SetHasFocus", BindingFlags.Instance | BindingFlags.NonPublic);
- // when the view is/isn't focused
- setFocusMethod.Invoke (tv, new object [] { focused, tv, true });
- tv.Redraw (tv.Bounds);
- string expected = @"
- ┌─┬─┐
- │A│B│
- ├─┼─┤
- │1│2│
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- string expectedColors = @"
- 00000
- 00000
- 00000
- 01000
- ";
-
- var invertHotFocus = new Attribute(tv.ColorScheme.HotFocus.Background,tv.ColorScheme.HotFocus.Foreground);
- var invertHotNormal = new Attribute(tv.ColorScheme.HotNormal.Background,tv.ColorScheme.HotNormal.Foreground);
- TestHelpers.AssertDriverColorsAre (expectedColors, new Attribute [] {
- // 0
- tv.ColorScheme.Normal,
- // 1
- focused ? invertHotFocus : invertHotNormal});
-
- Application.Shutdown();
- }
- [Theory]
- [InlineData (false)]
- [InlineData (true)]
- public void TableView_ColorsTest_RowColorGetter (bool focused)
- {
- var tv = SetUpMiniTable ();
- // width exactly matches the max col widths
- tv.Bounds = new Rect (0, 0, 5, 4);
- var rowHighlight = new ColorScheme () {
- Normal = Attribute.Make (Color.BrightCyan, Color.DarkGray),
- HotNormal = Attribute.Make (Color.Green, Color.Blue),
- HotFocus = Attribute.Make (Color.BrightYellow, Color.White),
- Focus = Attribute.Make (Color.Cyan, Color.Magenta),
- };
- // when B is 2 use the custom highlight colour for the row
- tv.Style.RowColorGetter += (e)=>Convert.ToInt32(e.Table.Rows[e.RowIndex][1]) == 2 ? rowHighlight : null;
- // private method for forcing the view to be focused/not focused
- var setFocusMethod = typeof (View).GetMethod ("SetHasFocus", BindingFlags.Instance | BindingFlags.NonPublic);
- // when the view is/isn't focused
- setFocusMethod.Invoke (tv, new object [] { focused, tv, true });
- tv.Redraw (tv.Bounds);
- string expected = @"
- ┌─┬─┐
- │A│B│
- ├─┼─┤
- │1│2│
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- string expectedColors = @"
- 00000
- 00000
- 00000
- 21222
- ";
-
- TestHelpers.AssertDriverColorsAre (expectedColors, new Attribute [] {
- // 0
- tv.ColorScheme.Normal,
- // 1
- focused ? rowHighlight.HotFocus : rowHighlight.HotNormal,
- // 2
- rowHighlight.Normal});
- // change the value in the table so that
- // it no longer matches the RowColorGetter
- // delegate conditional ( which checks for
- // the value 2)
- tv.Table.Rows[0][1] = 5;
- tv.Redraw (tv.Bounds);
- expected = @"
- ┌─┬─┐
- │A│B│
- ├─┼─┤
- │1│5│
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- expectedColors = @"
- 00000
- 00000
- 00000
- 01000
- ";
- // now we only see 2 colors used (the selected cell color and Normal
- // rowHighlight should no longer be used because the delegate returned null
- // (now that the cell value is 5 - which does not match the conditional)
- TestHelpers.AssertDriverColorsAre (expectedColors, new Attribute [] {
- // 0
- tv.ColorScheme.Normal,
- // 1
- focused ? tv.ColorScheme.HotFocus : tv.ColorScheme.HotNormal });
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Theory]
- [InlineData (false)]
- [InlineData (true)]
- public void TableView_ColorsTest_ColorGetter (bool focused)
- {
- var tv = SetUpMiniTable ();
- // width exactly matches the max col widths
- tv.Bounds = new Rect (0, 0, 5, 4);
- // Create a style for column B
- var bStyle = tv.Style.GetOrCreateColumnStyle (tv.Table.Columns ["B"]);
- // when B is 2 use the custom highlight colour
- var cellHighlight = new ColorScheme () {
- Normal = Attribute.Make (Color.BrightCyan, Color.DarkGray),
- HotNormal = Attribute.Make (Color.Green, Color.Blue),
- HotFocus = Attribute.Make (Color.BrightYellow, Color.White),
- Focus = Attribute.Make (Color.Cyan, Color.Magenta),
- };
- bStyle.ColorGetter = (a) => Convert.ToInt32(a.CellValue) == 2 ? cellHighlight : null;
- // private method for forcing the view to be focused/not focused
- var setFocusMethod = typeof (View).GetMethod ("SetHasFocus", BindingFlags.Instance | BindingFlags.NonPublic);
- // when the view is/isn't focused
- setFocusMethod.Invoke (tv, new object [] { focused, tv, true });
- tv.Redraw (tv.Bounds);
- string expected = @"
- ┌─┬─┐
- │A│B│
- ├─┼─┤
- │1│2│
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- string expectedColors = @"
- 00000
- 00000
- 00000
- 01020
- ";
-
- TestHelpers.AssertDriverColorsAre (expectedColors, new Attribute [] {
- // 0
- tv.ColorScheme.Normal,
- // 1
- focused ? tv.ColorScheme.HotFocus : tv.ColorScheme.HotNormal,
- // 2
- cellHighlight.Normal});
- // change the value in the table so that
- // it no longer matches the ColorGetter
- // delegate conditional ( which checks for
- // the value 2)
- tv.Table.Rows[0][1] = 5;
- tv.Redraw (tv.Bounds);
- expected = @"
- ┌─┬─┐
- │A│B│
- ├─┼─┤
- │1│5│
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- expectedColors = @"
- 00000
- 00000
- 00000
- 01000
- ";
- // now we only see 2 colors used (the selected cell color and Normal
- // cellHighlight should no longer be used because the delegate returned null
- // (now that the cell value is 5 - which does not match the conditional)
- TestHelpers.AssertDriverColorsAre (expectedColors, new Attribute [] {
- // 0
- tv.ColorScheme.Normal,
- // 1
- focused ? tv.ColorScheme.HotFocus : tv.ColorScheme.HotNormal });
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- private TableView SetUpMiniTable ()
- {
- var tv = new TableView ();
- tv.Bounds = new Rect (0, 0, 10, 4);
- var dt = new DataTable ();
- var colA = dt.Columns.Add ("A");
- var colB = dt.Columns.Add ("B");
- dt.Rows.Add (1, 2);
- tv.Table = dt;
- tv.Style.GetOrCreateColumnStyle (colA).MinWidth = 1;
- tv.Style.GetOrCreateColumnStyle (colA).MinWidth = 1;
- tv.Style.GetOrCreateColumnStyle (colB).MaxWidth = 1;
- tv.Style.GetOrCreateColumnStyle (colB).MaxWidth = 1;
- GraphViewTests.InitFakeDriver ();
- tv.ColorScheme = Colors.Base;
- return tv;
- }
- [Fact]
- [AutoInitShutdown]
- public void ScrollDown_OneLineAtATime ()
- {
- var tableView = new TableView ();
- // Set big table
- tableView.Table = BuildTable (25, 50);
- // 1 header + 4 rows visible
- tableView.Bounds = new Rect (0, 0, 25, 5);
- tableView.Style.ShowHorizontalHeaderUnderline = false;
- tableView.Style.ShowHorizontalHeaderOverline = false;
- tableView.Style.AlwaysShowHeaders = true;
- // select last row
- tableView.SelectedRow = 3; // row is 0 indexed so this is the 4th visible row
- // Scroll down
- tableView.ProcessKey (new KeyEvent () { Key = Key.CursorDown });
- // Scrolled off the page by 1 row so it should only have moved down 1 line of RowOffset
- Assert.Equal(4,tableView.SelectedRow);
- Assert.Equal (1, tableView.RowOffset);
- }
- [Fact]
- public void ScrollRight_SmoothScrolling ()
- {
- GraphViewTests.InitFakeDriver ();
- var tableView = new TableView ();
- tableView.ColorScheme = Colors.TopLevel;
- // 3 columns are visibile
- tableView.Bounds = new Rect (0, 0, 7, 5);
- tableView.Style.ShowHorizontalHeaderUnderline = false;
- tableView.Style.ShowHorizontalHeaderOverline = false;
- tableView.Style.AlwaysShowHeaders = true;
- tableView.Style.SmoothHorizontalScrolling = true;
- var dt = new DataTable ();
- dt.Columns.Add ("A");
- dt.Columns.Add ("B");
- dt.Columns.Add ("C");
- dt.Columns.Add ("D");
- dt.Columns.Add ("E");
- dt.Columns.Add ("F");
- dt.Rows.Add (1, 2, 3, 4, 5, 6);
- tableView.Table = dt;
- // select last visible column
- tableView.SelectedColumn = 2; // column C
- tableView.Redraw (tableView.Bounds);
- string expected =
- @"
- │A│B│C│
- │1│2│3│";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Scroll right
- tableView.ProcessKey (new KeyEvent () { Key = Key.CursorRight });
- tableView.Redraw (tableView.Bounds);
- // Note that with SmoothHorizontalScrolling only a single new column
- // is exposed when scrolling right. This is not always the case though
- // sometimes if the leftmost column is long (i.e. A is a long column)
- // then when A is pushed off the screen multiple new columns could be exposed
- // (not just D but also E and F). This is because TableView never shows
- // 'half cells' or scrolls by console unit (scrolling is done by table row/column increments).
- expected =
- @"
- │B│C│D│
- │2│3│4│";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- public void ScrollRight_WithoutSmoothScrolling ()
- {
- GraphViewTests.InitFakeDriver ();
- var tableView = new TableView ();
- tableView.ColorScheme = Colors.TopLevel;
- // 3 columns are visibile
- tableView.Bounds = new Rect (0, 0, 7, 5);
- tableView.Style.ShowHorizontalHeaderUnderline = false;
- tableView.Style.ShowHorizontalHeaderOverline = false;
- tableView.Style.AlwaysShowHeaders = true;
- tableView.Style.SmoothHorizontalScrolling = false;
- var dt = new DataTable ();
- dt.Columns.Add ("A");
- dt.Columns.Add ("B");
- dt.Columns.Add ("C");
- dt.Columns.Add ("D");
- dt.Columns.Add ("E");
- dt.Columns.Add ("F");
- dt.Rows.Add (1, 2, 3, 4, 5, 6);
- tableView.Table = dt;
- // select last visible column
- tableView.SelectedColumn = 2; // column C
- tableView.Redraw (tableView.Bounds);
- string expected =
- @"
- │A│B│C│
- │1│2│3│";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Scroll right
- tableView.ProcessKey (new KeyEvent () { Key = Key.CursorRight });
- tableView.Redraw (tableView.Bounds);
- // notice that without smooth scrolling we just update the first column
- // rendered in the table to the newly exposed column (D). This is fast
- // since we don't have to worry about repeatedly measuring the content
- // area as we scroll until the new column (D) is exposed. But it makes
- // the view 'jump' to expose all new columns
- expected =
- @"
- │D│E│F│
- │4│5│6│";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- public void LongColumnTest ()
- {
- GraphViewTests.InitFakeDriver ();
- var tableView = new TableView ();
- tableView.ColorScheme = Colors.TopLevel;
- // 25 characters can be printed into table
- tableView.Bounds = new Rect (0, 0, 25, 5);
- tableView.Style.ShowHorizontalHeaderUnderline = true;
- tableView.Style.ShowHorizontalHeaderOverline = false;
- tableView.Style.AlwaysShowHeaders = true;
- tableView.Style.SmoothHorizontalScrolling = true;
- var dt = new DataTable ();
- dt.Columns.Add ("A");
- dt.Columns.Add ("B");
- dt.Columns.Add ("Very Long Column");
- dt.Rows.Add (1, 2, new string('a',500));
- dt.Rows.Add (1, 2, "aaa");
- tableView.Table = dt;
- tableView.Redraw (tableView.Bounds);
- // default behaviour of TableView is not to render
- // columns unless there is sufficient space
- string expected =
- @"
- │A│B │
- ├─┼─────────────────────►
- │1│2 │
- │1│2 │
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // get a style for the long column
- var style = tableView.Style.GetOrCreateColumnStyle(dt.Columns[2]);
-
- // one way the API user can fix this for long columns
- // is to specify a max width for the column
- style.MaxWidth = 10;
- tableView.Redraw (tableView.Bounds);
- expected =
- @"
- │A│B│Very Long │
- ├─┼─┼───────────────────┤
- │1│2│aaaaaaaaaa │
- │1│2│aaa │
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // revert the style change
- style.MaxWidth = TableView.DefaultMaxCellWidth;
- // another way API user can fix problem is to implement
- // RepresentationGetter and apply max length there
- style.RepresentationGetter = (s)=>{
- return s.ToString().Length < 15 ? s.ToString() : s.ToString().Substring(0,13)+"...";
- };
- tableView.Redraw (tableView.Bounds);
- expected =
- @"
- │A│B│Very Long Column │
- ├─┼─┼───────────────────┤
- │1│2│aaaaaaaaaaaaa... │
- │1│2│aaa │
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // revert style change
- style.RepresentationGetter = null;
- // Both of the above methods rely on having a fixed
- // size limit for the column. These are awkward if a
- // table is resizeable e.g. Dim.Fill(). Ideally we want
- // to render in any space available and truncate the content
- // of the column dynamically so it fills the free space at
- // the end of the table.
- // We can now specify that the column can be any length
- // (Up to MaxWidth) but the renderer can accept using
- // less space down to this limit
- style.MinAcceptableWidth = 5;
- tableView.Redraw (tableView.Bounds);
- expected =
- @"
- │A│B│Very Long Column │
- ├─┼─┼───────────────────┤
- │1│2│aaaaaaaaaaaaaaaaaaa│
- │1│2│aaa │
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Now test making the width too small for the MinAcceptableWidth
- // the Column won't fit so should not be rendered
- Application.Shutdown ();
- GraphViewTests.InitFakeDriver ();
- tableView.Bounds = new Rect(0,0,9,5);
- tableView.Redraw (tableView.Bounds);
- expected =
- @"
- │A│B │
- ├─┼─────►
- │1│2 │
- │1│2 │
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // setting width to 10 leaves just enough space for the column to
- // meet MinAcceptableWidth of 5. Column width includes terminator line
- // symbol (e.g. ┤ or │)
- tableView.Bounds = new Rect (0, 0, 10, 5);
- tableView.Redraw (tableView.Bounds);
- expected =
- @"
- │A│B│Very│
- ├─┼─┼────┤
- │1│2│aaaa│
- │1│2│aaa │
- ";
- TestHelpers.AssertDriverContentsAre (expected, output);
- Application.Shutdown ();
- }
- [Fact]
- public void ScrollIndicators ()
- {
- GraphViewTests.InitFakeDriver ();
- var tableView = new TableView ();
- tableView.ColorScheme = Colors.TopLevel;
- // 3 columns are visibile
- tableView.Bounds = new Rect (0, 0, 7, 5);
- tableView.Style.ShowHorizontalHeaderUnderline = true;
- tableView.Style.ShowHorizontalHeaderOverline = false;
- tableView.Style.AlwaysShowHeaders = true;
- tableView.Style.SmoothHorizontalScrolling = true;
- var dt = new DataTable ();
- dt.Columns.Add ("A");
- dt.Columns.Add ("B");
- dt.Columns.Add ("C");
- dt.Columns.Add ("D");
- dt.Columns.Add ("E");
- dt.Columns.Add ("F");
- dt.Rows.Add (1, 2, 3, 4, 5, 6);
- tableView.Table = dt;
- // select last visible column
- tableView.SelectedColumn = 2; // column C
- tableView.Redraw (tableView.Bounds);
- // user can only scroll right so sees right indicator
- // Because first column in table is A
- string expected =
- @"
- │A│B│C│
- ├─┼─┼─►
- │1│2│3│";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Scroll right
- tableView.ProcessKey (new KeyEvent () { Key = Key.CursorRight });
- // since A is now pushed off screen we get indicator showing
- // that user can scroll left to see first column
- tableView.Redraw (tableView.Bounds);
- expected =
- @"
- │B│C│D│
- ◄─┼─┼─►
- │2│3│4│";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Scroll right twice more (to end of columns)
- tableView.ProcessKey (new KeyEvent () { Key = Key.CursorRight });
- tableView.ProcessKey (new KeyEvent () { Key = Key.CursorRight });
- tableView.Redraw (tableView.Bounds);
- expected =
- @"
- │D│E│F│
- ◄─┼─┼─┤
- │4│5│6│";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- /// <summary>
- /// Builds a simple table of string columns with the requested number of columns and rows
- /// </summary>
- /// <param name="cols"></param>
- /// <param name="rows"></param>
- /// <returns></returns>
- public static DataTable BuildTable (int cols, int rows)
- {
- var dt = new DataTable ();
- for (int c = 0; c < cols; c++) {
- dt.Columns.Add ("Col" + c);
- }
- for (int r = 0; r < rows; r++) {
- var newRow = dt.NewRow ();
- for (int c = 0; c < cols; c++) {
- newRow [c] = $"R{r}C{c}";
- }
- dt.Rows.Add (newRow);
- }
- return dt;
- }
- [Fact, AutoInitShutdown]
- public void Test_ScreenToCell ()
- {
- var tableView = GetTwoRowSixColumnTable ();
- tableView.Redraw (tableView.Bounds);
- // user can only scroll right so sees right indicator
- // Because first column in table is A
- string expected =
- @"
- │A│B│C│
- ├─┼─┼─►
- │1│2│3│
- │1│2│3│";
- TestHelpers.AssertDriverContentsAre (expected, output);
- // ---------------- X=0 -----------------------
- // click is before first cell
- Assert.Null (tableView.ScreenToCell (0, 0));
- Assert.Null (tableView.ScreenToCell (0, 1));
- Assert.Null (tableView.ScreenToCell (0, 2));
- Assert.Null (tableView.ScreenToCell (0, 3));
- Assert.Null (tableView.ScreenToCell (0, 4));
- // ---------------- X=1 -----------------------
- // click in header
- Assert.Null (tableView.ScreenToCell (1, 0));
- // click in header row line
- Assert.Null (tableView.ScreenToCell (1, 1));
- // click in cell 0,0
- Assert.Equal (new Point(0,0),tableView.ScreenToCell (1, 2));
- // click in cell 0,1
- Assert.Equal (new Point (0, 1), tableView.ScreenToCell (1, 3));
- // after last row
- Assert.Null (tableView.ScreenToCell (1, 4));
- // ---------------- X=2 -----------------------
- // ( even though there is a horizontal dividing line here we treat it as a hit on the cell before)
- // click in header
- Assert.Null (tableView.ScreenToCell (2, 0));
- // click in header row line
- Assert.Null (tableView.ScreenToCell (2, 1));
- // click in cell 0,0
- Assert.Equal (new Point (0, 0), tableView.ScreenToCell (2, 2));
- // click in cell 0,1
- Assert.Equal (new Point (0, 1), tableView.ScreenToCell (2, 3));
- // after last row
- Assert.Null (tableView.ScreenToCell (2, 4));
- // ---------------- X=3 -----------------------
- // click in header
- Assert.Null (tableView.ScreenToCell (3, 0));
- // click in header row line
- Assert.Null (tableView.ScreenToCell (3, 1));
- // click in cell 1,0
- Assert.Equal (new Point (1, 0), tableView.ScreenToCell (3, 2));
- // click in cell 1,1
- Assert.Equal (new Point (1, 1), tableView.ScreenToCell (3, 3));
- // after last row
- Assert.Null (tableView.ScreenToCell (3, 4));
- }
- [Fact, AutoInitShutdown]
- public void Test_ScreenToCell_DataColumnOverload ()
- {
- var tableView = GetTwoRowSixColumnTable ();
- tableView.Redraw (tableView.Bounds);
- // user can only scroll right so sees right indicator
- // Because first column in table is A
- string expected =
- @"
- │A│B│C│
- ├─┼─┼─►
- │1│2│3│
- │1│2│3│";
- TestHelpers.AssertDriverContentsAre (expected, output);
- DataColumn col;
- // ---------------- X=0 -----------------------
- // click is before first cell
- Assert.Null (tableView.ScreenToCell (0, 0,out col));
- Assert.Null (col);
- Assert.Null (tableView.ScreenToCell (0, 1,out col));
- Assert.Null (col);
- Assert.Null (tableView.ScreenToCell (0, 2,out col));
- Assert.Null (col);
- Assert.Null (tableView.ScreenToCell (0, 3,out col));
- Assert.Null (col);
- Assert.Null (tableView.ScreenToCell (0, 4,out col));
- Assert.Null (col);
- // ---------------- X=1 -----------------------
- // click in header
- Assert.Null (tableView.ScreenToCell (1, 0, out col));
- Assert.Equal ("A", col.ColumnName);
- // click in header row line (click in the horizontal line below header counts as click in header above - consistent with the column hit box)
- Assert.Null (tableView.ScreenToCell (1, 1, out col));
- Assert.Equal ("A", col.ColumnName);
- // click in cell 0,0
- Assert.Equal (new Point (0, 0), tableView.ScreenToCell (1, 2, out col));
- Assert.Null (col);
- // click in cell 0,1
- Assert.Equal (new Point (0, 1), tableView.ScreenToCell (1, 3, out col));
- Assert.Null (col);
- // after last row
- Assert.Null (tableView.ScreenToCell (1, 4, out col));
- Assert.Null (col);
- // ---------------- X=2 -----------------------
- // click in header
- Assert.Null (tableView.ScreenToCell (2, 0, out col));
- Assert.Equal ("A", col.ColumnName);
- // click in header row line
- Assert.Null (tableView.ScreenToCell (2, 1, out col));
- Assert.Equal ("A", col.ColumnName);
- // click in cell 0,0
- Assert.Equal (new Point (0, 0), tableView.ScreenToCell (2, 2, out col));
- Assert.Null (col);
- // click in cell 0,1
- Assert.Equal (new Point (0, 1), tableView.ScreenToCell (2, 3, out col));
- Assert.Null (col);
- // after last row
- Assert.Null (tableView.ScreenToCell (2, 4, out col));
- Assert.Null (col);
- // ---------------- X=3 -----------------------
- // click in header
- Assert.Null (tableView.ScreenToCell (3, 0, out col));
- Assert.Equal ("B", col.ColumnName);
- // click in header row line
- Assert.Null (tableView.ScreenToCell (3, 1, out col));
- Assert.Equal ("B", col.ColumnName);
- // click in cell 1,0
- Assert.Equal (new Point (1, 0), tableView.ScreenToCell (3, 2, out col));
- Assert.Null (col);
- // click in cell 1,1
- Assert.Equal (new Point (1, 1), tableView.ScreenToCell (3, 3, out col));
- Assert.Null (col);
- // after last row
- Assert.Null (tableView.ScreenToCell (3, 4, out col));
- Assert.Null (col);
- }
- private TableView GetTwoRowSixColumnTable ()
- {
- var tableView = new TableView ();
- tableView.ColorScheme = Colors.TopLevel;
- // 3 columns are visible
- tableView.Bounds = new Rect (0, 0, 7, 5);
- tableView.Style.ShowHorizontalHeaderUnderline = true;
- tableView.Style.ShowHorizontalHeaderOverline = false;
- tableView.Style.AlwaysShowHeaders = true;
- tableView.Style.SmoothHorizontalScrolling = true;
- var dt = new DataTable ();
- dt.Columns.Add ("A");
- dt.Columns.Add ("B");
- dt.Columns.Add ("C");
- dt.Columns.Add ("D");
- dt.Columns.Add ("E");
- dt.Columns.Add ("F");
- dt.Rows.Add (1, 2, 3, 4, 5, 6);
- dt.Rows.Add (1, 2, 3, 4, 5, 6);
- tableView.Table = dt;
- return tableView;
- }
- }
- }
|