File indexing completed on 2024-05-05 12:20:59

0001 #ifndef KPASSIVEPOPUPTEST_H
0002 #define KPASSIVEPOPUPTEST_H
0003 
0004 #include <QObject>
0005 #include <QSystemTrayIcon>
0006 
0007 class Test : public QObject
0008 {
0009     Q_OBJECT
0010 
0011 public:
0012     Test()
0013         : QObject()
0014     {
0015     }
0016     ~Test() override
0017     {
0018     }
0019 
0020 public Q_SLOTS:
0021     void showIt();
0022     void showIt2();
0023     void showIt3();
0024     void showIt4();
0025     void showIt5();
0026     void showIt6();
0027     void showIt7();
0028     void showItIcon(QSystemTrayIcon::ActivationReason);
0029 };
0030 
0031 #endif // KPASSIVEPOPUPTEST_H