968cbe760f34520f611321d8dff00638009e6532
[novacoin.git] / src / qt / sendcoinsdialog.h
1 #ifndef SENDCOINSDIALOG_H
2 #define SENDCOINSDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class SendCoinsDialog;
8 }
9 class WalletModel;
10
11 class SendCoinsDialog : public QDialog
12 {
13     Q_OBJECT
14
15 public:
16     explicit SendCoinsDialog(QWidget *parent = 0, const QString &address = "");
17     ~SendCoinsDialog();
18
19     void setModel(WalletModel *model);
20
21 private:
22     Ui::SendCoinsDialog *ui;
23     WalletModel *model;
24
25 private slots:
26     void on_payTo_textChanged(const QString &address);
27     void on_buttonBox_rejected();
28     void on_addressBookButton_clicked();
29     void on_pasteButton_clicked();
30     void on_sendButton_clicked();
31 };
32
33 #endif // SENDCOINSDIALOG_H