File indexing completed on 2024-04-28 03:57:11

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2014 Miquel Sabaté Solà <mikisabate@gmail.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef VIEW_TEST_H
0009 #define VIEW_TEST_H
0010 
0011 #include "base.h"
0012 
0013 namespace Kate
0014 {
0015 class TextRange;
0016 }
0017 
0018 class ViewTest : public BaseTest
0019 {
0020     Q_OBJECT
0021 
0022 private Q_SLOTS:
0023     void yankHighlightingTests();
0024     void visualLineUpDownTests();
0025     void ScrollViewTests();
0026     void clipboardTests_data();
0027     void clipboardTests();
0028 
0029 private:
0030     QList<Kate::TextRange *> rangesOnFirstLine();
0031 };
0032 
0033 #endif /* VIEW_TEST_H */