From 7e53a178ec0b87d4edb7459a926f43baa89279bc Mon Sep 17 00:00:00 2001 From: Arseniy-Movshev Date: Fri, 2 Jun 2023 13:58:20 +0100 Subject: settings: add step goal target currently this doesn't interface with the daemon in any way, this is added for future use --- qmlplugin/loggerSettings.h | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) (limited to 'qmlplugin/loggerSettings.h') diff --git a/qmlplugin/loggerSettings.h b/qmlplugin/loggerSettings.h index de593f6..6649756 100644 --- a/qmlplugin/loggerSettings.h +++ b/qmlplugin/loggerSettings.h @@ -11,12 +11,11 @@ #ifndef LOGGERSETTINGS_H #define LOGGERSETTINGS_H +#include #include #include -#include -class LoggerSettings : public QObject -{ +class LoggerSettings : public QObject { Q_OBJECT Q_PROPERTY(bool heartrateSensorEnabled READ getHeartrateSensorEnabled WRITE setHeartrateSensorEnabled) Q_PROPERTY(int heartrateSensorInterval READ getHeartrateSensorInterval WRITE setHeartrateSensorInterval) @@ -24,6 +23,9 @@ class LoggerSettings : public QObject Q_PROPERTY(bool stepCounterEnabled READ getStepCounterEnabled WRITE setStepCounterEnabled) Q_PROPERTY(int stepCounterInterval READ getStepCounterInterval WRITE setStepCounterInterval) + Q_PROPERTY(bool stepGoalEnabled READ getStepGoalEnabled WRITE setStepGoalEnabled) + Q_PROPERTY(int stepGoalTarget READ getStepGoalTarget WRITE setStepGoalTarget) + public: explicit LoggerSettings(); @@ -38,8 +40,14 @@ public slots: void setStepCounterEnabled(bool value); int getStepCounterInterval(); void setStepCounterInterval(int value); // This setting won't change anything live - service needs to be restarted. TODO + + bool getStepGoalEnabled(); + void setStepGoalEnabled(bool value); + int getStepGoalTarget(); + void setStepGoalTarget(int value); + private: - QSettings *m_settings; - QDBusInterface *m_iface; + QSettings* m_settings; + QDBusInterface* m_iface; }; #endif // LOGGERSETTINGS_H -- cgit v1.2.3-54-g00ecf