diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kplato/kptconfig.cc | |
download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kplato/kptconfig.cc')
-rw-r--r-- | kplato/kptconfig.cc | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/kplato/kptconfig.cc b/kplato/kptconfig.cc new file mode 100644 index 00000000..fc7945e4 --- /dev/null +++ b/kplato/kptconfig.cc @@ -0,0 +1,87 @@ +/* This file is part of the KDE project + Copyright (C) 2004 Dag Andersen <danders@get2net.dk> + + 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 <kconfig.h> +#include <kdebug.h> + +namespace KPlato +{ + +Config::Config() +{ + m_readWrite = true; +} + +Config::~Config() +{ +} + +void Config::load() { + //kdDebug()<<k_funcinfo<<endl; + KConfig *config = Factory::global()->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((Q_INT64)config->readNumEntry("ExpectedEffort"))); + m_taskDefaults.effort()->setPessimisticRatio(config->readNumEntry("PessimisticEffort")); + m_taskDefaults.effort()->setOptimisticRatio(config->readNumEntry("OptimisticEffort")); + } +} + +void Config::save() { + //kdDebug()<<k_funcinfo<<m_readWrite<<endl; + if (!m_readWrite) + return; + + KConfig *config = Factory::global()->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 |