mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-23 12:09:50 +00:00
60 lines
2.1 KiB
C++
60 lines
2.1 KiB
C++
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#include <QFileDialog>
|
||
|
#include <QInputDialog>
|
||
|
#include <QMessageBox>
|
||
|
|
||
|
#include "viewonlydialog.h"
|
||
|
#include "ui_viewonlydialog.h"
|
||
|
|
||
|
ViewOnlyDialog::ViewOnlyDialog(AppContext *ctx, QWidget *parent)
|
||
|
: QDialog(parent)
|
||
|
, ui(new Ui::ViewOnlyDialog), m_ctx(ctx)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
|
||
|
ui->label_restoreHeight->setText(QString::number(ctx->currentWallet->getWalletCreationHeight()));
|
||
|
ui->label_primaryAddress->setText(ctx->currentWallet->address(0, 0));
|
||
|
ui->label_secretViewKey->setText(ctx->currentWallet->getSecretViewKey());
|
||
|
|
||
|
connect(ui->btn_Copy, &QPushButton::clicked, this, &ViewOnlyDialog::copyToClipboad);
|
||
|
connect(ui->btn_Save, &QPushButton::clicked, this, &ViewOnlyDialog::onWriteViewOnlyWallet);
|
||
|
|
||
|
ui->btn_Save->setEnabled(!m_ctx->currentWallet->viewOnly());
|
||
|
this->adjustSize();
|
||
|
}
|
||
|
|
||
|
void ViewOnlyDialog::onWriteViewOnlyWallet(){
|
||
|
QString fn = QFileDialog::getSaveFileName(this, "Save .keys wallet file", QDir::homePath(), "Monero wallet (*.keys)");
|
||
|
if(fn.isEmpty()) return;
|
||
|
if(!fn.endsWith(".keys")) fn += ".keys";
|
||
|
|
||
|
QString passwd;
|
||
|
QInputDialog passwordDialog(this);
|
||
|
passwordDialog.setInputMode(QInputDialog::TextInput);
|
||
|
passwordDialog.setTextEchoMode(QLineEdit::Password);
|
||
|
passwordDialog.setWindowTitle("View-Only wallet password");
|
||
|
passwordDialog.setLabelText("Protect this view-only wallet with a password?");
|
||
|
passwordDialog.resize(300, 100);
|
||
|
if((bool)passwordDialog.exec())
|
||
|
passwd = passwordDialog.textValue();
|
||
|
|
||
|
m_ctx->currentWallet->createViewOnly(fn, passwd);
|
||
|
|
||
|
QMessageBox::information(this, "Information", "View-only wallet successfully written to disk.");
|
||
|
}
|
||
|
|
||
|
void ViewOnlyDialog::copyToClipboad() {
|
||
|
QString text = "";
|
||
|
text += QString("Address: %1\n").arg(ui->label_primaryAddress->text());
|
||
|
text += QString("Secret view key: %1\n").arg(ui->label_secretViewKey->text());
|
||
|
text += QString("Restore height: %1\n").arg(ui->label_restoreHeight->text());
|
||
|
Utils::copyToClipboard(text);
|
||
|
}
|
||
|
|
||
|
ViewOnlyDialog::~ViewOnlyDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|