Raven Core  3.0.0
P2P Digital Currency
transactiondescdialog.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2014 The Bitcoin Core developers
2 // Copyright (c) 2017-2019 The Raven Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef RAVEN_QT_TRANSACTIONDESCDIALOG_H
7 #define RAVEN_QT_TRANSACTIONDESCDIALOG_H
8 
9 #include <QDialog>
10 
11 namespace Ui {
13 }
14 
15 QT_BEGIN_NAMESPACE
16 class QModelIndex;
17 QT_END_NAMESPACE
18 
20 class TransactionDescDialog : public QDialog
21 {
22  Q_OBJECT
23 
24 public:
25  explicit TransactionDescDialog(const QModelIndex &idx, QWidget *parent = 0);
27 
28 private:
29  Ui::TransactionDescDialog *ui;
30 };
31 
32 #endif // RAVEN_QT_TRANSACTIONDESCDIALOG_H
Dialog showing transaction details.
Ui::TransactionDescDialog * ui