summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/checkbook.h
Unidiff
Diffstat (limited to 'noncore/apps/checkbook/checkbook.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/checkbook.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/noncore/apps/checkbook/checkbook.h b/noncore/apps/checkbook/checkbook.h
index a86c0f9..01f1115 100644
--- a/noncore/apps/checkbook/checkbook.h
+++ b/noncore/apps/checkbook/checkbook.h
@@ -26,24 +26,25 @@
26 26
27*/ 27*/
28 28
29#ifndef CHECKBOOK_H 29#ifndef CHECKBOOK_H
30#define CHECKBOOK_H 30#define CHECKBOOK_H
31 31
32#include "traninfo.h" 32#include "traninfo.h"
33 33
34#include <qdialog.h> 34#include <qdialog.h>
35 35
36class OTabWidget; 36class OTabWidget;
37 37
38class Graph;
38class QComboBox; 39class QComboBox;
39class QLabel; 40class QLabel;
40class QLineEdit; 41class QLineEdit;
41class QListView; 42class QListView;
42class QMultiLineEdit; 43class QMultiLineEdit;
43class QString; 44class QString;
44 45
45class Checkbook : public QDialog 46class Checkbook : public QDialog
46{ 47{
47 Q_OBJECT 48 Q_OBJECT
48 49
49 public: 50 public:
@@ -74,27 +75,27 @@ class Checkbook : public QDialog
74 QLineEdit *pinNumEdit; 75 QLineEdit *pinNumEdit;
75 QLineEdit *balanceEdit; 76 QLineEdit *balanceEdit;
76 QMultiLineEdit *notesEdit; 77 QMultiLineEdit *notesEdit;
77 float startBalance; 78 float startBalance;
78 79
79 // Transactions tab 80 // Transactions tab
80 QWidget *initTransactions(); 81 QWidget *initTransactions();
81 QListView *tranTable; 82 QListView *tranTable;
82 QLabel *balanceLabel; 83 QLabel *balanceLabel;
83 float currBalance; 84 float currBalance;
84 85
85 // Charts tab 86 // Charts tab
86 QWidget *initCharts(); 87 QWidget *initCharts();
87 //QComboBox *graphList; 88 //QComboBox *graphList;
88 QWidget *graphWidget; 89 Graph *graphWidget;
89 90
90 protected slots: 91 protected slots:
91 void accept(); 92 void accept();
92 93
93 private slots: 94 private slots:
94 void slotNameChanged( const QString & ); 95 void slotNameChanged( const QString & );
95 void slotStartingBalanceChanged( const QString & ); 96 void slotStartingBalanceChanged( const QString & );
96 void slotNewTran(); 97 void slotNewTran();
97 void slotEditTran(); 98 void slotEditTran();
98 void slotDeleteTran(); 99 void slotDeleteTran();
99 void slotDrawGraph(); 100 void slotDrawGraph();
100}; 101};