|
|
|
|
@ -55,6 +55,10 @@ class NOTIFICATIONMANAGER_EXPORT Settings : public QObject |
|
|
|
|
* Whether to keep critical notifications always on top. |
|
|
|
|
*/ |
|
|
|
|
Q_PROPERTY(bool keepCriticalAlwaysOnTop READ keepCriticalAlwaysOnTop WRITE setKeepCriticalAlwaysOnTop NOTIFY settingsChanged) |
|
|
|
|
/**
|
|
|
|
|
* Whether to keep normal notifications always on top. |
|
|
|
|
*/ |
|
|
|
|
Q_PROPERTY(bool keepNormalAlwaysOnTop READ keepNormalAlwaysOnTop WRITE setKeepNormalAlwaysOnTop NOTIFY settingsChanged) |
|
|
|
|
/**
|
|
|
|
|
* Whether to show popups for low priority notifications. |
|
|
|
|
*/ |
|
|
|
|
@ -266,6 +270,9 @@ public: |
|
|
|
|
bool keepCriticalAlwaysOnTop() const; |
|
|
|
|
void setKeepCriticalAlwaysOnTop(bool enable); |
|
|
|
|
|
|
|
|
|
bool keepNormalAlwaysOnTop() const; |
|
|
|
|
void setKeepNormalAlwaysOnTop(bool enable); |
|
|
|
|
|
|
|
|
|
bool lowPriorityPopups() const; |
|
|
|
|
void setLowPriorityPopups(bool enable); |
|
|
|
|
|
|
|
|
|
|