diff options
Diffstat (limited to 'kplato/kptrelationdialog.cc')
-rw-r--r-- | kplato/kptrelationdialog.cc | 122 |
1 files changed, 122 insertions, 0 deletions
diff --git a/kplato/kptrelationdialog.cc b/kplato/kptrelationdialog.cc new file mode 100644 index 00000000..ec936af5 --- /dev/null +++ b/kplato/kptrelationdialog.cc @@ -0,0 +1,122 @@ +/* This file is part of the KDE project + Copyright (C) 2003, 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 "kptrelationdialog.h" +#include "kptrelation.h" +#include "kptnode.h" +#include "kptpart.h" +#include "kptcommand.h" +#include "kptdurationwidget.h" +#include "relationpanel.h" + +#include <qlayout.h> +#include <qvbox.h> +#include <qlabel.h> +#include <qbuttongroup.h> +#include <qradiobutton.h> + +#include <kmessagebox.h> +#include <klocale.h> +#include <kcommand.h> +#include <kdebug.h> + +namespace KPlato +{ + +AddRelationDialog::AddRelationDialog(Relation *rel, QWidget *p, QString caption, int buttons, const char *n) + : KDialogBase(Swallow, caption, buttons, Ok, p, n, true, true) +{ + if (caption.isEmpty()) + setCaption(i18n("Add Relationship")); + m_relation = rel; + m_panel = new RelationPanel(this); + setMainWidget(m_panel); + m_panel->setActiveWindow(); + + m_panel->fromName->setText(rel->parent()->name()); + m_panel->toName->setText(rel->child()->name()); + m_panel->relationType->setButton(rel->type()); + + m_panel->lag->setVisibleFields(DurationWidget::Days|DurationWidget::Hours|DurationWidget::Minutes); + m_panel->lag->setFieldUnit(0, i18n("days", "d")); + m_panel->lag->setFieldUnit(1, i18n("hours", "h")); + m_panel->lag->setFieldUnit(2, i18n("minutes", "m")); + m_panel->lag->setValue(rel->lag()); + + m_panel->relationType->setFocus(); + enableButtonOK(true); + connect(m_panel->relationType, SIGNAL(clicked(int)), SLOT(typeClicked(int))); + connect(m_panel->lag, SIGNAL(valueChanged()), SLOT(lagChanged())); +} + +KCommand *AddRelationDialog::buildCommand(Part *part) { + return new AddRelationCmd(part, m_relation, i18n("Add Relation")); +} + +void AddRelationDialog::slotOk() { + if ( m_panel->relationType->selected() == 0 ) { + KMessageBox::sorry(this, i18n("You must select a relationship type")); + return; + } + accept(); +} + +void AddRelationDialog::lagChanged() { + enableButtonOK(true); +} + +void AddRelationDialog::typeClicked(int id) { + if (id != m_relation->type()) + enableButtonOK(true); +} + +////////////////// + +ModifyRelationDialog::ModifyRelationDialog(Relation *rel, QWidget *p, const char *n) + : AddRelationDialog(rel, p, i18n("Edit Relationship"), Ok|Cancel|User1, n) +{ + setButtonText( KDialogBase::User1, i18n("Delete") ); + m_deleted = false; + enableButtonOK(false); +} + +// Delete +void ModifyRelationDialog::slotUser1() { + m_deleted = true; + accept(); +} + +KCommand *ModifyRelationDialog::buildCommand(Part *part) { + KMacroCommand *cmd=0; + if (m_panel->relationType->selectedId() != m_relation->type()) { + if (cmd == 0) + cmd = new KMacroCommand(i18n("Modify Relation")); + cmd->addCommand(new ModifyRelationTypeCmd(part, m_relation, (Relation::Type)m_panel->relationType->selectedId())); + } + if (m_relation->lag() != m_panel->lag->value()) { + if (cmd == 0) + cmd = new KMacroCommand(i18n("Modify Relation")); + cmd->addCommand(new ModifyRelationLagCmd(part, m_relation, m_panel->lag->value())); + } + return cmd; +} + +} //KPlato namespace + +#include "kptrelationdialog.moc" |