author | allenforsythe <allenforsythe> | 2003-05-15 10:29:15 (UTC) |
---|---|---|
committer | allenforsythe <allenforsythe> | 2003-05-15 10:29:15 (UTC) |
commit | 19be94085643ce40e35a58eb419eb6b51a02b8d1 (patch) (side-by-side diff) | |
tree | f16ee1a4718deb5623cdeb514cc4ef02a3b9e975 | |
parent | df533ab9796e2538faf65a7ea4f24b8ff365ffaa (diff) | |
download | opie-19be94085643ce40e35a58eb419eb6b51a02b8d1.zip opie-19be94085643ce40e35a58eb419eb6b51a02b8d1.tar.gz opie-19be94085643ce40e35a58eb419eb6b51a02b8d1.tar.bz2 |
*** empty log message ***
-rwxr-xr-x | noncore/apps/qashmoney/preferencedialogs.h | 2 |
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 @@ #include <qcombobox.h> #include <qdialog.h> #include <qpushbutton.h> #include <qpixmap.h> #include <qgroupbox.h> #include <qhbuttongroup.h> #include <qcheckbox.h> #include <qlayout.h> #ifndef DATEPREFERENCES_H #define DATEPREFERENCES_H class DatePreferences : public QDialog { Q_OBJECT public: DatePreferences ( QWidget * parent ); ~DatePreferences(); QPushButton *defaults; QComboBox *dateformat; QComboBox *dateseparator; QBoxLayout *layout; public slots: void changeDateFormat ( int ); void changeDateSeparator ( int ); void setDefaultDatePreferences (); }; #endif #ifndef TRANSACTIONPREFERENCES_H #define TRANSACTIONPREFERENCES_H class TransactionPreferences : public QDialog { Q_OBJECT public: TransactionPreferences ( QWidget * parent ); ~TransactionPreferences(); QCheckBox *showclearedtransactions; QCheckBox *excludetransfers; + QString *limittransactionslabel; + QComboBox *limittransactions; QPushButton *defaults; QBoxLayout *layout; public slots: void changeShowClearedPreference ( bool ); void changeExcludeTranfersPreference ( bool ); void setDefaultTransactionPreferences (); }; #endif #ifndef ACCOUNTPREFERENCES_H #define ACCOUNTPREFERENCES_H class AccountPreferences : public QDialog { Q_OBJECT public: AccountPreferences ( QWidget * parent ); ~AccountPreferences(); QCheckBox *currencysupport; QCheckBox *onetouch; QPushButton *defaults; QBoxLayout *layout; public slots: void changeCurrencySupport ( bool ); void changeOneTouchViewing ( bool ); void setDefaultAccountPreferences (); }; #endif |