2011-05-08 20:23:31 +00:00
|
|
|
#ifndef SENDCOINSDIALOG_H
|
|
|
|
#define SENDCOINSDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2011-05-12 12:44:52 +00:00
|
|
|
namespace Ui {
|
|
|
|
class SendCoinsDialog;
|
|
|
|
}
|
|
|
|
|
2011-05-08 20:23:31 +00:00
|
|
|
class SendCoinsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2011-05-12 12:44:52 +00:00
|
|
|
|
2011-05-08 20:23:31 +00:00
|
|
|
public:
|
|
|
|
explicit SendCoinsDialog(QWidget *parent = 0);
|
2011-05-12 12:44:52 +00:00
|
|
|
~SendCoinsDialog();
|
2011-05-08 20:23:31 +00:00
|
|
|
|
2011-05-12 12:44:52 +00:00
|
|
|
private:
|
|
|
|
Ui::SendCoinsDialog *ui;
|
2011-05-12 15:55:24 +00:00
|
|
|
|
|
|
|
private slots:
|
2011-05-13 20:00:27 +00:00
|
|
|
void on_buttonBox_rejected();
|
2011-05-12 15:55:24 +00:00
|
|
|
void on_addressBookButton_clicked();
|
|
|
|
void on_pasteButton_clicked();
|
|
|
|
void on_sendButton_clicked();
|
2011-05-08 20:23:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SENDCOINSDIALOG_H
|