| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742 |
- ///////////////////////////////////////////////////////////////////////////////
- // Name: tests/controls/gridtest.cpp
- // Purpose: wxGrid unit test
- // Author: Steven Lamerton
- // Created: 2010-06-25
- // Copyright: (c) 2010 Steven Lamerton
- ///////////////////////////////////////////////////////////////////////////////
- #include "testprec.h"
- #if wxUSE_GRID
- #ifdef __BORLANDC__
- #pragma hdrstop
- #endif
- #ifndef WX_PRECOMP
- #include "wx/app.h"
- #endif // WX_PRECOMP
- #include "wx/grid.h"
- #include "testableframe.h"
- #include "asserthelper.h"
- #include "wx/uiaction.h"
- // FIXME: A lot of mouse-related tests sporadically fail in wxGTK. This happens
- // almost all the time but sometimes the tests do pass and the failure
- // doesn't happen when debugging so this looks like some kind of event
- // dispatching/simulating problem rather than a real problem in wxGrid.
- //
- // Just disable these tests for now but it would be really great to
- // really fix the problem.
- #ifdef __WXGTK__
- #define NONGTK_TEST(test)
- #else
- #define NONGTK_TEST(test) WXUISIM_TEST(test)
- #endif
- class GridTestCase : public CppUnit::TestCase
- {
- public:
- GridTestCase() { }
- virtual void setUp();
- virtual void tearDown();
- private:
- CPPUNIT_TEST_SUITE( GridTestCase );
- WXUISIM_TEST( CellEdit );
- NONGTK_TEST( CellClick );
- NONGTK_TEST( CellSelect );
- NONGTK_TEST( LabelClick );
- NONGTK_TEST( SortClick );
- WXUISIM_TEST( Size );
- NONGTK_TEST( RangeSelect );
- CPPUNIT_TEST( Cursor );
- CPPUNIT_TEST( Selection );
- CPPUNIT_TEST( AddRowCol );
- CPPUNIT_TEST( ColumnOrder );
- CPPUNIT_TEST( ColumnVisibility );
- CPPUNIT_TEST( LineFormatting );
- CPPUNIT_TEST( SortSupport );
- CPPUNIT_TEST( Labels );
- CPPUNIT_TEST( SelectionMode );
- CPPUNIT_TEST( CellFormatting );
- WXUISIM_TEST( Editable );
- WXUISIM_TEST( ReadOnly );
- CPPUNIT_TEST( PseudoTest_NativeHeader );
- NONGTK_TEST( LabelClick );
- NONGTK_TEST( SortClick );
- CPPUNIT_TEST( ColumnOrder );
- CPPUNIT_TEST( PseudoTest_NativeLabels );
- NONGTK_TEST( LabelClick );
- NONGTK_TEST( SortClick );
- CPPUNIT_TEST( ColumnOrder );
- CPPUNIT_TEST_SUITE_END();
- void CellEdit();
- void CellClick();
- void CellSelect();
- void LabelClick();
- void SortClick();
- void Size();
- void RangeSelect();
- void Cursor();
- void Selection();
- void AddRowCol();
- void ColumnOrder();
- void ColumnVisibility();
- void LineFormatting();
- void SortSupport();
- void Labels();
- void SelectionMode();
- void CellFormatting();
- void Editable();
- void ReadOnly();
- void PseudoTest_NativeHeader() { ms_nativeheader = true; }
- void PseudoTest_NativeLabels() { ms_nativeheader = false;
- ms_nativelabels = true; }
- static bool ms_nativeheader;
- static bool ms_nativelabels;
- wxGrid *m_grid;
- DECLARE_NO_COPY_CLASS(GridTestCase)
- };
- // register in the unnamed registry so that these tests are run by default
- CPPUNIT_TEST_SUITE_REGISTRATION( GridTestCase );
- // also include in its own registry so that these tests can be run alone
- CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GridTestCase, "GridTestCase" );
- //initialise the static variable
- bool GridTestCase::ms_nativeheader = false;
- bool GridTestCase::ms_nativelabels = false;
- void GridTestCase::setUp()
- {
- m_grid = new wxGrid(wxTheApp->GetTopWindow(), wxID_ANY);
- m_grid->CreateGrid(10, 2);
- m_grid->SetSize(400, 200);
- if( ms_nativeheader )
- m_grid->UseNativeColHeader();
- if( ms_nativelabels )
- m_grid->SetUseNativeColLabels();
- m_grid->Refresh();
- m_grid->Update();
- }
- void GridTestCase::tearDown()
- {
- // This is just a hack to continue the rest of the tests to run: if we
- // destroy the header control while it has capture, this results in an
- // assert failure and while handling an exception from it more bad things
- // happen (as it's thrown from a dtor), resulting in simply aborting
- // everything. So ensure that it doesn't have capture in any case.
- //
- // Of course, the right thing to do would be to understand why does it
- // still have capture when the grid is destroyed sometimes.
- wxWindow* const win = wxWindow::GetCapture();
- if ( win )
- win->ReleaseMouse();
- wxDELETE(m_grid);
- }
- void GridTestCase::CellEdit()
- {
- // TODO on OSX when running the grid test suite solo this works
- // but not when running it together with other tests
- #if wxUSE_UIACTIONSIMULATOR && !defined(__WXOSX__)
- EventCounter changing(m_grid, wxEVT_GRID_CELL_CHANGING);
- EventCounter changed(m_grid, wxEVT_GRID_CELL_CHANGED);
- EventCounter created(m_grid, wxEVT_GRID_EDITOR_CREATED);
- wxUIActionSimulator sim;
- m_grid->SetFocus();
- m_grid->SetGridCursor(1, 1);
- m_grid->ShowCellEditControl();
- sim.Text("abab");
- sim.Char(WXK_RETURN);
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, created.GetCount());
- CPPUNIT_ASSERT_EQUAL(1, changing.GetCount());
- CPPUNIT_ASSERT_EQUAL(1, changed.GetCount());
- #endif
- }
- void GridTestCase::CellClick()
- {
- #if wxUSE_UIACTIONSIMULATOR
- EventCounter lclick(m_grid, wxEVT_GRID_CELL_LEFT_CLICK);
- EventCounter ldclick(m_grid, wxEVT_GRID_CELL_LEFT_DCLICK);
- EventCounter rclick(m_grid, wxEVT_GRID_CELL_RIGHT_CLICK);
- EventCounter rdclick(m_grid, wxEVT_GRID_CELL_RIGHT_DCLICK);
- wxUIActionSimulator sim;
- wxRect rect = m_grid->CellToRect(0, 0);
- wxPoint point = m_grid->CalcScrolledPosition(rect.GetPosition());
- point = m_grid->ClientToScreen(point + wxPoint(m_grid->GetRowLabelSize(),
- m_grid->GetColLabelSize())
- + wxPoint(2, 2));
- sim.MouseMove(point);
- wxYield();
- sim.MouseClick();
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, lclick.GetCount());
- lclick.Clear();
- sim.MouseDblClick();
- wxYield();
- //A double click event sends a single click event first
- //test to ensure this still happens in the future
- CPPUNIT_ASSERT_EQUAL(1, lclick.GetCount());
- CPPUNIT_ASSERT_EQUAL(1, ldclick.GetCount());
- sim.MouseClick(wxMOUSE_BTN_RIGHT);
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, rclick.GetCount());
- rclick.Clear();
- sim.MouseDblClick(wxMOUSE_BTN_RIGHT);
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, rclick.GetCount());
- CPPUNIT_ASSERT_EQUAL(1, rdclick.GetCount());
- #endif
- }
- void GridTestCase::CellSelect()
- {
- #if wxUSE_UIACTIONSIMULATOR
- EventCounter cell(m_grid, wxEVT_GRID_SELECT_CELL);
- wxUIActionSimulator sim;
- wxRect rect = m_grid->CellToRect(0, 0);
- wxPoint point = m_grid->CalcScrolledPosition(rect.GetPosition());
- point = m_grid->ClientToScreen(point + wxPoint(m_grid->GetRowLabelSize(),
- m_grid->GetColLabelSize())
- + wxPoint(4, 4));
- sim.MouseMove(point);
- wxYield();
- sim.MouseClick();
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, cell.GetCount());
- cell.Clear();
- m_grid->SetGridCursor(1, 1);
- m_grid->GoToCell(1, 0);
- sim.MouseMove(point);
- wxYield();
- sim.MouseDblClick();
- wxYield();
- CPPUNIT_ASSERT_EQUAL(3, cell.GetCount());
- #endif
- }
- void GridTestCase::LabelClick()
- {
- #if wxUSE_UIACTIONSIMULATOR
- EventCounter lclick(m_grid, wxEVT_GRID_LABEL_LEFT_CLICK);
- EventCounter ldclick(m_grid, wxEVT_GRID_LABEL_LEFT_DCLICK);
- EventCounter rclick(m_grid, wxEVT_GRID_LABEL_RIGHT_CLICK);
- EventCounter rdclick(m_grid, wxEVT_GRID_LABEL_RIGHT_DCLICK);
- wxUIActionSimulator sim;
- wxPoint pos(m_grid->GetRowLabelSize() + 2, 2);
- pos = m_grid->ClientToScreen(pos);
- sim.MouseMove(pos);
- wxYield();
- sim.MouseClick();
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, lclick.GetCount());
- sim.MouseDblClick();
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, ldclick.GetCount());
- sim.MouseClick(wxMOUSE_BTN_RIGHT);
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, rclick.GetCount());
- rclick.Clear();
- sim.MouseDblClick(wxMOUSE_BTN_RIGHT);
- wxYield();
- if( ms_nativeheader )
- {
- //Right double click not supported with native headers so we get two
- //right click events
- CPPUNIT_ASSERT_EQUAL(2, rclick.GetCount());
- }
- else
- {
- CPPUNIT_ASSERT_EQUAL(1, rclick.GetCount());
- CPPUNIT_ASSERT_EQUAL(1, rdclick.GetCount());
- }
- #endif
- }
- void GridTestCase::SortClick()
- {
- #if wxUSE_UIACTIONSIMULATOR
- m_grid->SetSortingColumn(0);
- EventCounter sort(m_grid, wxEVT_GRID_COL_SORT);
- wxUIActionSimulator sim;
- wxPoint pos(m_grid->GetRowLabelSize() + 4, 4);
- pos = m_grid->ClientToScreen(pos);
- sim.MouseMove(pos);
- wxYield();
- sim.MouseClick();
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, sort.GetCount());
- #endif
- }
- void GridTestCase::Size()
- {
- // TODO on OSX resizing interactively works, but not automated
- #if wxUSE_UIACTIONSIMULATOR && !defined(__WXGTK__) && !defined(__WXOSX__)
- EventCounter colsize(m_grid, wxEVT_GRID_COL_SIZE);
- EventCounter rowsize(m_grid, wxEVT_GRID_ROW_SIZE);
- wxUIActionSimulator sim;
- wxPoint pt = m_grid->ClientToScreen(wxPoint(m_grid->GetRowLabelSize() +
- m_grid->GetColSize(0), 5));
- sim.MouseMove(pt);
- wxYield();
- sim.MouseDown();
- wxYield();
- sim.MouseMove(pt.x + 50, pt.y);
- wxYield();
- sim.MouseUp();
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, colsize.GetCount());
- pt = m_grid->ClientToScreen(wxPoint(5, m_grid->GetColLabelSize() +
- m_grid->GetRowSize(0)));
- sim.MouseDragDrop(pt.x, pt.y, pt.x, pt.y + 50);
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, rowsize.GetCount());
- #endif
- }
- void GridTestCase::RangeSelect()
- {
- #if wxUSE_UIACTIONSIMULATOR
- EventCounter select(m_grid, wxEVT_GRID_RANGE_SELECT);
- wxUIActionSimulator sim;
- //We add the extra 10 to ensure that we are inside the cell
- wxPoint pt = m_grid->ClientToScreen(wxPoint(m_grid->GetRowLabelSize() + 10,
- m_grid->GetColLabelSize() + 10)
- );
- sim.MouseMove(pt);
- wxYield();
- sim.MouseDown();
- wxYield();
- sim.MouseMove(pt.x + 50, pt.y + 50);
- wxYield();
- sim.MouseUp();
- wxYield();
- CPPUNIT_ASSERT_EQUAL(1, select.GetCount());
- #endif
- }
- void GridTestCase::Cursor()
- {
- m_grid->SetGridCursor(1, 1);
- CPPUNIT_ASSERT_EQUAL(1, m_grid->GetGridCursorCol());
- CPPUNIT_ASSERT_EQUAL(1, m_grid->GetGridCursorRow());
- m_grid->MoveCursorDown(false);
- m_grid->MoveCursorLeft(false);
- m_grid->MoveCursorUp(false);
- m_grid->MoveCursorUp(false);
- m_grid->MoveCursorRight(false);
- CPPUNIT_ASSERT_EQUAL(1, m_grid->GetGridCursorCol());
- CPPUNIT_ASSERT_EQUAL(0, m_grid->GetGridCursorRow());
- m_grid->SetCellValue(0, 0, "some text");
- m_grid->SetCellValue(3, 0, "other text");
- m_grid->SetCellValue(0, 1, "more text");
- m_grid->SetCellValue(3, 1, "extra text");
- m_grid->Update();
- m_grid->Refresh();
- m_grid->MoveCursorLeftBlock(false);
- CPPUNIT_ASSERT_EQUAL(0, m_grid->GetGridCursorCol());
- CPPUNIT_ASSERT_EQUAL(0, m_grid->GetGridCursorRow());
- m_grid->MoveCursorDownBlock(false);
- CPPUNIT_ASSERT_EQUAL(0, m_grid->GetGridCursorCol());
- CPPUNIT_ASSERT_EQUAL(3, m_grid->GetGridCursorRow());
- m_grid->MoveCursorRightBlock(false);
- CPPUNIT_ASSERT_EQUAL(1, m_grid->GetGridCursorCol());
- CPPUNIT_ASSERT_EQUAL(3, m_grid->GetGridCursorRow());
- m_grid->MoveCursorUpBlock(false);
- CPPUNIT_ASSERT_EQUAL(1, m_grid->GetGridCursorCol());
- CPPUNIT_ASSERT_EQUAL(0, m_grid->GetGridCursorRow());
- }
- void GridTestCase::Selection()
- {
- m_grid->SelectAll();
- CPPUNIT_ASSERT(m_grid->IsSelection());
- CPPUNIT_ASSERT(m_grid->IsInSelection(0, 0));
- CPPUNIT_ASSERT(m_grid->IsInSelection(9, 1));
- m_grid->SelectBlock(1, 0, 3, 1);
- wxGridCellCoordsArray topleft = m_grid->GetSelectionBlockTopLeft();
- wxGridCellCoordsArray bottomright = m_grid->GetSelectionBlockBottomRight();
- CPPUNIT_ASSERT_EQUAL(1, topleft.Count());
- CPPUNIT_ASSERT_EQUAL(1, bottomright.Count());
- CPPUNIT_ASSERT_EQUAL(0, topleft.Item(0).GetCol());
- CPPUNIT_ASSERT_EQUAL(1, topleft.Item(0).GetRow());
- CPPUNIT_ASSERT_EQUAL(1, bottomright.Item(0).GetCol());
- CPPUNIT_ASSERT_EQUAL(3, bottomright.Item(0).GetRow());
- m_grid->SelectCol(1);
- CPPUNIT_ASSERT(m_grid->IsInSelection(0, 1));
- CPPUNIT_ASSERT(m_grid->IsInSelection(9, 1));
- CPPUNIT_ASSERT(!m_grid->IsInSelection(3, 0));
- m_grid->SelectRow(4);
- CPPUNIT_ASSERT(m_grid->IsInSelection(4, 0));
- CPPUNIT_ASSERT(m_grid->IsInSelection(4, 1));
- CPPUNIT_ASSERT(!m_grid->IsInSelection(3, 0));
- }
- void GridTestCase::AddRowCol()
- {
- CPPUNIT_ASSERT_EQUAL(10, m_grid->GetNumberRows());
- CPPUNIT_ASSERT_EQUAL(2, m_grid->GetNumberCols());
- m_grid->AppendCols();
- m_grid->AppendRows();
- CPPUNIT_ASSERT_EQUAL(11, m_grid->GetNumberRows());
- CPPUNIT_ASSERT_EQUAL(3, m_grid->GetNumberCols());
- m_grid->AppendCols(2);
- m_grid->AppendRows(2);
- CPPUNIT_ASSERT_EQUAL(13, m_grid->GetNumberRows());
- CPPUNIT_ASSERT_EQUAL(5, m_grid->GetNumberCols());
- m_grid->InsertCols(1, 2);
- m_grid->InsertRows(2, 3);
- CPPUNIT_ASSERT_EQUAL(16, m_grid->GetNumberRows());
- CPPUNIT_ASSERT_EQUAL(7, m_grid->GetNumberCols());
- }
- void GridTestCase::ColumnOrder()
- {
- m_grid->AppendCols(2);
- CPPUNIT_ASSERT_EQUAL(4, m_grid->GetNumberCols());
- wxArrayInt neworder;
- neworder.push_back(1);
- neworder.push_back(3);
- neworder.push_back(2);
- neworder.push_back(0);
- m_grid->SetColumnsOrder(neworder);
- CPPUNIT_ASSERT_EQUAL(0, m_grid->GetColPos(1));
- CPPUNIT_ASSERT_EQUAL(1, m_grid->GetColPos(3));
- CPPUNIT_ASSERT_EQUAL(2, m_grid->GetColPos(2));
- CPPUNIT_ASSERT_EQUAL(3, m_grid->GetColPos(0));
- CPPUNIT_ASSERT_EQUAL(1, m_grid->GetColAt(0));
- CPPUNIT_ASSERT_EQUAL(3, m_grid->GetColAt(1));
- CPPUNIT_ASSERT_EQUAL(2, m_grid->GetColAt(2));
- CPPUNIT_ASSERT_EQUAL(0, m_grid->GetColAt(3));
- m_grid->ResetColPos();
- CPPUNIT_ASSERT_EQUAL(0, m_grid->GetColPos(0));
- CPPUNIT_ASSERT_EQUAL(1, m_grid->GetColPos(1));
- CPPUNIT_ASSERT_EQUAL(2, m_grid->GetColPos(2));
- CPPUNIT_ASSERT_EQUAL(3, m_grid->GetColPos(3));
- }
- void GridTestCase::ColumnVisibility()
- {
- m_grid->AppendCols(3);
- CPPUNIT_ASSERT( m_grid->IsColShown(1) );
- m_grid->HideCol(1);
- CPPUNIT_ASSERT( !m_grid->IsColShown(1) );
- CPPUNIT_ASSERT( m_grid->IsColShown(2) );
- m_grid->ShowCol(1);
- CPPUNIT_ASSERT( m_grid->IsColShown(1) );
- }
- void GridTestCase::LineFormatting()
- {
- CPPUNIT_ASSERT(m_grid->GridLinesEnabled());
- m_grid->EnableGridLines(false);
- CPPUNIT_ASSERT(!m_grid->GridLinesEnabled());
- m_grid->EnableGridLines();
- m_grid->SetGridLineColour(*wxRED);
- CPPUNIT_ASSERT_EQUAL(m_grid->GetGridLineColour(), *wxRED);
- }
- void GridTestCase::SortSupport()
- {
- CPPUNIT_ASSERT_EQUAL(wxNOT_FOUND, m_grid->GetSortingColumn());
- m_grid->SetSortingColumn(1);
- CPPUNIT_ASSERT(!m_grid->IsSortingBy(0));
- CPPUNIT_ASSERT(m_grid->IsSortingBy(1));
- CPPUNIT_ASSERT(m_grid->IsSortOrderAscending());
- m_grid->SetSortingColumn(0, false);
- CPPUNIT_ASSERT(m_grid->IsSortingBy(0));
- CPPUNIT_ASSERT(!m_grid->IsSortingBy(1));
- CPPUNIT_ASSERT(!m_grid->IsSortOrderAscending());
- m_grid->UnsetSortingColumn();
- CPPUNIT_ASSERT(!m_grid->IsSortingBy(0));
- CPPUNIT_ASSERT(!m_grid->IsSortingBy(1));
- }
- void GridTestCase::Labels()
- {
- CPPUNIT_ASSERT_EQUAL("A", m_grid->GetColLabelValue(0));
- CPPUNIT_ASSERT_EQUAL("1", m_grid->GetRowLabelValue(0));
- m_grid->SetColLabelValue(0, "Column 1");
- m_grid->SetRowLabelValue(0, "Row 1");
- CPPUNIT_ASSERT_EQUAL("Column 1", m_grid->GetColLabelValue(0));
- CPPUNIT_ASSERT_EQUAL("Row 1", m_grid->GetRowLabelValue(0));
- m_grid->SetLabelTextColour(*wxGREEN);
- m_grid->SetLabelBackgroundColour(*wxRED);
- CPPUNIT_ASSERT_EQUAL(*wxGREEN, m_grid->GetLabelTextColour());
- CPPUNIT_ASSERT_EQUAL(*wxRED, m_grid->GetLabelBackgroundColour());
- m_grid->SetColLabelTextOrientation(wxVERTICAL);
- CPPUNIT_ASSERT_EQUAL(static_cast<int>(wxVERTICAL),
- static_cast<int>(m_grid->GetColLabelTextOrientation()));
- }
- void GridTestCase::SelectionMode()
- {
- //We already test this mode in Select
- CPPUNIT_ASSERT_EQUAL(wxGrid::wxGridSelectCells,
- m_grid->GetSelectionMode());
- //Test row selection be selecting a single cell and checking the whole
- //row is selected
- m_grid->SetSelectionMode(wxGrid::wxGridSelectRows);
- m_grid->SelectBlock(3, 1, 3, 1);
- wxArrayInt selectedRows = m_grid->GetSelectedRows();
- CPPUNIT_ASSERT_EQUAL(1, selectedRows.Count());
- CPPUNIT_ASSERT_EQUAL(3, selectedRows[0]);
- CPPUNIT_ASSERT_EQUAL(wxGrid::wxGridSelectRows,
- m_grid->GetSelectionMode());
- //Test column selection be selecting a single cell and checking the whole
- //column is selected
- m_grid->SetSelectionMode(wxGrid::wxGridSelectColumns);
- m_grid->SelectBlock(3, 1, 3, 1);
- wxArrayInt selectedCols = m_grid->GetSelectedCols();
- CPPUNIT_ASSERT_EQUAL(1, selectedCols.Count());
- CPPUNIT_ASSERT_EQUAL(1, selectedCols[0]);
- CPPUNIT_ASSERT_EQUAL(wxGrid::wxGridSelectColumns,
- m_grid->GetSelectionMode());
- }
- void GridTestCase::CellFormatting()
- {
- //Check that initial alignment is default
- int horiz, cellhoriz, vert, cellvert;
- m_grid->GetDefaultCellAlignment(&horiz, &vert);
- m_grid->GetCellAlignment(0, 0, &cellhoriz, &cellvert);
- CPPUNIT_ASSERT_EQUAL(cellhoriz, horiz);
- CPPUNIT_ASSERT_EQUAL(cellvert, vert);
- //Check initial text colour and background colour are default
- wxColour text, back;
- back = m_grid->GetDefaultCellBackgroundColour();
- CPPUNIT_ASSERT_EQUAL(back, m_grid->GetCellBackgroundColour(0, 0));
- back = m_grid->GetDefaultCellTextColour();
- CPPUNIT_ASSERT_EQUAL(back, m_grid->GetCellTextColour(0, 0));
- #if WXWIN_COMPATIBILITY_2_8
- m_grid->SetCellAlignment(wxALIGN_CENTRE, 0, 0);
- m_grid->GetCellAlignment(0, 0, &cellhoriz, &cellvert);
- CPPUNIT_ASSERT_EQUAL(static_cast<int>(wxALIGN_CENTRE), cellhoriz);
- CPPUNIT_ASSERT_EQUAL(static_cast<int>(wxALIGN_CENTRE), cellvert);
- #endif // WXWIN_COMPATIBILITY_2_8
- m_grid->SetCellAlignment(0, 0, wxALIGN_LEFT, wxALIGN_BOTTOM);
- m_grid->GetCellAlignment(0, 0, &cellhoriz, &cellvert);
- CPPUNIT_ASSERT_EQUAL(static_cast<int>(wxALIGN_LEFT), cellhoriz);
- CPPUNIT_ASSERT_EQUAL(static_cast<int>(wxALIGN_BOTTOM), cellvert);
- #if WXWIN_COMPATIBILITY_2_8
- m_grid->SetCellTextColour(*wxRED, 0, 0);
- CPPUNIT_ASSERT_EQUAL(*wxRED, m_grid->GetCellTextColour(0, 0));
- #endif // WXWIN_COMPATIBILITY_2_8
- m_grid->SetCellTextColour(0, 0, *wxGREEN);
- CPPUNIT_ASSERT_EQUAL(*wxGREEN, m_grid->GetCellTextColour(0, 0));
- }
- void GridTestCase::Editable()
- {
- #if wxUSE_UIACTIONSIMULATOR
- //As the grid is not editable we shouldn't create an editor
- EventCounter created(m_grid, wxEVT_GRID_EDITOR_CREATED);
- wxUIActionSimulator sim;
- CPPUNIT_ASSERT(m_grid->IsEditable());
- m_grid->EnableEditing(false);
- CPPUNIT_ASSERT(!m_grid->IsEditable());
- m_grid->SetFocus();
- m_grid->SetGridCursor(1, 1);
- m_grid->ShowCellEditControl();
- sim.Text("abab");
- wxYield();
- sim.Char(WXK_RETURN);
- wxYield();
- CPPUNIT_ASSERT_EQUAL(0, created.GetCount());
- #endif
- }
- void GridTestCase::ReadOnly()
- {
- #if wxUSE_UIACTIONSIMULATOR
- //As the cell is readonly we shouldn't create an editor
- EventCounter created(m_grid, wxEVT_GRID_EDITOR_CREATED);
- wxUIActionSimulator sim;
- CPPUNIT_ASSERT(!m_grid->IsReadOnly(1, 1));
- m_grid->SetReadOnly(1, 1);
- CPPUNIT_ASSERT(m_grid->IsReadOnly(1, 1));
- m_grid->SetFocus();
- m_grid->SetGridCursor(1, 1);
- CPPUNIT_ASSERT(m_grid->IsCurrentCellReadOnly());
- m_grid->ShowCellEditControl();
- sim.Text("abab");
- wxYield();
- sim.Char(WXK_RETURN);
- wxYield();
- CPPUNIT_ASSERT_EQUAL(0, created.GetCount());
- #endif
- }
- #endif //wxUSE_GRID
|