forked from ciphrex/mSIGNA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeychainbackupdialog.cpp
56 lines (46 loc) · 1.42 KB
/
keychainbackupdialog.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
///////////////////////////////////////////////////////////////////////////////
//
// mSIGNA
//
// keychainbackupdialog.cpp
//
// Copyright (c) 2013 Eric Lombrozo
//
// All Rights Reserved.
#include "keychainbackupdialog.h"
#include <stdutils/uchar_vector.h>
#include <CoinCore/Base58Check.h>
#include <QDialogButtonBox>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QTextEdit>
#include <QLabel>
#include <stdexcept>
KeychainBackupDialog::KeychainBackupDialog(const QString& prompt, QWidget* parent)
: QDialog(parent)
{
/*
// Buttons
QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok
| QDialogButtonBox::Cancel);
connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
*/
// Prompt
QLabel* promptLabel = new QLabel();
promptLabel->setText(prompt);
// Text Edit
keychainBackupEdit = new QTextEdit();
QVBoxLayout* mainLayout = new QVBoxLayout();
mainLayout->setSizeConstraint(QLayout::SetNoConstraint);
mainLayout->addWidget(promptLabel);
mainLayout->addWidget(keychainBackupEdit);
//mainLayout->addWidget(buttonBox);
setLayout(mainLayout);
resize(1000, 100);
}
void KeychainBackupDialog::setExtendedKey(const bytes_t& extendedKey)
{
this->extendedKey = extendedKey;
keychainBackupEdit->setText(toBase58Check(extendedKey).c_str());
}