aboutsummaryrefslogtreecommitdiff
path: root/src/qt/sendcoinsentry.h
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2013-08-22 01:54:28 -0700
committerGavin Andresen <gavinandresen@gmail.com>2013-08-22 01:54:28 -0700
commite62f8d72f349aec0865268c089ae99fedd314af1 (patch)
tree7735f34781f1ced27553b202bceaa74048018636 /src/qt/sendcoinsentry.h
parente4348d2179b5083769582b3036f40902b0122bbf (diff)
parenta41d5fe01947f2f878c055670986a165af800f9a (diff)
downloadbitcoin-e62f8d72f349aec0865268c089ae99fedd314af1.tar.xz
Merge pull request #2539 from gavinandresen/paymentrequest
Payment Protocol Work
Diffstat (limited to 'src/qt/sendcoinsentry.h')
-rw-r--r--src/qt/sendcoinsentry.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/qt/sendcoinsentry.h b/src/qt/sendcoinsentry.h
index ec5f3410c1..9c7bfe9521 100644
--- a/src/qt/sendcoinsentry.h
+++ b/src/qt/sendcoinsentry.h
@@ -1,16 +1,21 @@
#ifndef SENDCOINSENTRY_H
#define SENDCOINSENTRY_H
-#include <QFrame>
+#include <QStackedWidget>
+
+#include "walletmodel.h"
namespace Ui {
class SendCoinsEntry;
}
class WalletModel;
-class SendCoinsRecipient;
-/** A single entry in the dialog for sending bitcoins. */
-class SendCoinsEntry : public QFrame
+/**
+ * A single entry in the dialog for sending bitcoins.
+ * Stacked widget, with different UIs for payment requests
+ * with a strong payee identity.
+ */
+class SendCoinsEntry : public QStackedWidget
{
Q_OBJECT
@@ -49,6 +54,7 @@ private slots:
void updateDisplayUnit();
private:
+ SendCoinsRecipient recipient;
Ui::SendCoinsEntry *ui;
WalletModel *model;
};