From 8b78a8791bc539bcffe7159f9d9714d577cb3d7d Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 23 May 2021 20:48:35 +0900 Subject: Renaming of files in preparation for code style tools. Signed-off-by: Michele Calgaro --- kplato/kptconfig.cpp | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 kplato/kptconfig.cpp (limited to 'kplato/kptconfig.cpp') diff --git a/kplato/kptconfig.cpp b/kplato/kptconfig.cpp new file mode 100644 index 000000000..358b57978 --- /dev/null +++ b/kplato/kptconfig.cpp @@ -0,0 +1,87 @@ +/* This file is part of the KDE project + Copyright (C) 2004 Dag Andersen + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; + version 2 of the License. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. +*/ + +#include "kptconfig.h" + +#include "kptfactory.h" + +#include +#include + +namespace KPlato +{ + +Config::Config() +{ + m_readWrite = true; +} + +Config::~Config() +{ +} + +void Config::load() { + //kdDebug()<config(); + +/* if( config->hasGroup("Behavior")) + { + config->setGroup("Behavior"); + m_behavior.calculationMode = config->readNumEntry("CalculationMode",m_behavior.calculationMode); + m_behavior.allowOverbooking = config->readBoolEntry("AllowOverbooking",m_behavior.allowOverbooking); + }*/ + if( config->hasGroup("Task defaults")) + { + config->setGroup("Task defaults"); + m_taskDefaults.setLeader(config->readEntry("Leader")); + m_taskDefaults.setDescription(config->readEntry("Description")); + m_taskDefaults.setConstraint((Node::ConstraintType)config->readNumEntry("ConstraintType")); + m_taskDefaults.setConstraintStartTime(config->readDateTimeEntry("ConstraintStartTime")); + m_taskDefaults.setConstraintEndTime(config->readDateTimeEntry("ConstraintEndTime")); + m_taskDefaults.effort()->setType((Effort::Type)config->readNumEntry("EffortType")); + m_taskDefaults.effort()->set(Duration((TQ_INT64)config->readNumEntry("ExpectedEffort"))); + m_taskDefaults.effort()->setPessimisticRatio(config->readNumEntry("PessimisticEffort")); + m_taskDefaults.effort()->setOptimisticRatio(config->readNumEntry("OptimisticEffort")); + } +} + +void Config::save() { + //kdDebug()<config(); + +// config->setGroup( "Behavior" ); +// config->writeEntry("CalculationMode",m_behavior.calculationMode); +// config->writeEntry("AllowOverbooking",m_behavior.allowOverbooking); + + config->setGroup("Task defaults"); + config->writeEntry("Leader", m_taskDefaults.leader()); + config->writeEntry("Description", m_taskDefaults.description()); + config->writeEntry("ConstraintType", m_taskDefaults.constraint()); + config->writeEntry("ConstraintStartTime", m_taskDefaults.constraintStartTime()); + config->writeEntry("ConstraintEndTime", m_taskDefaults.constraintEndTime()); + config->writeEntry("EffortType", m_taskDefaults.effort()->type()); + config->writeEntry("ExpectedEffort", m_taskDefaults.effort()->expected().seconds()); //FIXME + config->writeEntry("PessimisticEffort", m_taskDefaults.effort()->pessimisticRatio()); + config->writeEntry("OptimisticEffort", m_taskDefaults.effort()->optimisticRatio()); +} + +} //KPlato namespace -- cgit v1.2.3