mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-10 04:44:52 +00:00
34 lines
640 B
C++
34 lines
640 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
|
|
|
#ifndef FEATHER_SIGNVERIFYDIALOG_H
|
|
#define FEATHER_SIGNVERIFYDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "libwalletqt/Wallet.h"
|
|
|
|
namespace Ui {
|
|
class SignVerifyDialog;
|
|
}
|
|
|
|
class SignVerifyDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SignVerifyDialog(Wallet *wallet, QWidget *parent = nullptr);
|
|
~SignVerifyDialog() override;
|
|
|
|
private slots:
|
|
void signMessage();
|
|
void verifyMessage();
|
|
void copyToClipboard();
|
|
|
|
private:
|
|
QScopedPointer<Ui::SignVerifyDialog> ui;
|
|
Wallet *m_wallet;
|
|
};
|
|
|
|
|
|
#endif //FEATHER_SIGNVERIFYDIALOG_H
|