summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/transaction.h
Unidiff
Diffstat (limited to 'noncore/apps/checkbook/transaction.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/transaction.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/noncore/apps/checkbook/transaction.h b/noncore/apps/checkbook/transaction.h
index fbe9cd3..130d769 100644
--- a/noncore/apps/checkbook/transaction.h
+++ b/noncore/apps/checkbook/transaction.h
@@ -47,12 +47,14 @@ class Transaction : public QDialog
47 Q_OBJECT 47 Q_OBJECT
48 48
49 public: 49 public:
50 Transaction( QWidget *, const QString &, TranInfo *, Cfg *); 50 Transaction( QWidget *, bool, const QString &, TranInfo *, Cfg *);
51 ~Transaction(); 51 ~Transaction();
52 52
53 private: 53 void initFromInfo(TranInfo *, bool=false);
54 TranInfo *tran;
55 54
55 private:
56 TranInfo *tran;
57 bool _bNew;
56 Cfg *_pCfg; 58 Cfg *_pCfg;
57 59
58 QRadioButton *withBtn; 60 QRadioButton *withBtn;
@@ -60,7 +62,7 @@ class Transaction : public QDialog
60 QPushButton *dateBtn; 62 QPushButton *dateBtn;
61 DateBookMonth *datePicker; 63 DateBookMonth *datePicker;
62 QLineEdit *numEdit; 64 QLineEdit *numEdit;
63 QLineEdit *descEdit; 65 QComboBox *_cbDesc;
64 QComboBox *catList; 66 QComboBox *catList;
65 QComboBox *typeList; 67 QComboBox *typeList;
66 QLineEdit *amtEdit; 68 QLineEdit *amtEdit;
@@ -74,6 +76,8 @@ class Transaction : public QDialog
74 void slotWithdrawalClicked(); 76 void slotWithdrawalClicked();
75 void slotDepositClicked(); 77 void slotDepositClicked();
76 void slotDateChanged( int, int, int ); 78 void slotDateChanged( int, int, int );
79 void slotActivated(const QString & );
80 void slotNotNew();
77}; 81};
78 82
79#endif 83#endif