summaryrefslogtreecommitdiffstats
path: root/kplato/kptaccountsview.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kplato/kptaccountsview.h
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kplato/kptaccountsview.h')
-rw-r--r--kplato/kptaccountsview.h131
1 files changed, 131 insertions, 0 deletions
diff --git a/kplato/kptaccountsview.h b/kplato/kptaccountsview.h
new file mode 100644
index 000000000..cc73514a5
--- /dev/null
+++ b/kplato/kptaccountsview.h
@@ -0,0 +1,131 @@
+/* This file is part of the KDE project
+ Copyright (C) 2005 Dag Andersen <kplato@kde.org>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+
+#ifndef KPTACCOUNTSVIEW_H
+#define KPTACCOUNTSVIEW_H
+
+#include <qdatetime.h>
+
+#include <klistview.h>
+
+#include "kptaccount.h"
+#include "kptcontext.h"
+#include "kpteffortcostmap.h"
+#include "kptdoublelistviewbase.h"
+
+class QComboBox;
+class QDateEdit;
+class QPushButton;
+class QSplitter;
+class QListViewItem;
+class QLabel;
+class QPushButton;
+
+class KListView;
+class KListViewItem;
+class KPrinter;
+
+namespace KPlato
+{
+
+class Label;
+class Account;
+class View;
+class Project;
+class Resource;
+class Node;
+
+class ResourceGroup;
+class Resource;
+class ResourceItemPrivate;
+
+class AccountsView : public QWidget
+{
+ Q_OBJECT
+public:
+
+ AccountsView(Project &project, View *view, QWidget *parent);
+
+ //~AccountsView();
+
+ void zoom(double zoom);
+
+ View *mainView() { return m_mainview; }
+ void draw();
+ void print(KPrinter &printer);
+
+ virtual bool setContext(Context::Accountsview &context);
+ virtual void getContext(Context::Accountsview &context) const;
+
+signals:
+ void update();
+
+public slots:
+ void slotConfigure();
+
+protected slots:
+ void slotUpdate();
+
+protected:
+ void getContextClosedItems(Context::Accountsview &context, QListViewItem *item) const;
+ void setContextClosedItems(Context::Accountsview &context);
+
+private:
+ class AccountItem : public DoubleListViewBase::MasterListItem {
+ public:
+ AccountItem(Account *a, QListView *parent, bool highlight=false);
+ AccountItem(Account *a, QListViewItem *parent, bool highlight=false);
+ AccountItem(QString text, Account *a, QListViewItem *parent, bool _highlight=false);
+
+ void add(int col, const QDate &date, const EffortCost &ec);
+
+ Account *account;
+ EffortCostMap costMap;
+ };
+
+ void init();
+ void initAccList(const AccountList &list);
+ void initAccSubItems(Account *acc, AccountItem *parent);
+ void initAccList(const AccountList &list, AccountItem *parent);
+ void createPeriods();
+ void clearPeriods();
+ QString periodText(int offset);
+
+private:
+ View *m_mainview;
+ Project &m_project;
+ Accounts &m_accounts;
+
+ int m_defaultFontSize;
+
+ QDate m_date;
+ int m_period;
+ bool m_cumulative;
+
+ DoubleListViewBase *m_dlv;
+
+ QStringList m_periodTexts;
+ QPushButton *m_changeBtn;
+ Label *m_label;
+
+};
+
+} //KPlato namespace
+
+#endif