- Refactor GUI with FormBase.qml - Fix memo handling in TransferOperation - Add TransactionConfirmationForm.qml which will eventually display a transaction for confirmation
76 lines
1.9 KiB
C++
76 lines
1.9 KiB
C++
#pragma once
|
|
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
|
|
|
|
#include <fc/thread/thread.hpp>
|
|
|
|
#include <boost/signals2.hpp>
|
|
|
|
#include <QObject>
|
|
|
|
|
|
namespace fc { namespace http {
|
|
class websocket_client;
|
|
}}
|
|
|
|
class ChainDataModel;
|
|
class OperationBuilder;
|
|
class OperationBase;
|
|
class Transaction;
|
|
class Wallet;
|
|
class GrapheneApplication : public QObject {
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(ChainDataModel* model READ model CONSTANT)
|
|
Q_PROPERTY(OperationBuilder* operationBuilder READ operationBuilder CONSTANT)
|
|
Q_PROPERTY(Wallet* wallet READ wallet CONSTANT)
|
|
Q_PROPERTY(bool isConnected READ isConnected NOTIFY isConnectedChanged)
|
|
|
|
|
|
fc::thread m_thread;
|
|
ChainDataModel* m_model = nullptr;
|
|
Wallet* m_wallet = nullptr;
|
|
OperationBuilder* m_operationBuilder = nullptr;
|
|
bool m_isConnected = false;
|
|
|
|
boost::signals2::scoped_connection m_connectionClosed;
|
|
|
|
std::shared_ptr<fc::http::websocket_client> m_client;
|
|
fc::future<void> m_done;
|
|
|
|
void setIsConnected(bool v);
|
|
|
|
protected Q_SLOTS:
|
|
void execute(const std::function<void()>&)const;
|
|
|
|
public:
|
|
GrapheneApplication(QObject* parent = nullptr);
|
|
~GrapheneApplication();
|
|
|
|
Wallet* wallet()const { return m_wallet; }
|
|
|
|
ChainDataModel* model() const {
|
|
return m_model;
|
|
}
|
|
OperationBuilder* operationBuilder() const {
|
|
return m_operationBuilder;
|
|
}
|
|
|
|
Q_INVOKABLE void start(QString apiUrl,
|
|
QString user,
|
|
QString pass);
|
|
|
|
bool isConnected() const
|
|
{
|
|
return m_isConnected;
|
|
}
|
|
|
|
/// Convenience method to get a Transaction in QML. Caller takes ownership of the new Transaction.
|
|
Q_INVOKABLE Transaction* createTransaction() const;
|
|
|
|
Q_SIGNALS:
|
|
void exceptionThrown(QString message);
|
|
void loginFailed();
|
|
void isConnectedChanged(bool isConnected);
|
|
void queueExecute(const std::function<void()>&);
|
|
};
|
|
|