File indexing completed on 2024-12-22 04:28:06
0001 /* 0002 Gwenview: an image viewer 0003 SPDX-FileCopyrightText: 2011 Aurélien Gâteau <agateau@kde.org> 0004 0005 SPDX-License-Identifier: GPL-2.0-or-later 0006 0007 */ 0008 #pragma once 0009 0010 // Local 0011 0012 // KDE 0013 0014 // Qt 0015 #include <QObject> 0016 0017 class SlideContainerAutoTest : public QObject 0018 { 0019 Q_OBJECT 0020 private Q_SLOTS: 0021 void testInit(); 0022 void testSlideIn(); 0023 void testSlideOut(); 0024 void testSlideInDeleteSlideOut(); 0025 void testHiddenContentResize(); 0026 };