aboutsummaryrefslogtreecommitdiff
path: root/src/qt/transactiondesc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt/transactiondesc.h')
-rw-r--r--src/qt/transactiondesc.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/qt/transactiondesc.h b/src/qt/transactiondesc.h
new file mode 100644
index 0000000000..484bb1230e
--- /dev/null
+++ b/src/qt/transactiondesc.h
@@ -0,0 +1,25 @@
+#ifndef TRANSACTIONDESC_H
+#define TRANSACTIONDESC_H
+
+#include <QString>
+#include <QObject>
+#include <string>
+
+class CWallet;
+class CWalletTx;
+
+class TransactionDesc: public QObject
+{
+ Q_OBJECT
+public:
+ // Provide human-readable extended HTML description of a transaction
+ static QString toHTML(CWallet *wallet, CWalletTx &wtx);
+private:
+ TransactionDesc() {}
+
+ static QString HtmlEscape(const QString& str, bool fMultiLine=false);
+ static QString HtmlEscape(const std::string &str, bool fMultiLine=false);
+ static QString FormatTxStatus(const CWalletTx& wtx);
+};
+
+#endif // TRANSACTIONDESC_H