Dash Core  0.12.2.1
P2P Digital Currency
darksendconfig.h
Go to the documentation of this file.
1 #ifndef DARKSENDCONFIG_H
2 #define DARKSENDCONFIG_H
3 
4 #include <QDialog>
5 
6 namespace Ui {
7  class DarksendConfig;
8 }
9 class WalletModel;
10 
13 class DarksendConfig : public QDialog
14 {
15  Q_OBJECT
16 
17 public:
18 
19  DarksendConfig(QWidget *parent = 0);
21 
22  void setModel(WalletModel *model);
23 
24 
25 private:
28  void configure(bool enabled, int coins, int rounds);
29 
30 private Q_SLOTS:
31 
32  void clickBasic();
33  void clickHigh();
34  void clickMax();
35 };
36 
37 #endif // DARKSENDCONFIG_H
WalletModel * model
DarksendConfig(QWidget *parent=0)
void configure(bool enabled, int coins, int rounds)
void setModel(WalletModel *model)
Ui::DarksendConfig * ui