summaryrefslogtreecommitdiff
path: root/daemon/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/settings.h')
-rw-r--r--daemon/settings.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/daemon/settings.h b/daemon/settings.h
index c685c31..1f2e2e5 100644
--- a/daemon/settings.h
+++ b/daemon/settings.h
@@ -12,6 +12,8 @@ class Settings : public MDConfGroup
Q_PROPERTY(bool notificationsMissedCall MEMBER notificationsMissedCall NOTIFY notificationsMissedCallChanged)
Q_PROPERTY(bool notificationsEmails MEMBER notificationsEmails NOTIFY notificationsEmailsChanged)
Q_PROPERTY(bool notificationsMitakuuluu MEMBER notificationsMitakuuluu NOTIFY notificationsMitakuuluuChanged)
+ Q_PROPERTY(bool notificationsTwitter MEMBER notificationsTwitter NOTIFY notificationsTwitterChanged)
+ Q_PROPERTY(bool notificationsFacebook MEMBER notificationsFacebook NOTIFY notificationsFacebookChanged)
Q_PROPERTY(bool notificationsOther MEMBER notificationsOther NOTIFY notificationsOtherChanged)
Q_PROPERTY(bool notificationsAll MEMBER notificationsAll NOTIFY notificationsAllChanged)
bool silentWhenConnected;
@@ -19,6 +21,8 @@ class Settings : public MDConfGroup
bool notificationsMissedCall;
bool notificationsEmails;
bool notificationsMitakuuluu;
+ bool notificationsTwitter;
+ bool notificationsFacebook;
bool notificationsOther;
bool notificationsAll;
@@ -33,6 +37,8 @@ signals:
void notificationsMissedCallChanged(bool);
void notificationsEmailsChanged(bool);
void notificationsMitakuuluuChanged(bool);
+ void notificationsTwitterChanged(bool);
+ void notificationsFacebookChanged(bool);
void notificationsOtherChanged(bool);
void notificationsAllChanged(bool);