Anoncoin  0.9.4
P2P Digital Currency
signverifymessagedialog.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2013 The Bitcoin developers
2 // Copyright (c) 2013-2014 The Anoncoin Core developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef SIGNVERIFYMESSAGEDIALOG_H
7 #define SIGNVERIFYMESSAGEDIALOG_H
8 
9 #include <QDialog>
10 
11 class WalletModel;
12 
13 namespace Ui {
15 }
16 
17 class SignVerifyMessageDialog : public QDialog
18 {
19  Q_OBJECT
20 
21 public:
22  explicit SignVerifyMessageDialog(QWidget *parent);
24 
25  void setModel(WalletModel *model);
26  void setAddress_SM(const QString &address);
27  void setAddress_VM(const QString &address);
28 
29  void showTab_SM(bool fShow);
30  void showTab_VM(bool fShow);
31 
32 protected:
33  bool eventFilter(QObject *object, QEvent *event);
34 
35 private:
38 
39 private slots:
40  /* sign message */
46  /* verify message */
50 };
51 
52 #endif // SIGNVERIFYMESSAGEDIALOG_H
bool eventFilter(QObject *object, QEvent *event)
void setAddress_VM(const QString &address)
Ui::SignVerifyMessageDialog * ui
Interface to Anoncoin wallet from Qt view code.
Definition: walletmodel.h:97
SignVerifyMessageDialog(QWidget *parent)
void setModel(WalletModel *model)
void setAddress_SM(const QString &address)