File indexing completed on 2024-05-05 16:16:21

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2009 Marco Martin <notmart@gmail.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef KSTATUSNOTIFIERITEMTEST_H
0009 #define KSTATUSNOTIFIERITEMTEST_H
0010 
0011 #include <QObject>
0012 
0013 class KStatusNotifierItem;
0014 
0015 class KStatusNotifierItemTest : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     KStatusNotifierItemTest(QObject *parent, KStatusNotifierItem *tray);
0021     //~KStatusNotifierItemTest();
0022 
0023 public Q_SLOTS:
0024     void setNeedsAttention();
0025     void setActive();
0026     void setPassive();
0027 
0028 private:
0029     KStatusNotifierItem *m_tray;
0030 };
0031 
0032 #endif