|
|
|
/***************************************************************************
|
|
|
|
kinstitutionssview.h
|
|
|
|
-------------------
|
|
|
|
copyright : (C) 2005 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 KINSTITUTIONSVIEW_H
|
|
|
|
#define KINSTITUTIONSVIEW_H
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// QT Includes
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// KDE Includes
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Project Includes
|
|
|
|
|
|
|
|
#include <kmymoney/mymoneyinstitution.h>
|
|
|
|
#include <kmymoney/kmymoneyaccounttree.h>
|
|
|
|
#include <kmymoney/mymoneyutils.h>
|
|
|
|
|
|
|
|
#include "../views/kinstitutionsviewdecl.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Thomas Baumgart
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class implements the institutions hierarchical 'view'.
|
|
|
|
*/
|
|
|
|
class KInstitutionsView : public KInstitutionsViewDecl
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
TQ_OBJECT
|
|
|
|
private:
|
|
|
|
|
|
|
|
public:
|
|
|
|
KInstitutionsView(TQWidget *parent=0, const char *name=0);
|
|
|
|
virtual ~KInstitutionsView();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void slotLoadAccounts(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override the base class behaviour to include all updates that
|
|
|
|
* happened in the meantime.
|
|
|
|
*/
|
|
|
|
void show(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override the base class behaviour to restore the layout. Do not
|
|
|
|
* do this in show() because show() itself may change the layout
|
|
|
|
* in undesired ways.
|
|
|
|
*/
|
|
|
|
void polish(void);
|
|
|
|
|
|
|
|
void slotReconcileAccount(const MyMoneyAccount& acc, const TQDate& reconciliationDate, const MyMoneyMoney& endingBalance);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void loadAccounts(void);
|
|
|
|
|
|
|
|
// load accounts that are kept at a specific institution
|
|
|
|
void loadSubAccounts(KMyMoneyAccountTreeItem* parent, const TQString& institutionId);
|
|
|
|
|
|
|
|
// load stock accounts under the investment account (parent)
|
|
|
|
void loadSubAccounts(KMyMoneyAccountTreeItem* parent);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void slotUpdateNetWorth(void);
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* This method returns an icon according to the account type
|
|
|
|
* passed in the argument @p type.
|
|
|
|
*
|
|
|
|
* @param type account type as defined in MyMoneyAccount::accountTypeE
|
|
|
|
*/
|
|
|
|
const TQPixmap accountImage(const MyMoneyAccount::accountTypeE type) const;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
/**
|
|
|
|
* This signal serves as proxy for KMyMoneyAccountTree::selectObject()
|
|
|
|
*/
|
|
|
|
void selectObject(const MyMoneyObject&);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This signal serves as proxy for
|
|
|
|
* KMyMoneyAccountTree::openContextMenu(const MyMoneyObject&)
|
|
|
|
*/
|
|
|
|
void openContextMenu(const MyMoneyObject& obj);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This signal will be emitted when the left mouse button is double
|
|
|
|
* clicked (actually the KDE executed setting is used) on an account
|
|
|
|
* or institution.
|
|
|
|
*/
|
|
|
|
void openObject(const MyMoneyObject& obj);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This signal is emitted, when the user selected to reparent the
|
|
|
|
* account @p acc to be a subordinate account of @p institution.
|
|
|
|
*
|
|
|
|
* @param acc const reference to account to be reparented
|
|
|
|
* @param institution const reference to new institution
|
|
|
|
*/
|
|
|
|
void reparent(const MyMoneyAccount& acc, const MyMoneyInstitution& institution);
|
|
|
|
|
|
|
|
private:
|
|
|
|
MyMoneyAccount m_reconciliationAccount;
|
|
|
|
TQMap<TQString, MyMoneyAccount> m_accountMap;
|
|
|
|
TQMap<TQString, MyMoneySecurity> m_securityMap;
|
|
|
|
TQMap<TQString, unsigned long> m_transactionCountMap;
|
|
|
|
|
|
|
|
/// set if a view needs to be reloaded during show()
|
|
|
|
bool m_needReload;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|