File indexing completed on 2024-05-05 05:31:26

0001 /*
0002     SPDX-FileCopyrightText: 2016 Martin Graesslin <mgraesslin@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 
0006 */
0007 
0008 #ifndef ONSCREENNOTIFICATIONTEST_H
0009 #define ONSCREENNOTIFICATIONTEST_H
0010 
0011 #include <QObject>
0012 
0013 class OnScreenNotificationTest : public QObject
0014 {
0015     Q_OBJECT
0016 private Q_SLOTS:
0017 
0018     void show();
0019     void timeout();
0020     void iconName();
0021     void message();
0022 };
0023 
0024 #endif // ONSCREENNOTIFICATIONTEST_H