mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
56 lines
1.8 KiB
C
56 lines
1.8 KiB
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2014-2020, The Monero Project.
|
||
|
|
||
|
#ifndef UNSIGNEDTRANSACTION_H
|
||
|
#define UNSIGNEDTRANSACTION_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
#include <wallet/api/wallet2_api.h>
|
||
|
|
||
|
class UnsignedTransaction : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PROPERTY(Status status READ status)
|
||
|
Q_PROPERTY(QString errorString READ errorString)
|
||
|
// Q_PROPERTY(QList<qulonglong> amount READ amount)
|
||
|
// Q_PROPERTY(QList<qulonglong> fee READ fee)
|
||
|
Q_PROPERTY(quint64 txCount READ txCount)
|
||
|
Q_PROPERTY(QString confirmationMessage READ confirmationMessage)
|
||
|
Q_PROPERTY(QStringList recipientAddress READ recipientAddress)
|
||
|
Q_PROPERTY(QStringList paymentId READ paymentId)
|
||
|
Q_PROPERTY(quint64 minMixinCount READ minMixinCount)
|
||
|
|
||
|
public:
|
||
|
enum Status {
|
||
|
Status_Ok = Monero::UnsignedTransaction::Status_Ok,
|
||
|
Status_Error = Monero::UnsignedTransaction::Status_Error,
|
||
|
Status_Critical = Monero::UnsignedTransaction::Status_Critical
|
||
|
};
|
||
|
Q_ENUM(Status)
|
||
|
|
||
|
Status status() const;
|
||
|
QString errorString() const;
|
||
|
Q_INVOKABLE quint64 amount(size_t index) const;
|
||
|
Q_INVOKABLE quint64 fee(size_t index) const;
|
||
|
Q_INVOKABLE quint64 mixin(size_t index) const;
|
||
|
QStringList recipientAddress() const;
|
||
|
QStringList paymentId() const;
|
||
|
quint64 txCount() const;
|
||
|
QString confirmationMessage() const;
|
||
|
quint64 minMixinCount() const;
|
||
|
Q_INVOKABLE bool sign(const QString &fileName) const;
|
||
|
Q_INVOKABLE void setFilename(const QString &fileName);
|
||
|
|
||
|
private:
|
||
|
explicit UnsignedTransaction(Monero::UnsignedTransaction * pt, Monero::Wallet *walletImpl, QObject *parent = 0);
|
||
|
~UnsignedTransaction();
|
||
|
private:
|
||
|
friend class Wallet;
|
||
|
Monero::UnsignedTransaction * m_pimpl;
|
||
|
QString m_fileName;
|
||
|
Monero::Wallet * m_walletImpl;
|
||
|
};
|
||
|
|
||
|
#endif // UNSIGNEDTRANSACTION_H
|