File indexing completed on 2024-05-12 16:35:58

0001 #ifndef CALLIGRA_SHEETS_TEST_RTREE
0002 #define CALLIGRA_SHEETS_TEST_RTREE
0003 
0004 #include <QObject>
0005 
0006 namespace Calligra
0007 {
0008 namespace Sheets
0009 {
0010 
0011 class TestRTree: public QObject
0012 {
0013     Q_OBJECT
0014 private Q_SLOTS:
0015     void testIntersectingPairs();
0016     void testInsertShiftRight();
0017     void testInsertShiftDown();
0018     void testRemoveShiftLeft();
0019     void testRemoveShiftUp();
0020     void testInsertColumns();
0021     void testInsertRows();
0022     void testRemoveColumns();
0023     void testRemoveRows();
0024     void testPrimitive();
0025 };
0026 
0027 } // namespace Sheets
0028 } // namespace Calligra
0029 
0030 #endif // CALLIGRA_SHEETS_TEST_RTREE