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.
114 lines
4.4 KiB
114 lines
4.4 KiB
/***************************************************************************
|
|
kmymoneyaccounttreebudget.h - description
|
|
-------------------
|
|
begin : Tue Feb 21 2006
|
|
copyright : (C) 2005 by Darren Gould
|
|
email : Darren Gould <darren_gould@gmx.de>
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 KMYMONEYACCOUNTTREEBUDGET_H
|
|
#define KMYMONEYACCOUNTTREEBUDGET_H
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
#include <tqtimer.h>
|
|
class TQDragObject;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
#include <tdelistview.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
#include <kmymoney/kmymoneyaccounttree.h>
|
|
#include <kmymoney/mymoneybudget.h>
|
|
|
|
class KMyMoneyAccountTreeBudgetItem;
|
|
|
|
class KMyMoneyAccountTreeBudget : public KMyMoneyAccountTreeBase
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
KMyMoneyAccountTreeBudget(TQWidget* parent = 0, const char *name = 0);
|
|
virtual ~KMyMoneyAccountTreeBudget() {}
|
|
|
|
public slots:
|
|
void slotSelectObject(const TQListViewItem* i);
|
|
|
|
};
|
|
|
|
class KMyMoneyAccountTreeBudgetItem : public KMyMoneyAccountTreeBaseItem
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Constructor to be used to construct an account
|
|
* entry object for a budget.
|
|
*
|
|
* @param parent pointer to the parent KAccountListView object this entry should be
|
|
* added to.
|
|
* @param account const reference to MyMoneyAccount for which
|
|
* the TDEListView entry is constructed
|
|
* @param budget const reference to the budget to
|
|
* which the account belongs
|
|
* @param price price to be used to calculate value (defaults to 1)
|
|
* This is used for accounts denominated in foreign currencies or stocks
|
|
* @param security const reference to the security used to show the value. Usually
|
|
* one should pass MyMoneyFile::baseCurrency() here.
|
|
*/
|
|
KMyMoneyAccountTreeBudgetItem(KMyMoneyAccountTreeBudgetItem *parent, const MyMoneyAccount& account, const MyMoneyBudget& budget, const TQValueList<MyMoneyPrice>& price = TQValueList<MyMoneyPrice>(), const MyMoneySecurity& security = MyMoneySecurity());
|
|
|
|
/**
|
|
* Constructor to be used to construct an account
|
|
* entry object for a budget.
|
|
*
|
|
* @param parent pointer to the parent KAccountListView object this entry should be
|
|
* added to.
|
|
* @param account const reference to MyMoneyAccount for which
|
|
* the TDEListView entry is constructed
|
|
* @param budget const reference to the budget to
|
|
* which the account belongs
|
|
* @param security const reference to the security used to show the value. Usually
|
|
* one should pass MyMoneyFile::baseCurrency() here.
|
|
* @param name name of the account to be used instead of the one stored with @p account
|
|
* If empty, the one stored with @p account will be used. Default: empty
|
|
*/
|
|
KMyMoneyAccountTreeBudgetItem(TDEListView *parent, const MyMoneyAccount& account, const MyMoneyBudget &budget, const MyMoneySecurity& security = MyMoneySecurity(), const TQString& name = TQString());
|
|
|
|
~KMyMoneyAccountTreeBudgetItem();
|
|
|
|
void setBudget(const MyMoneyBudget& budget);
|
|
|
|
protected:
|
|
/**
|
|
* Returns the current balance of this account.
|
|
*
|
|
* This is a pure virtual function, to allow subclasses to calculate
|
|
* the balance in different ways.
|
|
*
|
|
* Parent items in the tree will only be recomputed if the balance() for
|
|
* a son changes.
|
|
* @param account Account to get the balance for
|
|
* @return Balance of this account
|
|
*/
|
|
MyMoneyMoney balance() const;
|
|
|
|
private:
|
|
MyMoneyBudget m_budget;
|
|
};
|
|
|
|
#endif
|
|
|