File: krichtextedittest.h

package info (click to toggle)
kf6-ktextwidgets 6.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 23,984 kB
  • sloc: cpp: 5,382; sh: 18; makefile: 7
file content (29 lines) | stat: -rw-r--r-- 640 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
    This file is part of the KDE libraries
    SPDX-FileCopyrightText: 2009 Thomas McGuire <mcguire@kde.org>

    SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/

#ifndef KRICHTEXTEDITTEST_H
#define KRICHTEXTEDITTEST_H

#include <QObject>

class KRichTextEditTest : public QObject
{
    Q_OBJECT

private Q_SLOTS:
    void testLinebreaks();
    void testUpdateLinkAdd();
    void testUpdateLinkRemove();
    void testHTMLLineBreaks();
    void testHTMLOrderedLists();
    void testHTMLUnorderedLists();
    void testHeading();
    void testRulerScroll();
    void testNestedLists();
};

#endif