summaryrefslogtreecommitdiff
path: root/noncore/unsupported/qashmoney/budgetdisplay.h
blob: a4e806c0dff080750f8d1705eed5d97796524ea4 (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
#ifndef BUDGETDISPLAY_H
#define BUDGETDISPLAY_H

#include <qlistview.h>
#include <qlineedit.h>
#include <qpushbutton.h>
#include <qcombobox.h>
#include <qlayout.h>
#include <qlabel.h>
#include <qstringlist.h>
#include <qdatetime.h>
#include <qmenubar.h>
#include <qpopupmenu.h>
#include <qhbox.h>

#include "currency.h"

class BudgetDisplay : public QWidget
  {
    Q_OBJECT

    public:
      BudgetDisplay ( QWidget *parent );

      QMenuBar *menu;
      QPopupMenu *budgetmenu;
      QPopupMenu *lineitemsmenu;
      QPopupMenu *datemenu;

      QHBox *firstline;
      QHBox *secondline;

      QLabel *budgeted;
      QLabel *actual;
      QLabel *date;

      QLineEdit *budgetname;
      QLineEdit *description;
      Currency *currencybox;

      QLineEdit *lineitemname;
      QLineEdit *lineitemamount;
      QComboBox *lineitemtime;

      QListView *listview;
      QComboBox *budgetbox;
      QComboBox *budgetview;

      QBoxLayout *layout;

      int getIDColumn ();

    public slots:
      void displayBudgetNames ();
      void displayLineItems ();
      void updateBudgetInformation ();

    private slots:
      void saveColumnSize ( int column, int oldsize, int newsize );
      void newBudget ();
      void deleteBudget ();
      void setCurrentBudget ( int );
      void setCurrentView ( int );
      void showCalendar ();
      void newLineItem ();
      void deleteLineItem ();
      void checkBudgets ();
      void editBudget ();
      void editLineItem ();
      void constructBudgetWindow ();
      void constructLineItemWindow ();
      void saveSortingPreference ( int column );

    private:
      QStringList *names;
      QStringList *ids;
      int currentbudget, year, month, day;
      QDate newDate;
      QString totalbudget, totalactual;
      QString datelabel;
      QDialog *nb;
      QDialog *newlineitem;
};

#endif // BUDGETDISPLAY_H