From dadc34655c3ab961b0b0b94a10eaaba710f0b5e8 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 4 Jul 2011 22:38:03 +0000 Subject: Added kmymoney git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1239792 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kmymoney2/views/kinvestmentlistitem.h | 95 +++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 kmymoney2/views/kinvestmentlistitem.h (limited to 'kmymoney2/views/kinvestmentlistitem.h') diff --git a/kmymoney2/views/kinvestmentlistitem.h b/kmymoney2/views/kinvestmentlistitem.h new file mode 100644 index 0000000..d0ad62b --- /dev/null +++ b/kmymoney2/views/kinvestmentlistitem.h @@ -0,0 +1,95 @@ +/*************************************************************************** + kinvestmentlistitem.h - description + ------------------- + begin : Wed Feb 6 2002 + copyright : (C) 2000-2002 by Michael Edwardes + email : mte@users.sourceforge.net + Javier Campos Morales + Felix Rodriguez + John C + Thomas Baumgart + Kevin Tambascio + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 KINVESTMENTLISTITEM_H +#define KINVESTMENTLISTITEM_H + +// ---------------------------------------------------------------------------- +// QT Includes + +// ---------------------------------------------------------------------------- +// KDE Includes + +#include + +// ---------------------------------------------------------------------------- +// Project Includes + +#include +#include +#include +#include + +//indexes for the various columns on the summary view +#define COLUMN_NAME_INDEX 0 +#define COLUMN_SYMBOL_INDEX 1 +#define COLUMN_VALUE_INDEX 2 +#define COLUMN_QUANTITY_INDEX 3 +#define COLUMN_PRICE_INDEX 4 +#define COLUMN_COSTBASIS_INDEX 5 +#define COLUMN_RAWGAIN_INDEX 6 +#define COLUMN_1WEEKGAIN_INDEX 7 +#define COLUMN_4WEEKGAIN_INDEX 8 +#define COLUMN_3MONGAIN_INDEX 9 +#define COLUMN_YTDGAIN_INDEX 10 + +/** + * @author Kevin Tambascio + * @author Thomas Baumgart + */ +class KInvestmentListItem : public KListViewItem +{ +public: + KInvestmentListItem(KListView* parent, const MyMoneyAccount& security); + ~KInvestmentListItem(); + + QString securityId() const { return m_account.currencyId(); }; + const MyMoneyAccount& account(void) const { return m_account; }; + const MyMoneySecurity tradingCurrency(void) const { return m_tradingCurrency; }; + + /** + * Helper method to show the right order + */ + int compare(QListViewItem* i, int col, bool ascending) const; + + +protected: + void paintCell(QPainter * p, const QColorGroup & cg, int column, int width, int align); + +private: + // FIXME PRICE +#if 0 + const QString calculate1WeekGain(const equity_price_history& history); + const QString calculate4WeekGain(const equity_price_history& history); + const QString calculate3MonthGain(const equity_price_history& history); + const QString calculateYTDGain(const equity_price_history& history); + const QString calculateGain(const equity_price_history& history, int dayDifference, int monthDifference, bool YTD, bool& bNegative); +#endif + +private: + KListView* m_listView; + MyMoneyAccount m_account; + MyMoneySecurity m_tradingCurrency; + bool bColumn5Negative, bColumn6Negative, bColumn7Negative, bColumn8Negative, bColumn9Negative; +}; + +#endif -- cgit v1.2.1