summaryrefslogtreecommitdiffstats
path: root/kmymoney2/dialogs/kconfirmmanualenterdlg.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 00:53:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 00:53:39 -0600
commitfe50f29e05b1318b520a33179ea50c88b6e2c89a (patch)
tree2a697d17f25d06389c2908e79c4b191e5b6c971d /kmymoney2/dialogs/kconfirmmanualenterdlg.cpp
parent9311d363bfabf7f1105e3339922169d89107a724 (diff)
downloadkmymoney-fe50f29e05b1318b520a33179ea50c88b6e2c89a.tar.gz
kmymoney-fe50f29e05b1318b520a33179ea50c88b6e2c89a.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kmymoney2/dialogs/kconfirmmanualenterdlg.cpp')
-rw-r--r--kmymoney2/dialogs/kconfirmmanualenterdlg.cpp202
1 files changed, 0 insertions, 202 deletions
diff --git a/kmymoney2/dialogs/kconfirmmanualenterdlg.cpp b/kmymoney2/dialogs/kconfirmmanualenterdlg.cpp
deleted file mode 100644
index 966ed55..0000000
--- a/kmymoney2/dialogs/kconfirmmanualenterdlg.cpp
+++ /dev/null
@@ -1,202 +0,0 @@
-/***************************************************************************
- kconfirmmanualenterdlg.cpp
- -------------------
- begin : Mon Apr 9 2007
- copyright : (C) 2007 by Thomas Baumgart
- email : Thomas Baumgart <ipwizard@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. *
- * *
- ***************************************************************************/
-
-// ----------------------------------------------------------------------------
-// QT Includes
-
-#include <tqradiobutton.h>
-
-// ----------------------------------------------------------------------------
-// KDE Includes
-
-#include <klocale.h>
-#include <ktextedit.h>
-#include <kpushbutton.h>
-#include <kstdguiitem.h>
-#include <kmessagebox.h>
-
-// ----------------------------------------------------------------------------
-// Project Includes
-
-#include <kmymoney/mymoneyfile.h>
-#include <kmymoney/kmymoneyutils.h>
-#include "kconfirmmanualenterdlg.h"
-
-KConfirmManualEnterDlg::KConfirmManualEnterDlg(const MyMoneySchedule& schedule, TQWidget* parent, const char* name) :
- KConfirmManualEnterDlgDecl(parent, name)
-{
- buttonOk->setGuiItem(KStdGuiItem::ok());
- buttonCancel->setGuiItem(KStdGuiItem::cancel());
- m_onceRadio->setChecked(true);
- m_onceRadio->setFocus();
-
- if(schedule.type() == MyMoneySchedule::TYPE_LOANPAYMENT) {
- m_setRadio->setEnabled(false);
- m_discardRadio->setEnabled(false);
- }
-
-}
-
-void KConfirmManualEnterDlg::loadTransactions(const MyMoneyTransaction& to, const MyMoneyTransaction& tn)
-{
- TQString messageDetail("<qt>");
- MyMoneyFile* file = MyMoneyFile::instance();
- int noItemsChanged=0;
-
-#if 0
- // if no schedule is present, we cannot enter it
- if(m_schedule.id().isEmpty())
- return false;
-
- if (m_fromAccountId == m_toAccountId)
- {
- KMessageBox::error(this, i18n("Account and transfer account are the same. Please change one."));
- m_from->setFocus();
- return false;
- }
-
- if (!checkDateInPeriod(m_date->date()))
- return false;
-#endif
-
- try
- {
- TQString po, pn;
- if(to.splits()[0].payeeId())
- po = file->payee(to.splits()[0].payeeId()).name();
- if(tn.splits()[0].payeeId())
- pn = file->payee(tn.splits()[0].payeeId()).name();
-
- if (po != pn) {
- noItemsChanged++;
- messageDetail += i18n("Payee changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>").arg(po).arg(pn);
- }
-#if 0
- if ( (m_schedule.type() == MyMoneySchedule::TYPE_TRANSFER ||
- m_schedule.type() == MyMoneySchedule::TYPE_BILL) &&
- m_from->currentText() != m_schedule.account().name())
- {
- noItemsChanged++;
- messageDetail += i18n("Account changed. Old: \"%1\", New: \"%2\"")
- .arg(m_schedule.account().name()).arg(m_from->currentText()) + TQString("\n");
- }
-
- if ( m_schedule.type() == MyMoneySchedule::TYPE_DEPOSIT &&
- m_to->currentText() != m_schedule.account().name())
- {
- noItemsChanged++;
- messageDetail += i18n("Account changed. Old: \"%1\", New: \"%2\"")
- .arg(m_schedule.account().name()).arg(m_to->currentText()) + TQString("\n");
- }
-#endif
-
- if(to.splits()[0].accountId() != tn.splits()[0].accountId()) {
- noItemsChanged++;
- messageDetail += i18n("Account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>")
- .arg(file->account(to.splits()[0].accountId()).name())
- .arg(file->account(tn.splits()[0].accountId()).name());
- }
-
- if(file->isTransfer(to) && file->isTransfer(tn)) {
- if(to.splits()[1].accountId() != tn.splits()[1].accountId()) {
- noItemsChanged++;
- messageDetail += i18n("Transfer account changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>")
- .arg(file->account(to.splits()[1].accountId()).name())
- .arg(file->account(tn.splits()[1].accountId()).name());
- }
- } else {
- TQString co, cn;
- switch(to.splitCount()) {
- default:
- co = i18n("Split transaction (category replacement)", "Split transaction");
- break;
- case 2:
- co = file->accountToCategory(to.splits()[1].accountId());
- case 1:
- break;
- }
-
- switch(tn.splitCount()) {
- default:
- cn = i18n("Split transaction (category replacement)", "Split transaction");
- break;
- case 2:
- cn = file->accountToCategory(tn.splits()[1].accountId());
- case 1:
- break;
- }
- if (co != cn)
- {
- noItemsChanged++;
- messageDetail += i18n("Category changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>").arg(co).arg(cn);
- }
- }
-
- TQString mo, mn;
- mo = to.splits()[0].memo();
- mn = tn.splits()[0].memo();
- if(mo.isEmpty())
- mo = TQString("<i>")+i18n("empty")+TQString("</i>");
- if(mn.isEmpty())
- mn = TQString("<i>")+i18n("empty")+TQString("</i>");
- if (mo != mn)
- {
- noItemsChanged++;
- messageDetail += i18n("Memo changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>").arg(mo).arg(mn);
- }
-
- const MyMoneySecurity& sec = MyMoneyFile::instance()->security(to.commodity());
- MyMoneyMoney ao, an;
- ao = to.splits()[0].value();
- an = tn.splits()[0].value();
- if (ao != an) {
- noItemsChanged++;
- messageDetail += i18n("Amount changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>")
- .arg(ao.formatMoney(sec.smallestAccountFraction())).arg(an.formatMoney(sec.smallestAccountFraction()));
- }
-
- MyMoneySplit::reconcileFlagE fo, fn;
- fo = to.splits()[0].reconcileFlag();
- fn = tn.splits()[0].reconcileFlag();
- if(fo != fn) {
- noItemsChanged++;
- messageDetail += i18n("Reconciliation flag changed.<br>&nbsp;&nbsp;&nbsp;Old: <b>%1</b>, New: <b>%2</b><p>")
- .arg(KMyMoneyUtils::reconcileStateToString(fo, true))
- .arg(KMyMoneyUtils::reconcileStateToString(fn, true));
- }
- }
- catch (MyMoneyException *e)
- {
- KMessageBox::error(this, i18n("Fatal error in determining data: ") + e->what());
- delete e;
- }
-
- messageDetail += "</qt>";
- m_details->setText(messageDetail);
- return;
-}
-
-KConfirmManualEnterDlg::Action KConfirmManualEnterDlg::action(void) const
-{
- if(m_discardRadio->isChecked())
- return UseOriginal;
- if(m_setRadio->isChecked())
- return ModifyAlways;
- return ModifyOnce;
-}
-
-#include "kconfirmmanualenterdlg.moc"