diff options
Diffstat (limited to '')
-rw-r--r-- | qmlplugin/loggerSettings.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
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); +} |