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.
189 lines
6.6 KiB
189 lines
6.6 KiB
/***************************************************************************
|
|
kmymoneyaccountselector.h
|
|
-------------------
|
|
begin : Thu Sep 18 2003
|
|
copyright : (C) 2003 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KMYMONEYACCOUNTSELECTOR_H
|
|
#define KMYMONEYACCOUNTSELECTOR_H
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
class KPushButton;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include <kmymoney/kmymoneyselector.h>
|
|
#include <kmymoney/kmymoneyutils.h>
|
|
#include <kmymoney/mymoneyaccount.h>
|
|
|
|
class kMyMoneyAccountCompletion;
|
|
class AccountSet;
|
|
class MyMoneyFile;
|
|
|
|
/**
|
|
* This class implements an account/category selector. It is based
|
|
* on a tree view. Using this widget, one can select one or multiple
|
|
* accounts depending on the mode of operation and the set of accounts
|
|
* selected to be displayed. (see setSelectionMode()
|
|
* and loadList() about the specifics of configuration).
|
|
*
|
|
* - Single selection mode\n
|
|
* In this mode the widget allows to select a single entry out of
|
|
* the set of displayed accounts.
|
|
*
|
|
* - Multi selection mode\n
|
|
* In this mode, the widget allows to select one or more entries
|
|
* out of the set of displayed accounts. Selection is performed
|
|
* by marking the account in the view.
|
|
*/
|
|
class kMyMoneyAccountSelector : public KMyMoneySelector
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
friend class AccountSet;
|
|
|
|
kMyMoneyAccountSelector(TQWidget *tqparent=0, const char *name=0, TQWidget::WFlags flags = 0, const bool createButtons = true);
|
|
virtual ~kMyMoneyAccountSelector();
|
|
|
|
/**
|
|
* This method returns a list of account ids of those accounts
|
|
* currently loaded into the widget. It is possible to select
|
|
* a list of specific account types only. In this case, pass
|
|
* a list of account types as parameter @p list.
|
|
*
|
|
* @param list TQValueList of account types to be returned. If this
|
|
* list is empty (the default), then the ids of all accounts
|
|
* will be returned.
|
|
* @return TQStringList of account ids
|
|
*/
|
|
TQStringList accountList(const TQValueList<MyMoneyAccount::accountTypeE>& list = TQValueList<MyMoneyAccount::accountTypeE>()) const;
|
|
|
|
void setSelectionMode(TQListView::SelectionMode mode);
|
|
|
|
/**
|
|
* This method checks if a given @a item matches the given regular expression @a exp.
|
|
*
|
|
* @param exp const reference to a regular expression object
|
|
* @param item pointer to TQListViewItem
|
|
*
|
|
* @retval true item matches
|
|
* @retval false item does not match
|
|
*/
|
|
virtual bool match(const TQRegExp& exp, TQListViewItem* item) const;
|
|
|
|
/**
|
|
* This method returns, if any of the items in the selector contains
|
|
* the text @a txt.
|
|
*
|
|
* @param txt const reference to string to be looked for
|
|
* @retval true exact match found
|
|
* @retval false no match found
|
|
*/
|
|
virtual bool contains(const TQString& txt) const;
|
|
|
|
/**
|
|
* This method removes all the buttons of the widget
|
|
*/
|
|
void removeButtons(void);
|
|
|
|
public slots:
|
|
/**
|
|
* This slot selects all items that are currently in
|
|
* the account list of the widget.
|
|
*/
|
|
void slotSelectAllAccounts(void) { selectAllItems(true); };
|
|
|
|
/**
|
|
* This slot deselects all items that are currently in
|
|
* the account list of the widget.
|
|
*/
|
|
void slotDeselectAllAccounts(void) { selectAllItems(false); };
|
|
|
|
protected:
|
|
/**
|
|
* This method loads the list of subaccounts as found in the
|
|
* @p list and attaches them to the tqparent widget passed as @p tqparent.
|
|
*
|
|
* @param tqparent pointer to tqparent widget
|
|
* @param list TQStringList containing the ids of all subaccounts to load
|
|
* @return This method returns the number of accounts loaded into the list
|
|
*/
|
|
int loadSubAccounts(TQListViewItem* tqparent, const TQStringList& list);
|
|
|
|
/**
|
|
* This is a helper method for selectAllIncomeCategories()
|
|
* and selectAllExpenseCategories().
|
|
*/
|
|
void selectCategories(const bool income, const bool expense);
|
|
|
|
protected slots:
|
|
/**
|
|
* This slot selects all income categories
|
|
*/
|
|
void slotSelectIncomeCategories(void) { selectCategories(true, false); };
|
|
|
|
/**
|
|
* This slot selects all expense categories
|
|
*/
|
|
void slotSelectExpenseCategories(void) { selectCategories(false, true); };
|
|
|
|
protected:
|
|
KPushButton* m_allAccountsButton;
|
|
KPushButton* m_noAccountButton;
|
|
KPushButton* m_incomeCategoriesButton;
|
|
KPushButton* m_expenseCategoriesButton;
|
|
TQValueList<int> m_typeList;
|
|
TQStringList m_accountList;
|
|
};
|
|
|
|
|
|
class AccountSet
|
|
{
|
|
public:
|
|
AccountSet();
|
|
|
|
void addAccountType(MyMoneyAccount::accountTypeE type);
|
|
void addAccountGroup(MyMoneyAccount::accountTypeE type);
|
|
void removeAccountType(MyMoneyAccount::accountTypeE type);
|
|
|
|
void clear(void);
|
|
|
|
int load(kMyMoneyAccountSelector* selector);
|
|
int load(kMyMoneyAccountSelector* selector, const TQString& baseName, const TQValueList<TQString>& accountIdList, const bool clear = false);
|
|
|
|
int count(void) const { return m_count; }
|
|
|
|
void setHideClosedAccounts (bool _bool) { m_hideClosedAccounts = _bool; }
|
|
bool isHidingClosedAccounts (void) { return m_hideClosedAccounts; }
|
|
|
|
protected:
|
|
int loadSubAccounts(kMyMoneyAccountSelector* selector, TQListViewItem* tqparent, const TQString& key, const TQStringList& list);
|
|
bool includeAccount(const MyMoneyAccount& acc);
|
|
|
|
private:
|
|
int m_count;
|
|
MyMoneyFile* m_file;
|
|
TQValueList<MyMoneyAccount::accountTypeE> m_typeList;
|
|
TQListViewItem* m_favorites;
|
|
bool m_hideClosedAccounts;
|
|
};
|
|
#endif
|