aboutsummaryrefslogtreecommitdiff
path: root/src/qt/sendcoinsdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt/sendcoinsdialog.h')
-rw-r--r--src/qt/sendcoinsdialog.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/qt/sendcoinsdialog.h b/src/qt/sendcoinsdialog.h
new file mode 100644
index 0000000000..0f90be8165
--- /dev/null
+++ b/src/qt/sendcoinsdialog.h
@@ -0,0 +1,43 @@
+#ifndef SENDCOINSDIALOG_H
+#define SENDCOINSDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+ class SendCoinsDialog;
+}
+class WalletModel;
+class SendCoinsEntry;
+
+class SendCoinsDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit SendCoinsDialog(QWidget *parent = 0);
+ ~SendCoinsDialog();
+
+ void setModel(WalletModel *model);
+
+ // Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907)
+ // Hence we have to set it up manually
+ QWidget *setupTabChain(QWidget *prev);
+
+public slots:
+ void clear();
+ void reject();
+ void accept();
+ void addEntry();
+ void updateRemoveEnabled();
+
+private:
+ Ui::SendCoinsDialog *ui;
+ WalletModel *model;
+
+private slots:
+ void on_sendButton_clicked();
+
+ void removeEntry(SendCoinsEntry* entry);
+};
+
+#endif // SENDCOINSDIALOG_H