44 lines
941 B
C++
44 lines
941 B
C++
#pragma once
|
|
|
|
#include "Accounts/ChatOrWalletAccount.h"
|
|
|
|
#include <QtQmlIntegration>
|
|
|
|
namespace GoAccounts = Status::StatusGo::Accounts;
|
|
|
|
namespace Status::Wallet
|
|
{
|
|
|
|
class WalletAccount : public QObject
|
|
{
|
|
Q_OBJECT
|
|
QML_ELEMENT
|
|
QML_UNCREATABLE("C++ only, for now")
|
|
|
|
Q_PROPERTY(QString name READ name CONSTANT)
|
|
Q_PROPERTY(QString address READ strAddress CONSTANT)
|
|
Q_PROPERTY(QColor color READ color CONSTANT)
|
|
|
|
public:
|
|
explicit WalletAccount(const GoAccounts::ChatOrWalletAccount rawAccount, QObject* parent = nullptr);
|
|
|
|
const QString& name() const;
|
|
|
|
const QString& strAddress() const;
|
|
|
|
QColor color() const;
|
|
|
|
const GoAccounts::ChatOrWalletAccount& data() const
|
|
{
|
|
return m_data;
|
|
};
|
|
|
|
private:
|
|
const GoAccounts::ChatOrWalletAccount m_data;
|
|
};
|
|
|
|
using WalletAccountPtr = std::shared_ptr<WalletAccount>;
|
|
using WalletAccounts = std::vector<WalletAccount>;
|
|
|
|
} // namespace Status::Wallet
|