summaryrefslogtreecommitdiffstats
path: root/kplato/kptcontext.cc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2021-05-23 20:48:35 +0900
committerMichele Calgaro <[email protected]>2021-05-29 15:16:28 +0900
commit8b78a8791bc539bcffe7159f9d9714d577cb3d7d (patch)
tree1328291f966f19a22d7b13657d3f01a588eb1083 /kplato/kptcontext.cc
parent95834e2bdc5e01ae1bd21ac0dfa4fa1d2417fae9 (diff)
downloadkoffice-8b78a8791bc539bcffe7159f9d9714d577cb3d7d.tar.gz
koffice-8b78a8791bc539bcffe7159f9d9714d577cb3d7d.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kplato/kptcontext.cc')
-rw-r--r--kplato/kptcontext.cc163
1 files changed, 0 insertions, 163 deletions
diff --git a/kplato/kptcontext.cc b/kplato/kptcontext.cc
deleted file mode 100644
index 830c6c95..00000000
--- a/kplato/kptcontext.cc
+++ /dev/null
@@ -1,163 +0,0 @@
-/* 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