forked from ciphrex/mSIGNA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportbip39dialog.cpp
82 lines (64 loc) · 1.89 KB
/
importbip39dialog.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
///////////////////////////////////////////////////////////////////////////////
//
// mSIGNA
//
// importbip39dialog.cpp
//
// Copyright (c) 2013 Eric Lombrozo
//
// All Rights Reserved.
#include "importbip39dialog.h"
#include <CoinCore/bip39.h>
#include <QDialogButtonBox>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLineEdit>
#include <QLabel>
#include <stdexcept>
ImportBIP39Dialog::ImportBIP39Dialog(QWidget* parent)
: QDialog(parent)
{
init();
}
ImportBIP39Dialog::ImportBIP39Dialog(const QString& name, QWidget* parent)
: QDialog(parent)
{
init(name);
}
void ImportBIP39Dialog::init(const QString& name)
{
setWindowTitle(tr("Import Wordlist"));
// 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();
if (!name.isEmpty())
{
m_nameEdit->setText(name);
m_nameEdit->setReadOnly(true);
}
QHBoxLayout* nameLayout = new QHBoxLayout();
nameLayout->addWidget(nameLabel);
nameLayout->addWidget(m_nameEdit);
QLabel* wordlistLabel = new QLabel(tr("Wordlist:"));
m_wordlistEdit = new QLineEdit();
QVBoxLayout* mainLayout = new QVBoxLayout();
mainLayout->setSizeConstraint(QLayout::SetNoConstraint);
mainLayout->addLayout(nameLayout);
mainLayout->addWidget(wordlistLabel);
mainLayout->addWidget(m_wordlistEdit);
mainLayout->addWidget(buttonBox);
setLayout(mainLayout);
resize(1000, 150);
}
QString ImportBIP39Dialog::getName() const
{
return m_nameEdit->text();
}
secure_bytes_t ImportBIP39Dialog::getSeed() const
{
return Coin::BIP39::fromWordlist(m_wordlistEdit->text().toStdString());
}