File indexing completed on 2024-05-26 04:27:55

0001 /*
0002  *  SPDX-FileCopyrightText: 2007 Boudewijn Rempt <boud@valdyas.org>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KIS_PIXEL_SELECTION_H
0008 #define KIS_PIXEL_SELECTION_H
0009 
0010 #include <simpletest.h>
0011 
0012 class KisPixelSelectionTest : public QObject
0013 {
0014     Q_OBJECT
0015 
0016 private Q_SLOTS:
0017 
0018     void testCreation();
0019     void testSetSelected();
0020     void testSelect();
0021     void testInvert();
0022     void testClear();
0023     void testExtent();
0024     void testAddSelection();
0025     void testSubtractSelection();
0026     void testIntersectSelection();
0027     void testTotally();
0028     void testUpdateProjection();
0029     void testExactRectWithImage();
0030     void testUndo();
0031     void testInvertWithImage();
0032     void testCrossColorSpacePainting();
0033     void testOutlineCache();
0034 
0035     void testOutlineCacheTransactions();
0036 
0037     void testOutlineArtifacts();
0038 };
0039 
0040 #endif
0041