summaryrefslogtreecommitdiff
path: root/noncore/apps/qashmoney/preferencedialogs.h
authorallenforsythe <allenforsythe>2003-05-15 10:54:55 (UTC)
committer allenforsythe <allenforsythe>2003-05-15 10:54:55 (UTC)
commit2e756a3677b9d4ef426f06beab7ba595c9878f4a (patch) (unidiff)
tree0776c1d88c1188bb0ee3e84fc5115980275b26df /noncore/apps/qashmoney/preferencedialogs.h
parent19be94085643ce40e35a58eb419eb6b51a02b8d1 (diff)
downloadopie-2e756a3677b9d4ef426f06beab7ba595c9878f4a.zip
opie-2e756a3677b9d4ef426f06beab7ba595c9878f4a.tar.gz
opie-2e756a3677b9d4ef426f06beab7ba595c9878f4a.tar.bz2
Added limit transaction combobox to transaction prefs
Diffstat (limited to 'noncore/apps/qashmoney/preferencedialogs.h') (more/less context) (show whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/preferencedialogs.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/noncore/apps/qashmoney/preferencedialogs.h b/noncore/apps/qashmoney/preferencedialogs.h
index 97b2dbb..88281b8 100755
--- a/noncore/apps/qashmoney/preferencedialogs.h
+++ b/noncore/apps/qashmoney/preferencedialogs.h
@@ -1,20 +1,22 @@
1#include <qcombobox.h> 1#include <qcombobox.h>
2#include <qdialog.h> 2#include <qdialog.h>
3#include <qpushbutton.h> 3#include <qpushbutton.h>
4#include <qpixmap.h> 4#include <qpixmap.h>
5#include <qgroupbox.h> 5#include <qgroupbox.h>
6#include <qhbuttongroup.h> 6#include <qhbuttongroup.h>
7#include <qcheckbox.h> 7#include <qcheckbox.h>
8#include <qlayout.h> 8#include <qlayout.h>
9#include <qlabel.h>
10#include <qhbox.h>
9 11
10#ifndef DATEPREFERENCES_H 12#ifndef DATEPREFERENCES_H
11#define DATEPREFERENCES_H 13#define DATEPREFERENCES_H
12 14
13class DatePreferences : public QDialog 15class DatePreferences : public QDialog
14 { 16 {
15 Q_OBJECT 17 Q_OBJECT
16 18
17 public: 19 public:
18 DatePreferences ( QWidget * parent ); 20 DatePreferences ( QWidget * parent );
19 ~DatePreferences(); 21 ~DatePreferences();
20 22
@@ -35,33 +37,35 @@ class DatePreferences : public QDialog
35#define TRANSACTIONPREFERENCES_H 37#define TRANSACTIONPREFERENCES_H
36 38
37class TransactionPreferences : public QDialog 39class TransactionPreferences : public QDialog
38 { 40 {
39 Q_OBJECT 41 Q_OBJECT
40 42
41 public: 43 public:
42 TransactionPreferences ( QWidget * parent ); 44 TransactionPreferences ( QWidget * parent );
43 ~TransactionPreferences(); 45 ~TransactionPreferences();
44 46
45 QCheckBox *showclearedtransactions; 47 QCheckBox *showclearedtransactions;
46 QCheckBox *excludetransfers; 48 QCheckBox *excludetransfers;
47 QString *limittransactionslabel; 49 QHBox *limittransactionsbox;
50 QLabel *limittransactionslabel;
48 QComboBox *limittransactions; 51 QComboBox *limittransactions;
49 QPushButton *defaults; 52 QPushButton *defaults;
50 QBoxLayout *layout; 53 QBoxLayout *layout;
51 54
52 public slots: 55 public slots:
53 void changeShowClearedPreference ( bool ); 56 void changeShowClearedPreference ( bool );
54 void changeExcludeTranfersPreference ( bool ); 57 void changeExcludeTranfersPreference ( bool );
55 void setDefaultTransactionPreferences (); 58 void setDefaultTransactionPreferences ();
59 void changeLimitTransactionsPreference ( int );
56}; 60};
57 61
58#endif 62#endif
59 63
60#ifndef ACCOUNTPREFERENCES_H 64#ifndef ACCOUNTPREFERENCES_H
61#define ACCOUNTPREFERENCES_H 65#define ACCOUNTPREFERENCES_H
62 66
63class AccountPreferences : public QDialog 67class AccountPreferences : public QDialog
64 { 68 {
65 Q_OBJECT 69 Q_OBJECT
66 70
67 public: 71 public: