forked from ciphrex/mSIGNA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewbip39dialog.cpp
65 lines (50 loc) · 1.65 KB
/
viewbip39dialog.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
///////////////////////////////////////////////////////////////////////////////
//
// mSIGNA
//
// viewbip39dialog.cpp
//
// Copyright (c) 2015 Eric Lombrozo
//
// All Rights Reserved.
#include "viewbip39dialog.h"
#include <CoinCore/bip39.h>
#include <QDialogButtonBox>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLineEdit>
#include <QLabel>
#include <stdexcept>
ViewBIP39Dialog::ViewBIP39Dialog(const QString& name, const secure_bytes_t& seed, QWidget* parent)
: QDialog(parent)
{
init(QString(), name, seed);
}
ViewBIP39Dialog::ViewBIP39Dialog(const QString& prompt, const QString& name, const secure_bytes_t& seed, QWidget* parent)
: QDialog(parent)
{
init(prompt, name, seed);
}
void ViewBIP39Dialog::init(const QString& prompt, const QString& name, const secure_bytes_t& seed)
{
setWindowTitle(tr("Wordlist for ") + name);
// Buttons
QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok
| QDialogButtonBox::Cancel);
connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
QLineEdit* wordlistEdit = new QLineEdit();
wordlistEdit->setReadOnly(true);
wordlistEdit->setText(Coin::BIP39::toWordlist(seed).c_str());
QVBoxLayout* mainLayout = new QVBoxLayout();
//mainLayout->setSizeConstraint(QLayout::SetNoConstraint);
if (!prompt.isEmpty())
{
QLabel* promptLabel= new QLabel(prompt);
mainLayout->addWidget(promptLabel);
}
mainLayout->addWidget(wordlistEdit);
mainLayout->addWidget(buttonBox);
setLayout(mainLayout);
resize(1000, 100);
}