File indexing completed on 2024-12-01 03:42:29
0001 /* 0002 This file is part of the KDE libraries 0003 SPDX-FileCopyrightText: 2010 Milian Wolff <mail@milianw.de> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #ifndef KATE_VIEW_TEST_H 0009 #define KATE_VIEW_TEST_H 0010 0011 #include <QObject> 0012 0013 class KateViewTest : public QObject 0014 { 0015 Q_OBJECT 0016 0017 public: 0018 KateViewTest(); 0019 ~KateViewTest() override; 0020 0021 private Q_SLOTS: 0022 void testReloadMultipleViews(); 0023 void testTabCursorOnReload(); 0024 void testLowerCaseBlockSelection(); 0025 void testCoordinatesToCursor(); 0026 void testCursorToCoordinates(); 0027 void testSelection(); 0028 void testDeselectByArrowKeys_data(); 0029 void testDeselectByArrowKeys(); 0030 void testKillline(); 0031 void testKeyDeleteBlockSelection(); 0032 void testScrollPastEndOfDocument(); 0033 void testFoldFirstLine(); 0034 void testDragAndDrop(); 0035 void testGotoMatchingBracket(); 0036 void testFindSelected(); 0037 void testTransposeWord(); 0038 0039 void testFindMatchingFoldingMarker(); 0040 void testUpdateFoldingMarkersHighlighting(); 0041 }; 0042 0043 #endif // KATE_VIEW_TEST_H