mirror of
https://github.com/feather-wallet/feather.git
synced 2025-03-12 09:37:47 +00:00
Dialogs: clean up header files
This commit is contained in:
parent
e40f8bbe1e
commit
00d2c1b953
9 changed files with 14 additions and 17 deletions
|
@ -39,5 +39,4 @@ AboutDialog::AboutDialog(QWidget *parent)
|
|||
this->adjustSize();
|
||||
}
|
||||
|
||||
AboutDialog::~AboutDialog() = default;
|
||||
|
||||
AboutDialog::~AboutDialog() = default;
|
|
@ -21,11 +21,11 @@ public:
|
|||
~PasswordChangeDialog() override;
|
||||
|
||||
private:
|
||||
QScopedPointer<Ui::PasswordChangeDialog> ui;
|
||||
Wallet *m_wallet;
|
||||
|
||||
void passwordsMatch();
|
||||
void setPassword();
|
||||
|
||||
QScopedPointer<Ui::PasswordChangeDialog> ui;
|
||||
Wallet *m_wallet;
|
||||
};
|
||||
|
||||
#endif //FEATHER_PASSWORDCHANGEDIALOG_H
|
||||
|
|
|
@ -20,14 +20,14 @@ public:
|
|||
explicit SignVerifyDialog(Wallet *wallet, QWidget *parent = nullptr);
|
||||
~SignVerifyDialog() override;
|
||||
|
||||
private:
|
||||
QScopedPointer<Ui::SignVerifyDialog> ui;
|
||||
Wallet *m_wallet;
|
||||
|
||||
private slots:
|
||||
void signMessage();
|
||||
void verifyMessage();
|
||||
void copyToClipboard();
|
||||
|
||||
private:
|
||||
QScopedPointer<Ui::SignVerifyDialog> ui;
|
||||
Wallet *m_wallet;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -28,7 +28,6 @@ private slots:
|
|||
private:
|
||||
QScopedPointer<Ui::TxBroadcastDialog> ui;
|
||||
QSharedPointer<AppContext> m_ctx;
|
||||
UtilsNetworking *m_network;
|
||||
DaemonRpc *m_rpc;
|
||||
};
|
||||
|
||||
|
|
|
@ -30,7 +30,6 @@ private:
|
|||
QScopedPointer<Ui::TxImportDialog> ui;
|
||||
QSharedPointer<AppContext> m_ctx;
|
||||
|
||||
UtilsNetworking *m_network;
|
||||
DaemonRpc *m_rpc;
|
||||
QTimer *m_loadTimer;
|
||||
|
||||
|
|
|
@ -33,13 +33,11 @@ private:
|
|||
void updateData();
|
||||
|
||||
QScopedPointer<Ui::TxInfoDialog> ui;
|
||||
|
||||
QSharedPointer<AppContext> m_ctx;
|
||||
TransactionInfo *m_txInfo;
|
||||
TxProofDialog *m_txProofDialog;
|
||||
QString m_txKey;
|
||||
QString m_txid;
|
||||
QTimer m_updateTimer;
|
||||
};
|
||||
|
||||
#endif //FEATHER_TXINFODIALOG_H
|
||||
|
|
|
@ -42,15 +42,15 @@ private:
|
|||
void toggleButtons(bool enabled);
|
||||
void showWarning(const QString &message);
|
||||
|
||||
QScopedPointer<Ui::TxProofDialog> ui;
|
||||
QSharedPointer<AppContext> m_ctx;
|
||||
|
||||
QStringList m_OutDestinations;
|
||||
QStringList m_InDestinations;
|
||||
QString m_txid;
|
||||
QString m_txKey;
|
||||
Mode m_mode;
|
||||
TransactionInfo::Direction m_direction;
|
||||
|
||||
QScopedPointer<Ui::TxProofDialog> ui;
|
||||
QSharedPointer<AppContext> m_ctx;
|
||||
};
|
||||
|
||||
#endif //FEATHER_TXPROOFDIALOG_H
|
||||
|
|
|
@ -24,9 +24,10 @@ private slots:
|
|||
void onWriteViewOnlyWallet();
|
||||
|
||||
private:
|
||||
void copyToClipboad();
|
||||
|
||||
QScopedPointer<Ui::ViewOnlyDialog> ui;
|
||||
QSharedPointer<AppContext> m_ctx;
|
||||
void copyToClipboad();
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@ public:
|
|||
|
||||
private:
|
||||
void setOutput(const QString &output);
|
||||
|
||||
QScopedPointer<Ui::WalletCacheDebugDialog> ui;
|
||||
QSharedPointer<AppContext> m_ctx;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue