diff --git a/kmymoney/dialogs/kfindtransactiondlg.h b/kmymoney/dialogs/kfindtransactiondlg.h index a94ca5a12..567f1803b 100644 --- a/kmymoney/dialogs/kfindtransactiondlg.h +++ b/kmymoney/dialogs/kfindtransactiondlg.h @@ -1,240 +1,240 @@ /*************************************************************************** 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 #include #include #include #include // ---------------------------------------------------------------------------- // KDE Includes #include // ---------------------------------------------------------------------------- // Project Includes #include "mymoneyutils.h" #include "mymoneytransactionfilter.h" class QTreeWidget; class QTreeWidgetItem; /** * @author Thomas Baumgart */ class KSortOptionDlg : public KDialog { public: KSortOptionDlg(QWidget *parent); ~KSortOptionDlg(); void init(); void setSortOption(const QString& option, const QString& def); QString sortOption() const; void hideDefaultButton(); private: struct Private; Private* const d; }; namespace Ui { class KFindTransactionDlgDecl; } class KFindTransactionDlg : public KDialog { 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, next18Months, // insert new constants above of this line dateOptionCount }; - @param withEquityAccounts set to false to hide equity accounts in account page + @param withEquityAccounts set to true to show equity accounts in account page */ - KFindTransactionDlg(QWidget *parent = 0, bool withEquityAccounts=true); + KFindTransactionDlg(QWidget *parent = 0, bool withEquityAccounts=false); ~KFindTransactionDlg(); virtual bool eventFilter(QObject *o, QEvent *e); protected: void resizeEvent(QResizeEvent*); void showEvent(QShowEvent* event); protected slots: virtual void slotReset(); virtual void slotSearch(); /** * This slot opens the detailed help page in khelpcenter. The * anchor for the information is taken from m_helpAnchor. */ virtual void slotShowHelp(); void slotUpdateSelections(); virtual void slotDateRangeChanged(int); virtual void slotDateChanged(); virtual void slotAmountSelected(); virtual void slotAmountRangeSelected(); virtual void slotSelectAllPayees(); virtual void slotDeselectAllPayees(); virtual void slotSelectAllTags(); virtual void slotDeselectAllTags(); virtual void slotNrSelected(); virtual void slotNrRangeSelected(); void slotRefreshView(); /** * This slot selects the current selected transaction/split and emits * the signal @a transactionSelected(const QString& accountId, const QString& transactionId) */ void slotSelectTransaction(); void slotRightSize(); void slotSortOptions(); signals: void transactionSelected(const QString& accountId, const QString& transactionId); /** * This signal is sent out when a selection has been made. It is * used to control the state of the Search button. * The Search button is only active when a selection has been made * (i.e. notEmpty == true) */ void selectionNotEmpty(bool); protected: enum opTypeE { addAccountToFilter = 0, addCategoryToFilter, addPayeeToFilter, addTagToFilter }; void setupCategoriesPage(); void setupDatePage(); void setupAccountsPage(bool withEquityAccounts=false); void setupAmountPage(); void setupPayeesPage(); void setupTagsPage(); void setupDetailsPage(); void setupFilter(); void selectAllItems(QTreeWidget* view, const bool state); void selectAllSubItems(QTreeWidgetItem* item, const bool state); void selectItems(QTreeWidget* view, const QStringList& list, const bool state); void selectSubItems(QTreeWidgetItem* item, const QStringList& list, const bool state); /** * This method loads the m_payeesView with the payees name * found in the engine. */ void loadPayees(); /** * This method loads the m_tagsView with the tags name * found in the engine. */ void loadTags(); /** * This method loads the register with the matching transactions */ void loadView(); /** * 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 QTreeWidget* view) const; bool allItemsSelected(const QTreeWidgetItem *item) const; void scanCheckListItems(const QTreeWidget* view, const opTypeE op); void scanCheckListItems(const QTreeWidgetItem* 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 */ QList > m_transactionList; MyMoneyTransactionFilter m_filter; QMap m_helpAnchor; bool m_needReload; Ui::KFindTransactionDlgDecl* m_ui; }; #endif