Fix status bar not displaying Alerts.
[novacoin.git] / src / qt / sendcoinsentry.h
1 #ifndef SENDCOINSENTRY_H
2 #define SENDCOINSENTRY_H
3
4 #include <QFrame>
5
6 namespace Ui {
7     class SendCoinsEntry;
8 }
9 class WalletModel;
10 class SendCoinsRecipient;
11
12 /** A single entry in the dialog for sending bitcoins. */
13 class SendCoinsEntry : public QFrame
14 {
15     Q_OBJECT
16
17 public:
18     explicit SendCoinsEntry(QWidget *parent = 0);
19     ~SendCoinsEntry();
20
21     void setModel(WalletModel *model);
22     bool validate();
23     SendCoinsRecipient getValue();
24
25     /** Return whether the entry is still empty and unedited */
26     bool isClear();
27
28     void setValue(const SendCoinsRecipient &value);
29
30     /** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907).
31      */
32     QWidget *setupTabChain(QWidget *prev);
33
34 public slots:
35     void setRemoveEnabled(bool enabled);
36     void clear();
37
38 signals:
39     void removeEntry(SendCoinsEntry *entry);
40
41 private slots:
42     void on_deleteButton_clicked();
43     void on_payTo_textChanged(const QString &address);
44     void on_addressBookButton_clicked();
45     void on_pasteButton_clicked();
46
47 private:
48     Ui::SendCoinsEntry *ui;
49     WalletModel *model;
50 };
51
52 #endif // SENDCOINSENTRY_H