#pragma once #pragma GCC diagnostic ignored "-Wunknown-pragmas" #include "GrapheneObject.hpp" #include #include namespace graphene { namespace chain { class account_balance_object; }} using graphene::chain::account_object; using graphene::chain::account_balance_object; class Balance; class Wallet; class Account : public GrapheneObject { Q_OBJECT Q_PROPERTY(QString name READ name NOTIFY nameChanged) Q_PROPERTY(QQmlListProperty balances READ balances NOTIFY balancesChanged) account_object m_account; QList m_balances; public: Account(ObjectId id = -1, QString name = QString(), QObject* parent = nullptr) : GrapheneObject(id, parent) { m_account.name = name.toStdString(); } void setAccountObject( const account_object& obj ) { auto old_name = m_account.name; m_account = obj; if( old_name != m_account.name ) Q_EMIT nameChanged(); } QString name()const { return toQString(m_account.name); } QQmlListProperty balances(); void setBalances(QList balances) { if (balances != m_balances) { m_balances = balances; Q_EMIT balancesChanged(); } } void update(const account_balance_object& balance); /** * Anything greater than 1.0 means full authority. * Anything between (0 and 1.0) means partial authority * 0 means no authority. * * @return the percent of direct control the wallet has over the account. */ Q_INVOKABLE double getOwnerControl( Wallet* w )const; Q_INVOKABLE double getActiveControl( Wallet* w )const; Q_SIGNALS: void nameChanged(); void balancesChanged(); };