summaryrefslogtreecommitdiff
path: root/daemon/settings.h
diff options
context:
space:
mode:
authorPhilipp Andreas <github@smurfy.de>2014-07-23 22:12:07 +0200
committerPhilipp Andreas <github@smurfy.de>2014-07-23 22:12:07 +0200
commit5f3e8fd022e29d3014b4e0888f310a5ac512b467 (patch)
tree1afbdb4898711d8a010196cb12431c3d747625bf /daemon/settings.h
parent33d912d5ea022352c8614c386d5ae3c25e4e5aa6 (diff)
Added Twitter support and prepared facebook support
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);