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.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'qmlplugin/loggerSettings.cpp') diff --git a/qmlplugin/loggerSettings.cpp b/qmlplugin/loggerSettings.cpp index 3aa987c..d7849c5 100644 --- a/qmlplugin/loggerSettings.cpp +++ b/qmlplugin/loggerSettings.cpp @@ -68,3 +68,21 @@ void LoggerSettings::setStepCounterInterval(int value) { this->m_settings->setValue("stepCounter/interval", value); } + +bool LoggerSettings::getStepGoalEnabled() +{ + return this->m_settings->value("stepCounter/goal0/enabled", false).toBool(); +} +void LoggerSettings::setStepGoalEnabled(bool value) +{ + this->m_settings->setValue("stepCounter/goal0/enabled", value); +} +int LoggerSettings::getStepGoalTarget() +{ + return this->m_settings->value("stepCounter/goal0/target", 0).toInt(); +} + +void LoggerSettings::setStepGoalTarget(int value) +{ + this->m_settings->setValue("stepCounter/goal0/target", value); +} -- cgit v1.2.3-54-g00ecf