feather/src/dialog/WalletInfoDialog.cpp
2024-01-01 18:07:58 +01:00

49 lines
No EOL
2.3 KiB
C++

// SPDX-License-Identifier: BSD-3-Clause
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
#include "WalletInfoDialog.h"
#include "ui_WalletInfoDialog.h"
#include <QDesktopServices>
#include "utils/Utils.h"
WalletInfoDialog::WalletInfoDialog(Wallet *wallet, QWidget *parent)
: WindowModalDialog(parent)
, ui(new Ui::WalletInfoDialog)
, m_wallet(wallet)
{
ui->setupUi(this);
QFileInfo cache(m_wallet->cachePath());
ui->label_walletName->setText(QFileInfo(m_wallet->cachePath()).fileName());
ui->label_netType->setText(Utils::QtEnumToString(m_wallet->nettype()));
ui->label_seedType->setText(QString("%1 word").arg(m_wallet->seedLength()));
ui->label_viewOnly->setText(m_wallet->viewOnly() ? "True" : "False");
ui->label_subaddressLookahead->setText(m_wallet->getSubaddressLookahead());
ui->label_keysFile->setText(m_wallet->keysPath());
ui->label_cacheFile->setText(m_wallet->cachePath());
ui->label_cacheSize->setText(QString("%1 MB").arg(QString::number(cache.size() / 1e6, 'f', 2)));
connect(ui->btn_openWalletDir, &QPushButton::clicked, this, &WalletInfoDialog::openWalletDir);
ui->label_keysFileLabel->setHelpText("", "The \"keys file\" stores the wallet keys and wallet settings. "
"It is encrypted with the wallet password (if set).\n\n"
"Your funds will be irreversibly lost if you delete this file "
"without having a backup of your mnemonic seed or private keys.", "wallet_files");
ui->label_cacheFileLabel->setHelpText("", "The \"cache file\" stores transaction data, contacts, address labels, "
"block hashes, the 14-word seed (if applicable), and other miscellaneous information. "
"It is encrypted with the wallet password (if set).\n\n"
"Warning: Transaction keys and the 14-word seed CANNOT be recovered if this file is deleted.", "wallet_files");
this->adjustSize();
}
void WalletInfoDialog::openWalletDir() {
QFileInfo file(m_wallet->keysPath());
QDesktopServices::openUrl(QUrl::fromLocalFile(file.absolutePath()));
}
WalletInfoDialog::~WalletInfoDialog() = default;