/* This file is part of the KDE project Copyright (C) 2001 Thomas zander 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; either version 2 of the License, or (at your option) any later version. 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 "kptrelation.h" #include "kptnode.h" #include "kptproject.h" #include "kptcanvasitem.h" #include #include #include namespace KPlato { Relation::Relation(Node *parent, Node *child, Type type, Duration lag) { m_parent=parent; m_child=child; m_type=type; m_lag=lag; } Relation::Relation(Node *parent, Node *child, Type type) { m_parent=parent; m_child=child; m_type=type; m_lag=Duration(); } Relation::Relation(Relation *rel) { m_parent=rel->parent(); m_child=rel->child(); m_type=rel->type(); m_lag=rel->lag(); } Relation::~Relation() { //kdDebug()<name():"none")<<" child: "<<(m_child ? m_child->name():"None")<takeDependChildNode(this); if (m_child) m_child->takeDependParentNode(this); } void Relation::setType(Type type) { m_type=type; } bool Relation::load(TQDomElement &element, Project &project) { m_parent = project.findNode(element.attribute("parent-id")); if (m_parent == 0) { return false; } m_child = project.findNode(element.attribute("child-id")); if (m_child == 0) { return false; } if (m_child == m_parent) { kdDebug()<legalToLink(m_child)) return false; TQString tr = element.attribute("type"); if ( tr == "Finish-Start" ) m_type = FinishStart; else if ( tr == "Finish-Finish" ) m_type = FinishFinish; else if ( tr == "Start-Start" ) m_type = StartStart; else m_type = FinishStart; m_lag = Duration::fromString(element.attribute("lag")); if (!m_parent->addDependChildNode(this)) { kdError()<id()); me.setAttribute("child-id", m_child->id()); TQString type = "Finish-Start"; switch (m_type) { case FinishStart: type = "Finish-Start"; break; case FinishFinish: type = "Finish-Finish"; break; case StartStart: type = "Start-Start"; break; } me.setAttribute("type", type); me.setAttribute("lag", m_lag.toString()); } #ifndef NDEBUG void Relation::printDebug(TQCString indent) { indent += " "; kdDebug()<name()<name()<