diff options
author | Michele Calgaro <[email protected]> | 2021-05-23 20:48:35 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-05-29 15:17:38 +0900 |
commit | d63c9d696eb6e2539528b99afc21f4086c9defe3 (patch) | |
tree | b3bfc97a66431a12cdd8f9379c0072673ede43df /kplato/kptcontext.cpp | |
parent | 5363fe3c36504c37bdc6dcfafd5f71daeae251e8 (diff) | |
download | koffice-d63c9d696eb6e2539528b99afc21f4086c9defe3.tar.gz koffice-d63c9d696eb6e2539528b99afc21f4086c9defe3.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 8b78a8791bc539bcffe7159f9d9714d577cb3d7d)
Diffstat (limited to 'kplato/kptcontext.cpp')
-rw-r--r-- | kplato/kptcontext.cpp | 163 |
1 files changed, 163 insertions, 0 deletions
diff --git a/kplato/kptcontext.cpp b/kplato/kptcontext.cpp new file mode 100644 index 00000000..830c6c95 --- /dev/null +++ b/kplato/kptcontext.cpp @@ -0,0 +1,163 @@ +/* This file is part of the KDE project + Copyright (C) 2005 Dag Andersen <[email protected]> + + 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 "kptcontext.h" + +#include <tqdom.h> + +#include <kdebug.h> + +namespace KPlato +{ + +Context::Context() + : currentEstimateType(0), + currentSchedule(0) { +} + +Context::~Context() { +} + +bool Context::load(TQDomElement &element) { + currentView = element.attribute("current-view"); + currentEstimateType = element.attribute("estimate-type").toInt(); + currentSchedule = element.attribute("current-schedule").toLong(); + actionViewExpected = element.attribute("view-expected").toInt(); + actionViewOptimistic = element.attribute("view-optimistic").toInt(); + actionViewPessimistic = element.attribute("view-pessimistic").toInt(); + + TQDomNodeList list = element.childNodes(); + for (unsigned int i=0; i<list.count(); ++i) { + if (list.item(i).isElement()) { + TQDomElement e = list.item(i).toElement(); + if (e.tagName() == "gantt-view") { + ganttview.ganttviewsize = e.attribute("ganttview-size").toInt(); + ganttview.taskviewsize = e.attribute("taskview-size").toInt(); + ganttview.currentNode = e.attribute("current-node"); + ganttview.showResources = e.attribute("show-resources").toInt(); + ganttview.showTaskName = e.attribute("show-taskname").toInt(); + ganttview.showTaskLinks = e.attribute("show-tasklinks").toInt(); + ganttview.showProgress = e.attribute("show-progress").toInt(); + ganttview.showPositiveFloat = e.attribute("show-positivefloat").toInt(); + ganttview.showCriticalTasks = e.attribute("show-criticaltasks").toInt(); + ganttview.showCriticalPath = e.attribute("show-criticalpath").toInt(); + ganttview.showNoInformation = e.attribute("show-noinformation").toInt(); + + TQDomNodeList list = e.childNodes(); + for (unsigned int i=0; i<list.count(); ++i) { + if (list.item(i).isElement()) { + TQDomElement g = list.item(i).toElement(); + if (g.tagName() == "closed-nodes") { + TQDomNodeList list = g.childNodes(); + for (unsigned int i=0; i<list.count(); ++i) { + if (list.item(i).isElement()) { + TQDomElement ei = list.item(i).toElement(); + if (ei.tagName() == "node") { + ganttview.closedNodes.append(ei.attribute("id")); + } + } + } + } + } + } + } else if (e.tagName() == "accounts-view") { + accountsview.accountsviewsize = e.attribute("accountsview-size").toInt(); + accountsview.periodviewsize = e.attribute("periodview-size").toInt(); + accountsview.date = TQDate::fromString(e.attribute("date"), Qt::ISODate); + accountsview.period = e.attribute("period").toInt(); + accountsview.cumulative = e.attribute("cumulative").toInt(); + + TQDomNodeList list = e.childNodes(); + for (unsigned int i=0; i<list.count(); ++i) { + if (list.item(i).isElement()) { + TQDomElement g = list.item(i).toElement(); + if (g.tagName() == "closed-items") { + TQDomNodeList list = g.childNodes(); + for (unsigned int i=0; i<list.count(); ++i) { + if (list.item(i).isElement()) { + TQDomElement ei = list.item(i).toElement(); + if (ei.tagName() == "account") { + accountsview.closedItems.append(ei.attribute("name")); + } + } + } + } + } + } + } else { + kdError()<<k_funcinfo<<"Unknown tag: "<<e.tagName()<<endl; + } + } + } + + return true; +} + +void Context::save(TQDomElement &element) const { + TQDomElement me = element.ownerDocument().createElement("context"); + element.appendChild(me); + me.setAttribute("current-view", currentView); + me.setAttribute("estimate-type", currentEstimateType); + me.setAttribute("current-schedule", currentSchedule); + me.setAttribute("view-expected", actionViewExpected); + me.setAttribute("view-optimistic", actionViewOptimistic); + me.setAttribute("view-pessimistic", actionViewPessimistic); + // Ganttview + TQDomElement g = me.ownerDocument().createElement("gantt-view"); + me.appendChild(g); + g.setAttribute("ganttview-size", ganttview.ganttviewsize); + g.setAttribute("taskview-size", ganttview.taskviewsize); + g.setAttribute("current-node", ganttview.currentNode); + g.setAttribute("show-resources", ganttview.showResources); + g.setAttribute("show-taskname", ganttview.showTaskName); + g.setAttribute("show-tasklinks", ganttview.showTaskLinks); + g.setAttribute("show-progress", ganttview.showProgress); + g.setAttribute("show-positivefloat", ganttview.showPositiveFloat); + g.setAttribute("show-criticaltasks", ganttview.showCriticalTasks); + g.setAttribute("show-criticalpath", ganttview.showCriticalPath); + g.setAttribute("show-noinformation", ganttview.showNoInformation); + if (!ganttview.closedNodes.isEmpty()) { + TQDomElement e = g.ownerDocument().createElement("closed-nodes"); + g.appendChild(e); + for (TQStringList::ConstIterator it = ganttview.closedNodes.begin(); it != ganttview.closedNodes.end(); ++it) { + TQDomElement c = e.ownerDocument().createElement("node"); + e.appendChild(c); + c.setAttribute("id", (*it)); + } + } + // Accountsview + TQDomElement a = me.ownerDocument().createElement("accounts-view"); + me.appendChild(a); + a.setAttribute("accountsview-size", accountsview.accountsviewsize); + a.setAttribute("periodview-size", accountsview.periodviewsize); + a.setAttribute("date", accountsview.date.toString(Qt::ISODate)); + a.setAttribute("period", accountsview.period); + a.setAttribute("cumulative", accountsview.cumulative); + if (!accountsview.closedItems.isEmpty()) { + TQDomElement e = a.ownerDocument().createElement("closed-items"); + a.appendChild(e); + for (TQStringList::ConstIterator it = accountsview.closedItems.begin(); it != accountsview.closedItems.end(); ++it) { + TQDomElement c = e.ownerDocument().createElement("account"); + e.appendChild(c); + c.setAttribute("name", (*it)); + } + } +} + +} //KPlato namespace |