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/kptrelationdialog.cc

123 lines
3.8 KiB

/* 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"