mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-08 20:09:43 +00:00
35 lines
682 B
C++
35 lines
682 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
|
|
|
|
#ifndef FEATHER_SIGNVERIFYDIALOG_H
|
|
#define FEATHER_SIGNVERIFYDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "components.h"
|
|
#include "libwalletqt/Wallet.h"
|
|
|
|
namespace Ui {
|
|
class SignVerifyDialog;
|
|
}
|
|
|
|
class SignVerifyDialog : public WindowModalDialog
|
|
{
|
|
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
|