summaryrefslogtreecommitdiff
path: root/daemon/settings.h
diff options
context:
space:
mode:
authorBasil Semuonov <basil.semuonov@gmail.com>2014-08-10 13:27:57 +0400
committerBasil Semuonov <basil.semuonov@gmail.com>2014-08-10 13:27:57 +0400
commite0c926bd934d857e84faecd970b9e78f7a9e0dcd (patch)
tree718c68851e83ec9ed0d3c860548ebd16bdd637bd /daemon/settings.h
parent3d797fa577b640efc524467092ac502e783203f5 (diff)
Transliterate russian cyrillic
Diffstat (limited to 'daemon/settings.h')
-rw-r--r--daemon/settings.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/daemon/settings.h b/daemon/settings.h
index 03423e4..87e4919 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 transliterateCyrillic MEMBER transliterateCyrillic NOTIFY transliterateCyrillicChanged)
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 transliterateCyrillic;
bool incomingCallNotification;
bool notificationsCommhistoryd;
bool notificationsMissedCall;
@@ -35,6 +37,7 @@ public:
signals:
void silentWhenConnectedChanged(bool);
+ void transliterateCyrillicChanged(bool);
void incomingCallNotificationChanged(bool);
void notificationsCommhistorydChanged(bool);
void notificationsMissedCallChanged(bool);