File indexing completed on 2024-06-16 04:13:17

0001 /* This file is part of the KDE project
0002    SPDX-FileCopyrightText: 2017 Boudewijn Rempt
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #ifndef TESTDOCUMENT_H
0007 #define TESTDOCUMENT_H
0008 
0009 #include <QObject>
0010 
0011 class TestDocument : public QObject
0012 {
0013     Q_OBJECT
0014 private Q_SLOTS:
0015     void testSetColorSpace();
0016     void testSetColorProfile();
0017     void testPixelData();
0018     void testThumbnail();
0019     void testCreateFillLayer();
0020     void testCreateCloneLayer();
0021     void testCreateTransparencyMask();
0022     void testCreateColorizeMask();
0023     void testAnnotations();
0024     void testNodeByName();
0025     void testNodeByUniqueId();
0026 };
0027 
0028 #endif
0029