Fabcoin Core  0.16.2
P2P Digital Currency
restoredialog.h
Go to the documentation of this file.
1 #ifndef RESTOREDIALOG_H
2 #define RESTOREDIALOG_H
3 
4 #include <QDialog>
5 
6 class WalletModel;
7 
8 namespace Ui {
9 class RestoreDialog;
10 }
11 
15 class RestoreDialog : public QDialog
16 {
17  Q_OBJECT
18 
19 public:
20 
25  explicit RestoreDialog(QWidget *parent = 0);
26 
30  ~RestoreDialog();
31 
36  QString getParam();
37 
42  QString getFileName();
43 
48  void setModel(WalletModel *model);
49 
50 private Q_SLOTS:
54  void on_btnReset_clicked();
55 
59  void on_btnBoxRestore_accepted();
60 
64  void on_btnBoxRestore_rejected();
65 
69  void on_toolWalletPath_clicked();
70 
71 private:
74 
75 };
76 
77 #endif // RESTOREDIALOG_H
Ui::RestoreDialog * ui
Definition: restoredialog.h:72
WalletModel * model
Definition: restoredialog.h:73
The RestoreDialog class Restore dialog class.
Definition: restoredialog.h:15
Interface to Fabcoin wallet from Qt view code.
Definition: walletmodel.h:103