diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2014-08-10 14:50:04 +0200 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2014-08-10 14:50:04 +0200 |
| commit | ff2a3a520f6562bc127fdcbb9b68029783bc3dcc (patch) | |
| tree | 3b3c50c1f8861f5570175ee0bd32f6cfc2ddd067 /daemon/settings.h | |
| parent | 96ad10715d2f28913d102ed95bde44184cd512fd (diff) | |
| parent | 7c35daca74fb4a4f8ed7e2fadc22ec18e0295744 (diff) | |
Merge pull request #15 from custodian/transliteration
Transliterate messages before sending to Pebble
Diffstat (limited to 'daemon/settings.h')
| -rw-r--r-- | daemon/settings.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/daemon/settings.h b/daemon/settings.h index 03423e4..d6db9b6 100644 --- a/daemon/settings.h +++ b/daemon/settings.h @@ -8,6 +8,7 @@ class Settings : public MDConfGroup Q_OBJECT Q_PROPERTY(bool silentWhenConnected MEMBER silentWhenConnected NOTIFY silentWhenConnectedChanged) + Q_PROPERTY(bool transliterateMessage MEMBER transliterateMessage NOTIFY transliterateMessageChanged) Q_PROPERTY(bool incomingCallNotification MEMBER incomingCallNotification NOTIFY incomingCallNotificationChanged) Q_PROPERTY(bool notificationsCommhistoryd MEMBER notificationsCommhistoryd NOTIFY notificationsCommhistorydChanged) Q_PROPERTY(bool notificationsMissedCall MEMBER notificationsMissedCall NOTIFY notificationsMissedCallChanged) @@ -18,6 +19,7 @@ class Settings : public MDConfGroup Q_PROPERTY(bool notificationsOther MEMBER notificationsOther NOTIFY notificationsOtherChanged) Q_PROPERTY(bool notificationsAll MEMBER notificationsAll NOTIFY notificationsAllChanged) bool silentWhenConnected; + bool transliterateMessage; bool incomingCallNotification; bool notificationsCommhistoryd; bool notificationsMissedCall; @@ -35,6 +37,7 @@ public: signals: void silentWhenConnectedChanged(bool); + void transliterateMessageChanged(bool); void incomingCallNotificationChanged(bool); void notificationsCommhistorydChanged(bool); void notificationsMissedCallChanged(bool); |
