File indexing completed on 2025-03-09 04:03:50
0001 /* 0002 * SPDX-FileCopyrightText: 2006-2010 Thomas Zander <zander@kde.org> 0003 * SPDX-License-Identifier: GPL-2.0-or-later 0004 */ 0005 #ifndef TESTSHAPEPAINT_H 0006 #define TESTSHAPEPAINT_H 0007 0008 #include <QObject> 0009 0010 class TestShapePainting : public QObject 0011 { 0012 Q_OBJECT 0013 private Q_SLOTS: 0014 0015 void testPaintShape(); 0016 void testPaintHiddenShape(); 0017 void testPaintOrder(); 0018 void testGroupUngroup(); 0019 }; 0020 0021 #endif