Notify users on 1st time close/minimize to tray

This commit is contained in:
sledgehammer999 2018-08-03 14:55:20 +03:00
commit fd30bf7423
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2
3 changed files with 40 additions and 2 deletions

View file

@ -286,10 +286,14 @@ public:
#ifndef Q_OS_MAC
bool systrayIntegration() const;
void setSystrayIntegration(bool enabled);
bool minimizeToTrayNotified() const;
void setMinimizeToTrayNotified(bool b);
bool minimizeToTray() const;
void setMinimizeToTray(bool b);
bool closeToTray() const;
void setCloseToTray(bool b);
bool closeToTrayNotified() const;
void setCloseToTrayNotified(bool b);
TrayIcon::Style trayIconStyle() const;
void setTrayIconStyle(TrayIcon::Style style);
#endif