summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/preferencedialogs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/apps/qashmoney/preferencedialogs.h b/noncore/apps/qashmoney/preferencedialogs.h
index e96c4bd..97b2dbb 100755
--- a/noncore/apps/qashmoney/preferencedialogs.h
+++ b/noncore/apps/qashmoney/preferencedialogs.h
@@ -1,84 +1,86 @@
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 9
10#ifndef DATEPREFERENCES_H 10#ifndef DATEPREFERENCES_H
11#define DATEPREFERENCES_H 11#define DATEPREFERENCES_H
12 12
13class DatePreferences : public QDialog 13class DatePreferences : public QDialog
14 { 14 {
15 Q_OBJECT 15 Q_OBJECT
16 16
17 public: 17 public:
18 DatePreferences ( QWidget * parent ); 18 DatePreferences ( QWidget * parent );
19 ~DatePreferences(); 19 ~DatePreferences();
20 20
21 QPushButton *defaults; 21 QPushButton *defaults;
22 QComboBox *dateformat; 22 QComboBox *dateformat;
23 QComboBox *dateseparator; 23 QComboBox *dateseparator;
24 QBoxLayout *layout; 24 QBoxLayout *layout;
25 25
26 public slots: 26 public slots:
27 void changeDateFormat ( int ); 27 void changeDateFormat ( int );
28 void changeDateSeparator ( int ); 28 void changeDateSeparator ( int );
29 void setDefaultDatePreferences (); 29 void setDefaultDatePreferences ();
30}; 30};
31 31
32#endif 32#endif
33 33
34#ifndef TRANSACTIONPREFERENCES_H 34#ifndef TRANSACTIONPREFERENCES_H
35#define TRANSACTIONPREFERENCES_H 35#define TRANSACTIONPREFERENCES_H
36 36
37class TransactionPreferences : public QDialog 37class TransactionPreferences : public QDialog
38 { 38 {
39 Q_OBJECT 39 Q_OBJECT
40 40
41 public: 41 public:
42 TransactionPreferences ( QWidget * parent ); 42 TransactionPreferences ( QWidget * parent );
43 ~TransactionPreferences(); 43 ~TransactionPreferences();
44 44
45 QCheckBox *showclearedtransactions; 45 QCheckBox *showclearedtransactions;
46 QCheckBox *excludetransfers; 46 QCheckBox *excludetransfers;
47 QString *limittransactionslabel;
48 QComboBox *limittransactions;
47 QPushButton *defaults; 49 QPushButton *defaults;
48 QBoxLayout *layout; 50 QBoxLayout *layout;
49 51
50 public slots: 52 public slots:
51 void changeShowClearedPreference ( bool ); 53 void changeShowClearedPreference ( bool );
52 void changeExcludeTranfersPreference ( bool ); 54 void changeExcludeTranfersPreference ( bool );
53 void setDefaultTransactionPreferences (); 55 void setDefaultTransactionPreferences ();
54}; 56};
55 57
56#endif 58#endif
57 59
58#ifndef ACCOUNTPREFERENCES_H 60#ifndef ACCOUNTPREFERENCES_H
59#define ACCOUNTPREFERENCES_H 61#define ACCOUNTPREFERENCES_H
60 62
61class AccountPreferences : public QDialog 63class AccountPreferences : public QDialog
62 { 64 {
63 Q_OBJECT 65 Q_OBJECT
64 66
65 public: 67 public:
66 AccountPreferences ( QWidget * parent ); 68 AccountPreferences ( QWidget * parent );
67 ~AccountPreferences(); 69 ~AccountPreferences();
68 70
69 QCheckBox *currencysupport; 71 QCheckBox *currencysupport;
70 QCheckBox *onetouch; 72 QCheckBox *onetouch;
71 QPushButton *defaults; 73 QPushButton *defaults;
72 QBoxLayout *layout; 74 QBoxLayout *layout;
73 75
74 public slots: 76 public slots:
75 void changeCurrencySupport ( bool ); 77 void changeCurrencySupport ( bool );
76 void changeOneTouchViewing ( bool ); 78 void changeOneTouchViewing ( bool );
77 void setDefaultAccountPreferences (); 79 void setDefaultAccountPreferences ();
78}; 80};
79 81
80#endif 82#endif
81 83
82 84
83 85
84 86