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.
106 lines
3.5 KiB
106 lines
3.5 KiB
/***************************************************************************
|
|
knewbankdlg.cpp
|
|
-------------------
|
|
copyright : (C) 2000 by Michael Edwardes
|
|
email : mte@users.sourceforge.net
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
#include <tqlabel.h>
|
|
#include <tqpixmap.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
#include <kglobal.h>
|
|
#include <klocale.h>
|
|
#include <kstandarddirs.h>
|
|
#include <kmessagebox.h>
|
|
#include <kpushbutton.h>
|
|
#include <kguiitem.h>
|
|
#include <klineedit.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include <kmymoney/mymoneyinstitution.h>
|
|
#include <kmymoney/kguiutils.h>
|
|
|
|
#include "knewbankdlg.h"
|
|
|
|
KNewBankDlg::KNewBankDlg(MyMoneyInstitution& institution, TQWidget *parent, const char *name)
|
|
: KNewBankDlgDecl(parent,name,true), m_institution(institution)
|
|
{
|
|
okBtn->setGuiItem(KStdGuiItem::ok());
|
|
cancelBtn->setGuiItem(KStdGuiItem::cancel());
|
|
|
|
nameEdit->setFocus();
|
|
nameEdit->setText(institution.name());
|
|
cityEdit->setText(institution.city());
|
|
streetEdit->setText(institution.street());
|
|
postcodeEdit->setText(institution.postcode());
|
|
telephoneEdit->setText(institution.telephone());
|
|
bicEdit->setText(institution.value("bic"));
|
|
sortCodeEdit->setText(institution.sortcode());
|
|
|
|
connect(okBtn, TQT_SIGNAL(clicked()), TQT_SLOT(okClicked()));
|
|
connect(cancelBtn, TQT_SIGNAL(clicked()), TQT_SLOT(reject()));
|
|
connect(nameEdit, TQT_SIGNAL(textChanged ( const TQString & )), TQT_SLOT(institutionNameChanged( const TQString &)));
|
|
institutionNameChanged( nameEdit->text());
|
|
|
|
kMandatoryFieldGroup* requiredFields = new kMandatoryFieldGroup (TQT_TQOBJECT(this));
|
|
requiredFields->setOkButton(okBtn); // button to be enabled when all fields present
|
|
requiredFields->add(nameEdit);
|
|
}
|
|
|
|
void KNewBankDlg::institutionNameChanged( const TQString &_text)
|
|
{
|
|
okBtn->setEnabled( !_text.isEmpty() );
|
|
}
|
|
|
|
KNewBankDlg::~KNewBankDlg()
|
|
{
|
|
}
|
|
|
|
void KNewBankDlg::okClicked()
|
|
{
|
|
if (nameEdit->text().isEmpty()) {
|
|
KMessageBox::information(this, i18n("The institution name field is empty. Please enter the name."), i18n("Adding New Institution"));
|
|
nameEdit->setFocus();
|
|
return;
|
|
}
|
|
|
|
m_institution.setName(nameEdit->text());
|
|
m_institution.setTown(cityEdit->text());
|
|
m_institution.setStreet(streetEdit->text());
|
|
m_institution.setPostcode(postcodeEdit->text());
|
|
m_institution.setTelephone(telephoneEdit->text());
|
|
m_institution.setValue("bic", bicEdit->text());
|
|
m_institution.setSortcode(sortCodeEdit->text());
|
|
|
|
accept();
|
|
}
|
|
|
|
const MyMoneyInstitution& KNewBankDlg::institution(void)
|
|
{
|
|
return m_institution;
|
|
}
|
|
|
|
|
|
#include "knewbankdlg.moc"
|