Somewhat confident now, tested on GNOME+KDE, with all types of transactions. Next...
[novacoin.git] / gui / include / sendcoinsdialog.h
1 #ifndef SENDCOINSDIALOG_H
2 #define SENDCOINSDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class SendCoinsDialog;
8 }
9 class ClientModel;
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(ClientModel *model);
20
21 private:
22     Ui::SendCoinsDialog *ui;
23     ClientModel *model;
24
25 private slots:
26     void on_buttonBox_rejected();
27     void on_addressBookButton_clicked();
28     void on_pasteButton_clicked();
29     void on_sendButton_clicked();
30 };
31
32 #endif // SENDCOINSDIALOG_H