You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/kplato/kptcontext.cpp

164 lines
7.5 KiB

/* This file is part of the KDE project
Copyright (C) 2005 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 "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"), TQt::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(TQt::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