summaryrefslogtreecommitdiff
path: root/noncore/unsupported/qashmoney/preferencedialogs.h
blob: 88281b85606f791c4ad822b49abae8082420e323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <qcombobox.h>
#include <qdialog.h>
#include <qpushbutton.h>
#include <qpixmap.h>
#include <qgroupbox.h>
#include <qhbuttongroup.h>
#include <qcheckbox.h>
#include <qlayout.h>
#include <qlabel.h>
#include <qhbox.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;
    QHBox *limittransactionsbox;
    QLabel *limittransactionslabel;
    QComboBox *limittransactions;
    QPushButton *defaults;
    QBoxLayout *layout;

  public slots:
    void changeShowClearedPreference ( bool );
    void changeExcludeTranfersPreference ( bool );
    void setDefaultTransactionPreferences ();
    void changeLimitTransactionsPreference ( int );
};

#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