mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-22 18:54:33 +00:00
Use WindowModality for dialogs
This commit is contained in:
parent
484f61759e
commit
5f4dc89085
58 changed files with 105 additions and 56 deletions
|
@ -113,4 +113,10 @@ ClickableLabel::~ClickableLabel() = default;
|
||||||
|
|
||||||
void ClickableLabel::mousePressEvent(QMouseEvent* event) {
|
void ClickableLabel::mousePressEvent(QMouseEvent* event) {
|
||||||
emit clicked();
|
emit clicked();
|
||||||
|
}
|
||||||
|
|
||||||
|
WindowModalDialog::WindowModalDialog(QWidget *parent)
|
||||||
|
: QDialog(parent)
|
||||||
|
{
|
||||||
|
this->setWindowModality(Qt::WindowModal);
|
||||||
}
|
}
|
|
@ -121,4 +121,11 @@ protected:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class WindowModalDialog : public QDialog {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit WindowModalDialog(QWidget *parent);
|
||||||
|
};
|
||||||
|
|
||||||
#endif //FEATHER_COMPONENTS_H
|
#endif //FEATHER_COMPONENTS_H
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include "utils/Utils.h"
|
#include "utils/Utils.h"
|
||||||
|
|
||||||
AboutDialog::AboutDialog(QWidget *parent)
|
AboutDialog::AboutDialog(QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::AboutDialog)
|
, ui(new Ui::AboutDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -7,11 +7,13 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QStringListModel>
|
#include <QStringListModel>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class AboutDialog;
|
class AboutDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class AboutDialog : public QDialog
|
class AboutDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
#include "utils/Icons.h"
|
#include "utils/Icons.h"
|
||||||
|
|
||||||
AccountSwitcherDialog::AccountSwitcherDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
AccountSwitcherDialog::AccountSwitcherDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::AccountSwitcherDialog)
|
, ui(new Ui::AccountSwitcherDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
, m_model(m_ctx->wallet->subaddressAccountModel())
|
, m_model(m_ctx->wallet->subaddressAccountModel())
|
||||||
|
@ -25,6 +25,8 @@ AccountSwitcherDialog::AccountSwitcherDialog(QSharedPointer<AppContext> ctx, QWi
|
||||||
ui->label_totalBalance->setFont(ModelUtils::getMonospaceFont());
|
ui->label_totalBalance->setFont(ModelUtils::getMonospaceFont());
|
||||||
ui->label_totalBalance->setText(WalletManager::displayAmount(m_ctx->wallet->balanceAll()));
|
ui->label_totalBalance->setText(WalletManager::displayAmount(m_ctx->wallet->balanceAll()));
|
||||||
|
|
||||||
|
this->setWindowModality(Qt::WindowModal);
|
||||||
|
|
||||||
ui->accounts->setModel(m_proxyModel);
|
ui->accounts->setModel(m_proxyModel);
|
||||||
ui->accounts->setContextMenuPolicy(Qt::CustomContextMenu);
|
ui->accounts->setContextMenuPolicy(Qt::CustomContextMenu);
|
||||||
ui->accounts->setSelectionMode(QAbstractItemView::SingleSelection);
|
ui->accounts->setSelectionMode(QAbstractItemView::SingleSelection);
|
||||||
|
|
|
@ -7,13 +7,14 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
#include "model/SubaddressAccountModel.h"
|
#include "model/SubaddressAccountModel.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class AccountSwitcherDialog;
|
class AccountSwitcherDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class AccountSwitcherDialog : public QDialog
|
class AccountSwitcherDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include "model/ModelUtils.h"
|
#include "model/ModelUtils.h"
|
||||||
|
|
||||||
BalanceDialog::BalanceDialog(QWidget *parent, Wallet *wallet)
|
BalanceDialog::BalanceDialog(QWidget *parent, Wallet *wallet)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::BalanceDialog)
|
, ui(new Ui::BalanceDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -6,13 +6,14 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
#include "libwalletqt/Wallet.h"
|
#include "libwalletqt/Wallet.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class BalanceDialog;
|
class BalanceDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class BalanceDialog : public QDialog
|
class BalanceDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include "utils/config.h"
|
#include "utils/config.h"
|
||||||
|
|
||||||
CalcConfigDialog::CalcConfigDialog(QWidget *parent)
|
CalcConfigDialog::CalcConfigDialog(QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::CalcConfigDialog)
|
, ui(new Ui::CalcConfigDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -7,11 +7,13 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QListWidget>
|
#include <QListWidget>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class CalcConfigDialog;
|
class CalcConfigDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class CalcConfigDialog : public QDialog
|
class CalcConfigDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#include "ContactsDialog.h"
|
#include "ContactsDialog.h"
|
||||||
|
|
||||||
ContactsDialog::ContactsDialog(QWidget *parent, const QString &address, const QString &name)
|
ContactsDialog::ContactsDialog(QWidget *parent, const QString &address, const QString &name)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::ContactsDialog)
|
, ui(new Ui::ContactsDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -6,11 +6,13 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class ContactsDialog;
|
class ContactsDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class ContactsDialog : public QDialog
|
class ContactsDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
#include "utils/WebsocketNotifier.h"
|
#include "utils/WebsocketNotifier.h"
|
||||||
|
|
||||||
DebugInfoDialog::DebugInfoDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
DebugInfoDialog::DebugInfoDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::DebugInfoDialog)
|
, ui(new Ui::DebugInfoDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,13 +7,14 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
#include "libwalletqt/Wallet.h"
|
#include "libwalletqt/Wallet.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class DebugInfoDialog;
|
class DebugInfoDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class DebugInfoDialog : public QDialog
|
class DebugInfoDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#include "ui_InfoDialog.h"
|
#include "ui_InfoDialog.h"
|
||||||
|
|
||||||
InfoDialog::InfoDialog(QWidget *parent, const QString &title, const QString &infoData)
|
InfoDialog::InfoDialog(QWidget *parent, const QString &title, const QString &infoData)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::InfoDialog)
|
, ui(new Ui::InfoDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -6,11 +6,13 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class InfoDialog;
|
class InfoDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class InfoDialog : public QDialog
|
class InfoDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#include "ui_KeysDialog.h"
|
#include "ui_KeysDialog.h"
|
||||||
|
|
||||||
KeysDialog::KeysDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
KeysDialog::KeysDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::KeysDialog)
|
, ui(new Ui::KeysDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -7,12 +7,13 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class KeysDialog;
|
class KeysDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class KeysDialog : public QDialog
|
class KeysDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include "utils/Utils.h"
|
#include "utils/Utils.h"
|
||||||
|
|
||||||
LocalMoneroInfoDialog::LocalMoneroInfoDialog(QWidget *parent, LocalMoneroModel *model, int row)
|
LocalMoneroInfoDialog::LocalMoneroInfoDialog(QWidget *parent, LocalMoneroModel *model, int row)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::LocalMoneroInfoDialog)
|
, ui(new Ui::LocalMoneroInfoDialog)
|
||||||
, m_model(model)
|
, m_model(model)
|
||||||
, m_row(row)
|
, m_row(row)
|
||||||
|
|
|
@ -7,13 +7,14 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
#include "model/LocalMoneroModel.h"
|
#include "model/LocalMoneroModel.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class LocalMoneroInfoDialog;
|
class LocalMoneroInfoDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class LocalMoneroInfoDialog : public QDialog
|
class LocalMoneroInfoDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include "utils/Utils.h"
|
#include "utils/Utils.h"
|
||||||
|
|
||||||
OutputInfoDialog::OutputInfoDialog(CoinsInfo *cInfo, QWidget *parent)
|
OutputInfoDialog::OutputInfoDialog(CoinsInfo *cInfo, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::OutputInfoDialog)
|
, ui(new Ui::OutputInfoDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
#include "libwalletqt/Coins.h"
|
#include "libwalletqt/Coins.h"
|
||||||
#include "libwalletqt/CoinsInfo.h"
|
#include "libwalletqt/CoinsInfo.h"
|
||||||
|
|
||||||
|
@ -13,7 +14,7 @@ namespace Ui {
|
||||||
class OutputInfoDialog;
|
class OutputInfoDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class OutputInfoDialog : public QDialog
|
class OutputInfoDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#include "libwalletqt/WalletManager.h"
|
#include "libwalletqt/WalletManager.h"
|
||||||
|
|
||||||
OutputSweepDialog::OutputSweepDialog(QWidget *parent, quint64 amount)
|
OutputSweepDialog::OutputSweepDialog(QWidget *parent, quint64 amount)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::OutputSweepDialog)
|
, ui(new Ui::OutputSweepDialog)
|
||||||
, m_amount(amount)
|
, m_amount(amount)
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,13 +6,14 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
#include "libwalletqt/CoinsInfo.h"
|
#include "libwalletqt/CoinsInfo.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class OutputSweepDialog;
|
class OutputSweepDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class OutputSweepDialog : public QDialog
|
class OutputSweepDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
|
||||||
PasswordChangeDialog::PasswordChangeDialog(QWidget *parent, Wallet *wallet)
|
PasswordChangeDialog::PasswordChangeDialog(QWidget *parent, Wallet *wallet)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::PasswordChangeDialog)
|
, ui(new Ui::PasswordChangeDialog)
|
||||||
, m_wallet(wallet)
|
, m_wallet(wallet)
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,13 +6,14 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
#include "libwalletqt/Wallet.h"
|
#include "libwalletqt/Wallet.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class PasswordChangeDialog;
|
class PasswordChangeDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class PasswordChangeDialog : public QDialog
|
class PasswordChangeDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#include "utils/Icons.h"
|
#include "utils/Icons.h"
|
||||||
|
|
||||||
PasswordDialog::PasswordDialog(const QString &walletName, bool incorrectPassword, QWidget *parent)
|
PasswordDialog::PasswordDialog(const QString &walletName, bool incorrectPassword, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::PasswordDialog)
|
, ui(new Ui::PasswordDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -6,11 +6,13 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class PasswordDialog;
|
class PasswordDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class PasswordDialog : public QDialog
|
class PasswordDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include "WalletManager.h"
|
#include "WalletManager.h"
|
||||||
|
|
||||||
PaymentRequestDialog::PaymentRequestDialog(QWidget *parent, QSharedPointer<AppContext> ctx, QString address)
|
PaymentRequestDialog::PaymentRequestDialog(QWidget *parent, QSharedPointer<AppContext> ctx, QString address)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::PaymentRequestDialog)
|
, ui(new Ui::PaymentRequestDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
, m_address(std::move(address))
|
, m_address(std::move(address))
|
||||||
|
|
|
@ -7,13 +7,14 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
#include "qrcode/QrCode.h"
|
#include "qrcode/QrCode.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class PaymentRequestDialog;
|
class PaymentRequestDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class PaymentRequestDialog : public QDialog
|
class PaymentRequestDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
|
||||||
QrCodeDialog::QrCodeDialog(QWidget *parent, QrCode *qrCode, const QString &title)
|
QrCodeDialog::QrCodeDialog(QWidget *parent, QrCode *qrCode, const QString &title)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::QrCodeDialog)
|
, ui(new Ui::QrCodeDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
#include "qrcode/QrCode.h"
|
#include "qrcode/QrCode.h"
|
||||||
#include "widgets/QrCodeWidget.h"
|
#include "widgets/QrCodeWidget.h"
|
||||||
|
|
||||||
|
@ -13,7 +14,7 @@ namespace Ui {
|
||||||
class QrCodeDialog;
|
class QrCodeDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class QrCodeDialog : public QDialog
|
class QrCodeDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include <QDialogButtonBox>
|
#include <QDialogButtonBox>
|
||||||
|
|
||||||
RestoreHeightDialog::RestoreHeightDialog(QWidget *parent, quint64 currentRestoreHeight)
|
RestoreHeightDialog::RestoreHeightDialog(QWidget *parent, quint64 currentRestoreHeight)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, m_restoreHeightWidget(new RestoreHeightWidget(this))
|
, m_restoreHeightWidget(new RestoreHeightWidget(this))
|
||||||
{
|
{
|
||||||
auto *layout = new QVBoxLayout(this);
|
auto *layout = new QVBoxLayout(this);
|
||||||
|
|
|
@ -6,9 +6,10 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
#include "widgets/RestoreHeightWidget.h"
|
#include "widgets/RestoreHeightWidget.h"
|
||||||
|
|
||||||
class RestoreHeightDialog : public QDialog
|
class RestoreHeightDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#include "constants.h"
|
#include "constants.h"
|
||||||
|
|
||||||
SeedDialog::SeedDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
SeedDialog::SeedDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::SeedDialog)
|
, ui(new Ui::SeedDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,12 +7,13 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class SeedDialog;
|
class SeedDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class SeedDialog : public QDialog
|
class SeedDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include "utils/Utils.h"
|
#include "utils/Utils.h"
|
||||||
|
|
||||||
SignVerifyDialog::SignVerifyDialog(Wallet *wallet, QWidget *parent)
|
SignVerifyDialog::SignVerifyDialog(Wallet *wallet, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::SignVerifyDialog)
|
, ui(new Ui::SignVerifyDialog)
|
||||||
, m_wallet(wallet)
|
, m_wallet(wallet)
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,13 +6,14 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
#include "libwalletqt/Wallet.h"
|
#include "libwalletqt/Wallet.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class SignVerifyDialog;
|
class SignVerifyDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class SignVerifyDialog : public QDialog
|
class SignVerifyDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#include "utils/Icons.h"
|
#include "utils/Icons.h"
|
||||||
|
|
||||||
SplashDialog::SplashDialog(QWidget *parent)
|
SplashDialog::SplashDialog(QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::SplashDialog)
|
, ui(new Ui::SplashDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
|
@ -6,11 +6,13 @@
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class SplashDialog;
|
class SplashDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class SplashDialog : public QDialog
|
class SplashDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include "utils/NetworkManager.h"
|
#include "utils/NetworkManager.h"
|
||||||
|
|
||||||
TxBroadcastDialog::TxBroadcastDialog(QWidget *parent, QSharedPointer<AppContext> ctx, const QString &transactionHex)
|
TxBroadcastDialog::TxBroadcastDialog(QWidget *parent, QSharedPointer<AppContext> ctx, const QString &transactionHex)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::TxBroadcastDialog)
|
, ui(new Ui::TxBroadcastDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,13 +7,14 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
#include "utils/daemonrpc.h"
|
#include "utils/daemonrpc.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class TxBroadcastDialog;
|
class TxBroadcastDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class TxBroadcastDialog : public QDialog
|
class TxBroadcastDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
#include "qrcode/QrCode.h"
|
#include "qrcode/QrCode.h"
|
||||||
|
|
||||||
TxConfAdvDialog::TxConfAdvDialog(QSharedPointer<AppContext> ctx, const QString &description, QWidget *parent)
|
TxConfAdvDialog::TxConfAdvDialog(QSharedPointer<AppContext> ctx, const QString &description, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::TxConfAdvDialog)
|
, ui(new Ui::TxConfAdvDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
, m_exportUnsignedMenu(new QMenu(this))
|
, m_exportUnsignedMenu(new QMenu(this))
|
||||||
|
|
|
@ -10,13 +10,14 @@
|
||||||
#include <QTextCharFormat>
|
#include <QTextCharFormat>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
#include "libwalletqt/PendingTransaction.h"
|
#include "libwalletqt/PendingTransaction.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class TxConfAdvDialog;
|
class TxConfAdvDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class TxConfAdvDialog : public QDialog
|
class TxConfAdvDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
#include "utils/ColorScheme.h"
|
#include "utils/ColorScheme.h"
|
||||||
|
|
||||||
TxConfDialog::TxConfDialog(QSharedPointer<AppContext> ctx, PendingTransaction *tx, const QString &address, const QString &description, QWidget *parent)
|
TxConfDialog::TxConfDialog(QSharedPointer<AppContext> ctx, PendingTransaction *tx, const QString &address, const QString &description, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::TxConfDialog)
|
, ui(new Ui::TxConfDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
, m_tx(tx)
|
, m_tx(tx)
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
#include "libwalletqt/PendingTransaction.h"
|
#include "libwalletqt/PendingTransaction.h"
|
||||||
#include "libwalletqt/WalletManager.h"
|
#include "libwalletqt/WalletManager.h"
|
||||||
|
|
||||||
|
@ -14,7 +15,7 @@ namespace Ui {
|
||||||
class TxConfDialog;
|
class TxConfDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class TxConfDialog : public QDialog
|
class TxConfDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include "utils/NetworkManager.h"
|
#include "utils/NetworkManager.h"
|
||||||
|
|
||||||
TxImportDialog::TxImportDialog(QWidget *parent, QSharedPointer<AppContext> ctx)
|
TxImportDialog::TxImportDialog(QWidget *parent, QSharedPointer<AppContext> ctx)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::TxImportDialog)
|
, ui(new Ui::TxImportDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
, m_loadTimer(new QTimer(this))
|
, m_loadTimer(new QTimer(this))
|
||||||
|
|
|
@ -7,13 +7,14 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
#include "utils/daemonrpc.h"
|
#include "utils/daemonrpc.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class TxImportDialog;
|
class TxImportDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class TxImportDialog : public QDialog
|
class TxImportDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
#include "utils/Utils.h"
|
#include "utils/Utils.h"
|
||||||
|
|
||||||
TxProofDialog::TxProofDialog(QWidget *parent, QSharedPointer<AppContext> ctx, TransactionInfo *txInfo)
|
TxProofDialog::TxProofDialog(QWidget *parent, QSharedPointer<AppContext> ctx, TransactionInfo *txInfo)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::TxProofDialog)
|
, ui(new Ui::TxProofDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,13 +7,14 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
#include "libwalletqt/TransactionInfo.h"
|
#include "libwalletqt/TransactionInfo.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class TxProofDialog;
|
class TxProofDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class TxProofDialog : public QDialog
|
class TxProofDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
#include "utils/Utils.h"
|
#include "utils/Utils.h"
|
||||||
|
|
||||||
VerifyProofDialog::VerifyProofDialog(Wallet *wallet, QWidget *parent)
|
VerifyProofDialog::VerifyProofDialog(Wallet *wallet, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::VerifyProofDialog)
|
, ui(new Ui::VerifyProofDialog)
|
||||||
, m_wallet(wallet)
|
, m_wallet(wallet)
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,13 +7,14 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QIcon>
|
#include <QIcon>
|
||||||
|
|
||||||
|
#include "components.h"
|
||||||
#include "libwalletqt/Wallet.h"
|
#include "libwalletqt/Wallet.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class VerifyProofDialog;
|
class VerifyProofDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class VerifyProofDialog : public QDialog
|
class VerifyProofDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
|
||||||
ViewOnlyDialog::ViewOnlyDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
ViewOnlyDialog::ViewOnlyDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::ViewOnlyDialog)
|
, ui(new Ui::ViewOnlyDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,12 +7,13 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class ViewOnlyDialog;
|
class ViewOnlyDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class ViewOnlyDialog : public QDialog
|
class ViewOnlyDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include "model/ModelUtils.h"
|
#include "model/ModelUtils.h"
|
||||||
|
|
||||||
WalletCacheDebugDialog::WalletCacheDebugDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
WalletCacheDebugDialog::WalletCacheDebugDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::WalletCacheDebugDialog)
|
, ui(new Ui::WalletCacheDebugDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,12 +7,13 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class WalletCacheDebugDialog;
|
class WalletCacheDebugDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class WalletCacheDebugDialog : public QDialog
|
class WalletCacheDebugDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#include <QDesktopServices>
|
#include <QDesktopServices>
|
||||||
|
|
||||||
WalletInfoDialog::WalletInfoDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
WalletInfoDialog::WalletInfoDialog(QSharedPointer<AppContext> ctx, QWidget *parent)
|
||||||
: QDialog(parent)
|
: WindowModalDialog(parent)
|
||||||
, ui(new Ui::WalletInfoDialog)
|
, ui(new Ui::WalletInfoDialog)
|
||||||
, m_ctx(std::move(ctx))
|
, m_ctx(std::move(ctx))
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,12 +7,13 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
#include "appcontext.h"
|
#include "appcontext.h"
|
||||||
|
#include "components.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class WalletInfoDialog;
|
class WalletInfoDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class WalletInfoDialog : public QDialog
|
class WalletInfoDialog : public WindowModalDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue