00001 #include <qcombobox.h> 00002 #include <qdialog.h> 00003 #include <qpushbutton.h> 00004 #include <qpixmap.h> 00005 #include <qgroupbox.h> 00006 #include <qhbuttongroup.h> 00007 #include <qcheckbox.h> 00008 #include <qlayout.h> 00009 #include <qlabel.h> 00010 #include <qhbox.h> 00011 00012 #ifndef DATEPREFERENCES_H 00013 #define DATEPREFERENCES_H 00014 00015 class DatePreferences : public QDialog 00016 { 00017 Q_OBJECT 00018 00019 public: 00020 DatePreferences ( QWidget * parent ); 00021 ~DatePreferences(); 00022 00023 QPushButton *defaults; 00024 QComboBox *dateformat; 00025 QComboBox *dateseparator; 00026 QBoxLayout *layout; 00027 00028 public slots: 00029 void changeDateFormat ( int ); 00030 void changeDateSeparator ( int ); 00031 void setDefaultDatePreferences (); 00032 }; 00033 00034 #endif 00035 00036 #ifndef TRANSACTIONPREFERENCES_H 00037 #define TRANSACTIONPREFERENCES_H 00038 00039 class TransactionPreferences : public QDialog 00040 { 00041 Q_OBJECT 00042 00043 public: 00044 TransactionPreferences ( QWidget * parent ); 00045 ~TransactionPreferences(); 00046 00047 QCheckBox *showclearedtransactions; 00048 QCheckBox *excludetransfers; 00049 QHBox *limittransactionsbox; 00050 QLabel *limittransactionslabel; 00051 QComboBox *limittransactions; 00052 QPushButton *defaults; 00053 QBoxLayout *layout; 00054 00055 public slots: 00056 void changeShowClearedPreference ( bool ); 00057 void changeExcludeTranfersPreference ( bool ); 00058 void setDefaultTransactionPreferences (); 00059 void changeLimitTransactionsPreference ( int ); 00060 }; 00061 00062 #endif 00063 00064 #ifndef ACCOUNTPREFERENCES_H 00065 #define ACCOUNTPREFERENCES_H 00066 00067 class AccountPreferences : public QDialog 00068 { 00069 Q_OBJECT 00070 00071 public: 00072 AccountPreferences ( QWidget * parent ); 00073 ~AccountPreferences(); 00074 00075 QCheckBox *currencysupport; 00076 QCheckBox *onetouch; 00077 QPushButton *defaults; 00078 QBoxLayout *layout; 00079 00080 public slots: 00081 void changeCurrencySupport ( bool ); 00082 void changeOneTouchViewing ( bool ); 00083 void setDefaultAccountPreferences (); 00084 }; 00085 00086 #endif 00087 00088 00089 00090
1.4.2