mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
28 lines
398 B
C
28 lines
398 B
C
![]() |
#ifndef KPASSIVEPOPUPTEST_H
|
||
|
#define KPASSIVEPOPUPTEST_H
|
||
|
|
||
|
#include <QtCore/QObject>
|
||
|
#include <QtGui/QSystemTrayIcon>
|
||
|
|
||
|
class Test : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
Test() : QObject() {}
|
||
|
~Test() {}
|
||
|
|
||
|
public Q_SLOTS:
|
||
|
void showIt();
|
||
|
void showIt2();
|
||
|
void showIt3();
|
||
|
void showIt4();
|
||
|
void showIt5();
|
||
|
void showIt6(QSystemTrayIcon::ActivationReason);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // KPASSIVEPOPUPTEST_H
|
||
|
|
||
|
|