summaryrefslogtreecommitdiffstats
path: root/kplato/kptaccountsview.h
blob: 2d2bf6b4a905cdf1259ba55c40edf3377f708071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* 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 <tqdatetime.h>

#include <tdelistview.h>

#include "kptaccount.h"
#include "kptcontext.h"
#include "kpteffortcostmap.h"
#include "kptdoublelistviewbase.h"

class TQComboBox;
class TQDateEdit;
class TQPushButton;
class TQSplitter;
class TQListViewItem;
class TQLabel;
class TQPushButton;

class TDEListView;
class TDEListViewItem;
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 TQWidget
{
    Q_OBJECT
  
public:

    AccountsView(Project &project, View *view, TQWidget *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, TQListViewItem *item) const;
    void setContextClosedItems(Context::Accountsview &context);

private:
    class AccountItem : public DoubleListViewBase::MasterListItem {
    public:
        AccountItem(Account *a, TQListView *parent, bool highlight=false);
        AccountItem(Account *a, TQListViewItem *parent, bool highlight=false);
        AccountItem(TQString text, Account *a, TQListViewItem *parent, bool _highlight=false);
        
        void add(int col, const TQDate &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();
    TQString periodText(int offset);
    
private:
    View *m_mainview;
    Project &m_project;
    Accounts &m_accounts;
    
    int m_defaultFontSize;

    TQDate m_date;
    int m_period;
    bool m_cumulative;
    
    DoubleListViewBase *m_dlv;

    TQStringList m_periodTexts;
    TQPushButton *m_changeBtn;
    Label *m_label;
    
};

}  //KPlato namespace

#endif