2015-07-21 21:09:44 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
2015-07-22 15:10:52 +00:00
|
|
|
#include "ChainDataModel.hpp"
|
2015-07-21 21:09:44 +00:00
|
|
|
|
|
|
|
|
#include <graphene/chain/protocol/transfer.hpp>
|
|
|
|
|
|
|
|
|
|
#include <QObject>
|
2015-07-22 21:38:44 +00:00
|
|
|
#include <QtQml>
|
2015-07-21 21:09:44 +00:00
|
|
|
|
2015-07-22 21:38:44 +00:00
|
|
|
class OperationBase : public QObject {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
Q_PROPERTY(OperationType operationType READ operationType CONSTANT STORED false)
|
2015-07-21 21:09:44 +00:00
|
|
|
|
|
|
|
|
public:
|
2015-07-22 21:38:44 +00:00
|
|
|
enum OperationType {
|
|
|
|
|
TransferOperationType = graphene::chain::operation::tag<graphene::chain::transfer_operation>::value
|
|
|
|
|
};
|
|
|
|
|
Q_ENUM(OperationType);
|
2015-07-21 21:09:44 +00:00
|
|
|
|
2015-07-22 21:38:44 +00:00
|
|
|
OperationBase(QObject* parent = nullptr)
|
|
|
|
|
: QObject(parent) {}
|
|
|
|
|
virtual ~OperationBase() {}
|
2015-07-21 21:09:44 +00:00
|
|
|
|
2015-07-22 21:38:44 +00:00
|
|
|
virtual OperationType operationType() const = 0;
|
|
|
|
|
virtual graphene::chain::operation genericOperation() const = 0;
|
|
|
|
|
};
|
|
|
|
|
QML_DECLARE_INTERFACE(OperationBase)
|
2015-07-21 21:09:44 +00:00
|
|
|
|
2015-07-22 21:38:44 +00:00
|
|
|
class TransferOperation : public OperationBase {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
Q_PROPERTY(qint64 fee READ fee WRITE setFee NOTIFY feeChanged)
|
|
|
|
|
Q_PROPERTY(ObjectId feeType READ feeType WRITE setFeeType NOTIFY feeTypeChanged)
|
|
|
|
|
Q_PROPERTY(ObjectId sender READ sender WRITE setSender NOTIFY senderChanged)
|
|
|
|
|
Q_PROPERTY(ObjectId receiver READ receiver WRITE setReceiver NOTIFY receiverChanged)
|
|
|
|
|
Q_PROPERTY(qint64 amount READ amount WRITE setAmount NOTIFY amountChanged)
|
|
|
|
|
Q_PROPERTY(ObjectId amountType READ amountType WRITE setAmountType NOTIFY amountTypeChanged)
|
|
|
|
|
Q_PROPERTY(QString memo READ memo WRITE setMemo NOTIFY memoChanged)
|
2015-07-21 21:09:44 +00:00
|
|
|
|
2015-07-22 21:38:44 +00:00
|
|
|
graphene::chain::transfer_operation m_op;
|
2015-07-21 21:09:44 +00:00
|
|
|
|
2015-07-22 21:38:44 +00:00
|
|
|
public:
|
|
|
|
|
TransferOperation(){}
|
|
|
|
|
TransferOperation(const graphene::chain::transfer_operation& op)
|
|
|
|
|
: m_op(op) {}
|
|
|
|
|
|
|
|
|
|
virtual OperationBase::OperationType operationType() const override {
|
|
|
|
|
return OperationBase::TransferOperationType;
|
|
|
|
|
}
|
|
|
|
|
virtual graphene::chain::operation genericOperation() const override {
|
|
|
|
|
return m_op;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint64 fee() const { return m_op.fee.amount.value; }
|
|
|
|
|
ObjectId feeType() const { return m_op.fee.asset_id.instance.value; }
|
|
|
|
|
ObjectId sender() const { return m_op.from.instance.value; }
|
|
|
|
|
ObjectId receiver() const { return m_op.to.instance.value; }
|
|
|
|
|
qint64 amount() const { return m_op.amount.amount.value; }
|
|
|
|
|
ObjectId amountType() const { return m_op.amount.asset_id.instance.value; }
|
2015-07-27 20:01:16 +00:00
|
|
|
/// This does not deal with encrypted memos. The memo stored here is unencrypted. The encryption step must be
|
2015-07-29 21:56:37 +00:00
|
|
|
/// performed by calling encryptMemo()
|
2015-07-27 20:01:16 +00:00
|
|
|
QString memo() const;
|
2015-07-21 21:09:44 +00:00
|
|
|
|
2015-07-29 21:56:37 +00:00
|
|
|
Q_INVOKABLE bool canEncryptMemo(Wallet* wallet, ChainDataModel* model) const;
|
|
|
|
|
Q_INVOKABLE bool canDecryptMemo(Wallet* wallet, ChainDataModel* model) const;
|
|
|
|
|
Q_INVOKABLE QString decryptedMemo(Wallet* wallet, ChainDataModel* model) const;
|
|
|
|
|
|
2015-07-21 21:09:44 +00:00
|
|
|
const graphene::chain::transfer_operation& operation() const { return m_op; }
|
|
|
|
|
graphene::chain::transfer_operation& operation() { return m_op; }
|
|
|
|
|
|
2015-07-22 21:38:44 +00:00
|
|
|
public Q_SLOTS:
|
|
|
|
|
void setFee(qint64 arg) {
|
|
|
|
|
if (arg == fee())
|
|
|
|
|
return;
|
|
|
|
|
m_op.fee.amount = arg;
|
|
|
|
|
Q_EMIT feeChanged();
|
|
|
|
|
}
|
|
|
|
|
void setFeeType(ObjectId arg) {
|
|
|
|
|
if (arg == feeType())
|
|
|
|
|
return;
|
|
|
|
|
m_op.fee.asset_id = arg;
|
|
|
|
|
Q_EMIT feeTypeChanged();
|
|
|
|
|
}
|
|
|
|
|
void setSender(ObjectId arg) {
|
|
|
|
|
if (arg == sender())
|
|
|
|
|
return;
|
|
|
|
|
m_op.from = arg;
|
|
|
|
|
Q_EMIT senderChanged();
|
|
|
|
|
}
|
|
|
|
|
void setReceiver(ObjectId arg) {
|
|
|
|
|
if (arg == receiver())
|
|
|
|
|
return;
|
|
|
|
|
m_op.to = arg;
|
|
|
|
|
Q_EMIT receiverChanged();
|
|
|
|
|
}
|
|
|
|
|
void setAmount(qint64 arg) {
|
|
|
|
|
if (arg == amount())
|
|
|
|
|
return;
|
|
|
|
|
m_op.amount.amount = arg;
|
|
|
|
|
Q_EMIT amountChanged();
|
|
|
|
|
}
|
|
|
|
|
void setAmountType(ObjectId arg) {
|
|
|
|
|
if (arg == amountType())
|
|
|
|
|
return;
|
|
|
|
|
m_op.amount.asset_id = arg;
|
|
|
|
|
Q_EMIT amountTypeChanged();
|
|
|
|
|
}
|
2015-07-27 20:01:16 +00:00
|
|
|
/// This does not deal with encrypted memos. The memo stored here is unencrypted. The encryption step must be
|
2015-07-29 21:56:37 +00:00
|
|
|
/// performed by calling encryptMemo()
|
2015-07-27 20:01:16 +00:00
|
|
|
void setMemo(QString memo);
|
2015-07-29 21:56:37 +00:00
|
|
|
void encryptMemo(Wallet* wallet, ChainDataModel* model);
|
2015-07-22 21:38:44 +00:00
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
|
void feeChanged();
|
|
|
|
|
void feeTypeChanged();
|
|
|
|
|
void senderChanged();
|
|
|
|
|
void receiverChanged();
|
|
|
|
|
void amountChanged();
|
|
|
|
|
void amountTypeChanged();
|
|
|
|
|
void memoChanged();
|
|
|
|
|
};
|
|
|
|
|
QML_DECLARE_TYPE(TransferOperation)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief The OperationBuilder class creates operations which are inspectable by the GUI
|
|
|
|
|
*
|
|
|
|
|
* @note All operations returned by OperationBuilder are heap allocated on-demand and do not have parents. The caller
|
|
|
|
|
* must take ownership of these objects to prevent them from leaking.
|
|
|
|
|
*/
|
2015-07-21 21:09:44 +00:00
|
|
|
class OperationBuilder : public QObject {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
ChainDataModel& model;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
OperationBuilder(ChainDataModel& model, QObject* parent = nullptr)
|
|
|
|
|
: QObject(parent), model(model){}
|
|
|
|
|
|
2015-07-27 20:01:16 +00:00
|
|
|
Q_INVOKABLE TransferOperation* transfer(ObjectId sender, ObjectId receiver, qint64 amount,
|
|
|
|
|
ObjectId amountType, QString memo, ObjectId feeType);
|
2015-07-22 21:38:44 +00:00
|
|
|
|
2015-07-21 21:09:44 +00:00
|
|
|
};
|