mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-22 02:34:36 +00:00
59 lines
2 KiB
C++
59 lines
2 KiB
C++
#ifndef UNSIGNEDTRANSACTION_H
|
|
#define UNSIGNEDTRANSACTION_H
|
|
|
|
#include <QObject>
|
|
|
|
#include <wallet/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)
|
|
|
|
enum Priority {
|
|
Priority_Low = Monero::UnsignedTransaction::Priority_Low,
|
|
Priority_Medium = Monero::UnsignedTransaction::Priority_Medium,
|
|
Priority_High = Monero::UnsignedTransaction::Priority_High
|
|
};
|
|
Q_ENUM(Priority)
|
|
|
|
Status status() const;
|
|
QString errorString() const;
|
|
Q_INVOKABLE quint64 amount(int index) const;
|
|
Q_INVOKABLE quint64 fee(int index) const;
|
|
Q_INVOKABLE quint64 mixin(int 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
|