mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-26 10:33:15 +03:00
17 lines
321 B
C++
17 lines
321 B
C++
#ifndef SYSTEMTRAY_H
|
|
#define SYSTEMTRAY_H
|
|
#include <QSystemTrayIcon>
|
|
|
|
class SystemTray : public QSystemTrayIcon
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SystemTray(QObject *parent = 0);
|
|
signals:
|
|
void doubleClicked();
|
|
private slots:
|
|
void onActivate(QSystemTrayIcon::ActivationReason reason);
|
|
};
|
|
|
|
#endif // SYSTEMTRAY_H
|