diff options
author | Alex <b0ris@b0ris-satellite.localdomain> | 2011-11-02 14:38:21 +0200 |
---|---|---|
committer | Alex <b0ris@b0ris-satellite.localdomain> | 2011-11-02 14:38:21 +0200 |
commit | 19b9a0e1b46399c91872288eba25e1502231df06 (patch) | |
tree | 5773d895169fdecf7b56cdb5b40c7d9be66b555d /client/ProxyClientApp.h | |
parent | 8174d687e6f49b729834fbd2c44d61a045e9cead (diff) |
Handle double-click event on system tray icon
Diffstat (limited to 'client/ProxyClientApp.h')
-rw-r--r-- | client/ProxyClientApp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/ProxyClientApp.h b/client/ProxyClientApp.h index 7369bad..c3c56af 100644 --- a/client/ProxyClientApp.h +++ b/client/ProxyClientApp.h @@ -3,6 +3,7 @@ #ifndef PROXY_CLIENT_APPLICATION_H #define PROXY_CLIENT_APPLICATION_H +#include <QSystemTrayIcon> #include <QApplication> class ProxyClientApp: public QApplication @@ -11,6 +12,7 @@ class ProxyClientApp: public QApplication public: ProxyClientApp(int &argc, char *argv[]); private slots: + void trayActivated(QSystemTrayIcon::ActivationReason reason); void showProxyDialog(); void quitApp(); }; |