mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 21:02:38 -03:00
51ed9ec971
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef SIGNVERIFYMESSAGEDIALOG_H
|
|
#define SIGNVERIFYMESSAGEDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class WalletModel;
|
|
|
|
namespace Ui {
|
|
class SignVerifyMessageDialog;
|
|
}
|
|
|
|
class SignVerifyMessageDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SignVerifyMessageDialog(QWidget *parent = 0);
|
|
~SignVerifyMessageDialog();
|
|
|
|
void setModel(WalletModel *model);
|
|
void setAddress_SM(const QString &address);
|
|
void setAddress_VM(const QString &address);
|
|
|
|
void showTab_SM(bool fShow);
|
|
void showTab_VM(bool fShow);
|
|
|
|
protected:
|
|
bool eventFilter(QObject *object, QEvent *event);
|
|
|
|
private:
|
|
Ui::SignVerifyMessageDialog *ui;
|
|
WalletModel *model;
|
|
|
|
private slots:
|
|
/* sign message */
|
|
void on_addressBookButton_SM_clicked();
|
|
void on_pasteButton_SM_clicked();
|
|
void on_signMessageButton_SM_clicked();
|
|
void on_copySignatureButton_SM_clicked();
|
|
void on_clearButton_SM_clicked();
|
|
/* verify message */
|
|
void on_addressBookButton_VM_clicked();
|
|
void on_verifyMessageButton_VM_clicked();
|
|
void on_clearButton_VM_clicked();
|
|
};
|
|
|
|
#endif // SIGNVERIFYMESSAGEDIALOG_H
|