forked from ciphrex/mSIGNA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportbip32dialog.cpp
67 lines (53 loc) · 1.74 KB
/
importbip32dialog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
///////////////////////////////////////////////////////////////////////////////
//
// mSIGNA
//
// importbip32dialog.cpp
//
// Copyright (c) 2013 Eric Lombrozo
//
// All Rights Reserved.
#include "importbip32dialog.h"
#include <stdutils/uchar_vector.h>
#include <CoinCore/Base58Check.h>
#include <QDialogButtonBox>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLineEdit>
#include <QLabel>
#include <stdexcept>
ImportBIP32Dialog::ImportBIP32Dialog(QWidget* parent)
: QDialog(parent)
{
setWindowTitle(tr("Import BIP32 Master Key"));
// Buttons
QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok
| QDialogButtonBox::Cancel);
connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
QLabel* nameLabel = new QLabel(tr("Name:"));
m_nameEdit = new QLineEdit();
QHBoxLayout* nameLayout = new QHBoxLayout();
nameLayout->addWidget(nameLabel);
nameLayout->addWidget(m_nameEdit);
QLabel* base58Label = new QLabel(tr("BIP32 Extended Key:"));
m_base58Edit = new QLineEdit();
QVBoxLayout* mainLayout = new QVBoxLayout();
mainLayout->setSizeConstraint(QLayout::SetNoConstraint);
mainLayout->addLayout(nameLayout);
mainLayout->addWidget(base58Label);
mainLayout->addWidget(m_base58Edit);
mainLayout->addWidget(buttonBox);
setLayout(mainLayout);
resize(1000, 150);
}
QString ImportBIP32Dialog::getName() const
{
return m_nameEdit->text();
}
secure_bytes_t ImportBIP32Dialog::getExtendedKey() const
{
secure_bytes_t extkey;
if (!fromBase58Check(m_base58Edit->text().toStdString(), extkey)) throw std::runtime_error("Invalid BIP32.");
return extkey;
}