PIVX Core  5.6.99
P2P Digital Currency
mnrow.h
Go to the documentation of this file.
1 // Copyright (c) 2019-2021 The PIVX Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef PIVX_QT_MNROW_H
6 #define PIVX_QT_MNROW_H
7 
8 #include <QWidget>
9 
10 namespace Ui {
11 class MNRow;
12 }
13 
14 class MNRow : public QWidget
15 {
16  Q_OBJECT
17 
18 public:
19  explicit MNRow(QWidget *parent = nullptr);
20  ~MNRow();
21 
22  void updateView(QString address, const QString& label, QString status, bool wasCollateralAccepted);
23 
24 Q_SIGNALS:
25  void onMenuClicked();
26 private:
27  Ui::MNRow *ui;
28 };
29 
30 #endif // PIVX_QT_MNROW_H
Definition: mnrow.h:15
void onMenuClicked()
~MNRow()
Definition: mnrow.cpp:30
Ui::MNRow * ui
Definition: mnrow.h:27
void updateView(QString address, const QString &label, QString status, bool wasCollateralAccepted)
Definition: mnrow.cpp:21
MNRow(QWidget *parent=nullptr)
Definition: mnrow.cpp:10