summaryrefslogtreecommitdiff
path: root/qmlplugin/loggerSettings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qmlplugin/loggerSettings.cpp')
-rw-r--r--qmlplugin/loggerSettings.cpp18
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);
+}