You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
487 B
29 lines
487 B
14 years ago
|
#ifndef SENDCOINSDIALOG_H
|
||
|
#define SENDCOINSDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
14 years ago
|
namespace Ui {
|
||
|
class SendCoinsDialog;
|
||
|
}
|
||
|
|
||
14 years ago
|
class SendCoinsDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
14 years ago
|
|
||
14 years ago
|
public:
|
||
|
explicit SendCoinsDialog(QWidget *parent = 0);
|
||
14 years ago
|
~SendCoinsDialog();
|
||
14 years ago
|
|
||
14 years ago
|
private:
|
||
|
Ui::SendCoinsDialog *ui;
|
||
14 years ago
|
|
||
|
private slots:
|
||
14 years ago
|
void on_buttonBox_rejected();
|
||
14 years ago
|
void on_addressBookButton_clicked();
|
||
|
void on_pasteButton_clicked();
|
||
|
void on_sendButton_clicked();
|
||
14 years ago
|
};
|
||
|
|
||
|
#endif // SENDCOINSDIALOG_H
|