summaryrefslogtreecommitdiffstats
path: root/kmymoney2/widgets/kmymoneyaccountcompletion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/widgets/kmymoneyaccountcompletion.cpp')
-rw-r--r--kmymoney2/widgets/kmymoneyaccountcompletion.cpp106
1 files changed, 106 insertions, 0 deletions
diff --git a/kmymoney2/widgets/kmymoneyaccountcompletion.cpp b/kmymoney2/widgets/kmymoneyaccountcompletion.cpp
new file mode 100644
index 0000000..bb2af2e
--- /dev/null
+++ b/kmymoney2/widgets/kmymoneyaccountcompletion.cpp
@@ -0,0 +1,106 @@
+/***************************************************************************
+ kmymoneyaccountcompletion.cpp - description
+ -------------------
+ begin : Mon Apr 26 2004
+ copyright : (C) 2000-2004 by Michael Edwardes
+ email : mte@users.sourceforge.net
+ Javier Campos Morales <javi_c@users.sourceforge.net>
+ Felix Rodriguez <frodriguez@users.sourceforge.net>
+ John C <thetacoturtle@users.sourceforge.net>
+ Thomas Baumgart <ipwizard@users.sourceforge.net>
+ Kevin Tambascio <ktambascio@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 <qapplication.h>
+#include <qregexp.h>
+
+// ----------------------------------------------------------------------------
+// KDE Includes
+
+#include <klistview.h>
+
+// ----------------------------------------------------------------------------
+// Project Includes
+
+#include "kmymoneyaccountcompletion.h"
+#include <kmymoney/mymoneyfile.h>
+
+kMyMoneyAccountCompletion::kMyMoneyAccountCompletion(QWidget *parent, const char *name ) :
+ kMyMoneyCompletion(parent, name)
+{
+ delete m_selector;
+ m_selector = new kMyMoneyAccountSelector(this, 0, 0, false);
+ m_selector->listView()->setFocusProxy(this);
+
+#ifndef KMM_DESIGNER
+ // Default is to show all accounts
+ // FIXME We should leave this also to the caller
+ AccountSet set;
+ set.addAccountGroup(MyMoneyAccount::Asset);
+ set.addAccountGroup(MyMoneyAccount::Liability);
+ set.addAccountGroup(MyMoneyAccount::Income);
+ set.addAccountGroup(MyMoneyAccount::Expense);
+ set.load(selector());
+#endif
+
+ connectSignals(m_selector, m_selector->listView());
+}
+
+kMyMoneyAccountCompletion::~kMyMoneyAccountCompletion()
+{
+}
+
+void kMyMoneyAccountCompletion::slotMakeCompletion(const QString& txt)
+{
+ // if(txt.isEmpty() || txt.length() == 0)
+ // return;
+
+ int cnt = 0;
+ if(txt.contains(MyMoneyFile::AccountSeperator) == 0) {
+ m_lastCompletion = QRegExp(QRegExp::escape(txt.stripWhiteSpace()), false);
+ cnt = selector()->slotMakeCompletion(m_lastCompletion);
+ } else {
+ QStringList parts = QStringList::split(MyMoneyFile::AccountSeperator, txt);
+ QString pattern("^");
+ QStringList::iterator it;
+ for(it = parts.begin(); it != parts.end(); ++it) {
+ if(pattern.length() > 1)
+ pattern += MyMoneyFile::AccountSeperator;
+ pattern += QRegExp::escape(QString(*it).stripWhiteSpace()) + ".*";
+ }
+ pattern += "$";
+ m_lastCompletion = QRegExp(pattern, false);
+ cnt = selector()->slotMakeCompletion(m_lastCompletion);
+ // if we don't have a match, we try it again, but this time
+ // we add a wildcard for the top level
+ if(cnt == 0) {
+ pattern = pattern.insert(1, QString(".*")+MyMoneyFile::AccountSeperator);
+ m_lastCompletion = QRegExp(pattern, false);
+ cnt = selector()->slotMakeCompletion(m_lastCompletion);
+ }
+ }
+
+ if(m_parent && m_parent->isVisible() && !isVisible() && cnt)
+ show(false);
+ else {
+ if(cnt != 0) {
+ adjustSize();
+ } else {
+ hide();
+ }
+ }
+}
+
+#include "kmymoneyaccountcompletion.moc"