diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 22:38:03 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 22:38:03 +0000 |
commit | dadc34655c3ab961b0b0b94a10eaaba710f0b5e8 (patch) | |
tree | 99e72842fe687baea16376a147619b6048d7e441 /kmymoney2/dialogs/kfindtransactiondlg.h | |
download | kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.tar.gz kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.zip |
Added kmymoney
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1239792 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmymoney2/dialogs/kfindtransactiondlg.h')
-rw-r--r-- | kmymoney2/dialogs/kfindtransactiondlg.h | 203 |
1 files changed, 203 insertions, 0 deletions
diff --git a/kmymoney2/dialogs/kfindtransactiondlg.h b/kmymoney2/dialogs/kfindtransactiondlg.h new file mode 100644 index 0000000..edf9504 --- /dev/null +++ b/kmymoney2/dialogs/kfindtransactiondlg.h @@ -0,0 +1,203 @@ +/*************************************************************************** + kfindtransactiondlg.h + ------------------- + copyright : (C) 2003 by Thomas Baumgart + email : 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. * + * * + ***************************************************************************/ + +#ifndef KFINDTRANSACTIONDLG_H +#define KFINDTRANSACTIONDLG_H + +// ---------------------------------------------------------------------------- +// QT Includes + +#include <qlistview.h> +#include <qdatetime.h> +#include <qmap.h> + +// ---------------------------------------------------------------------------- +// KDE Includes + +// ---------------------------------------------------------------------------- +// Project Includes + +// #include "../views/kledgerview.h" +#include <kmymoney/mymoneyutils.h> +#include <kmymoney/mymoneytransactionfilter.h> + +#include "../dialogs/kfindtransactiondlgdecl.h" + +class QListView; +class QListViewItem; + +/** + * @author Thomas Baumgart + */ +class KFindTransactionDlg : public KFindTransactionDlgDecl +{ + Q_OBJECT +public: + + /* + // Make sure to keep the following enum valus in sync with the values + // used by the GUI in kfindtransactiondlgdecl.ui + enum dateOptionE { + allDates = 0, + asOfToday, + currentMonth, + currentYear, + monthToDate, + yearToDate, + yearToMonth, + lastMonth, + lastYear, + last7Days, + last30Days, + last3Months, + last6Months, + last12Months, + next7Days, + next30Days, + next3Months, + next6Months, + next12Months, + userDefined, + last3ToNext3Months, + last11Months, + // insert new constants above of this line + dateOptionCount + }; +*/ + KFindTransactionDlg(QWidget *parent=0, const char *name=0); + ~KFindTransactionDlg() {} + + virtual bool eventFilter( QObject *o, QEvent *e ); + +public slots: + void show(void); + +protected: + void resizeEvent(QResizeEvent*); + +protected slots: + virtual void slotReset(void); + virtual void slotSearch(void); + + /** + * This slot opens the detailed help page in khelpcenter. The + * anchor for the information is taken from m_helpAnchor. + */ + virtual void slotShowHelp(void); + + + void slotUpdateSelections(void); + + virtual void slotDateRangeChanged(int); + virtual void slotDateChanged(void); + + virtual void slotAmountSelected(void); + virtual void slotAmountRangeSelected(void); + + virtual void slotSelectAllPayees(void); + virtual void slotDeselectAllPayees(void); + + virtual void slotNrSelected(void); + virtual void slotNrRangeSelected(void); + + void slotRefreshView(void); + + /** + * This slot selects the current selected transaction/split and emits + * the signal @a transactionSelected(const QString& accountId, const QString& transactionId) + */ + void slotSelectTransaction(void); + + void slotRightSize(void); + + void slotSortOptions(void); + +signals: + void transactionSelected(const QString& accountId, const QString& transactionId); + + /** + * This signal is sent out when no selection has been made. It is + * used to control the state of the Search button. + */ + void selectionEmpty(bool); + +protected: + enum opTypeE { + addAccountToFilter = 0, + addCategoryToFilter, + addPayeeToFilter + }; + + void setupCategoriesPage(void); + void setupDatePage(void); + void setupAccountsPage(void); + void setupAmountPage(void); + void setupPayeesPage(void); + void setupDetailsPage(void); + + void setupFilter(void); + + void selectAllItems(QListView* view, const bool state); + void selectAllSubItems(QListViewItem* item, const bool state); + void selectItems(QListView* view, const QStringList& list, const bool state); + void selectSubItems(QListViewItem* item, const QStringList& list, const bool state); + + /** + * This method loads the m_payeesView with the payees name + * found in the engine. + */ + void loadPayees(void); + + /** + * This method loads the register with the matching transactions + */ + void loadView(void); + + /** + * This method returns information about the selection state + * of the items in the m_accountsView. + * + * @param view pointer to the listview to scan + * + * @retval true if all items in the view are marked + * @retval false if at least one item is not marked + * + * @note If the view contains no items the method returns @p true. + */ + bool allItemsSelected(const QListView* view) const; + bool allItemsSelected(const QListViewItem *item) const; + + void scanCheckListItems(const QListView* view, const opTypeE op); + void scanCheckListItems(const QListViewItem* item, const opTypeE op); + void addItemToFilter(const opTypeE op, const QString& id); + +protected: + QDate m_startDates[MyMoneyTransactionFilter::dateOptionCount]; + QDate m_endDates[MyMoneyTransactionFilter::dateOptionCount]; + + /** + * This member holds a list of all transactions matching the filter criteria + */ + QValueList<QPair<MyMoneyTransaction, MyMoneySplit> > m_transactionList; + + MyMoneyTransactionFilter m_filter; + + QMap<QWidget*, QString> m_helpAnchor; + + bool m_needReload; +}; + +#endif |