mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
81 lines
1.7 KiB
C++
81 lines
1.7 KiB
C++
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2014-2020, The Monero Project.
|
||
|
|
||
|
#include "Subaddress.h"
|
||
|
#include <QDebug>
|
||
|
|
||
|
Subaddress::Subaddress(Monero::Subaddress *subaddressImpl, QObject *parent)
|
||
|
: QObject(parent), m_subaddressImpl(subaddressImpl), m_unusedLookahead(0)
|
||
|
{
|
||
|
getAll();
|
||
|
}
|
||
|
|
||
|
void Subaddress::getAll() const
|
||
|
{
|
||
|
emit refreshStarted();
|
||
|
|
||
|
{
|
||
|
QWriteLocker locker(&m_lock);
|
||
|
|
||
|
m_unusedLookahead = 0;
|
||
|
|
||
|
m_rows.clear();
|
||
|
for (auto &row: m_subaddressImpl->getAll()) {
|
||
|
m_rows.append(row);
|
||
|
|
||
|
if (row->isUsed())
|
||
|
m_unusedLookahead = 0;
|
||
|
else
|
||
|
m_unusedLookahead += 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
emit refreshFinished();
|
||
|
}
|
||
|
|
||
|
bool Subaddress::getRow(int index, std::function<void (Monero::SubaddressRow &row)> callback) const
|
||
|
{
|
||
|
QReadLocker locker(&m_lock);
|
||
|
|
||
|
if (index < 0 || index >= m_rows.size())
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
callback(*m_rows.value(index));
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void Subaddress::addRow(quint32 accountIndex, const QString &label) const
|
||
|
{
|
||
|
m_subaddressImpl->addRow(accountIndex, label.toStdString());
|
||
|
getAll();
|
||
|
}
|
||
|
|
||
|
void Subaddress::setLabel(quint32 accountIndex, quint32 addressIndex, const QString &label) const
|
||
|
{
|
||
|
m_subaddressImpl->setLabel(accountIndex, addressIndex, label.toStdString());
|
||
|
getAll();
|
||
|
emit labelChanged();
|
||
|
}
|
||
|
|
||
|
void Subaddress::refresh(quint32 accountIndex) const
|
||
|
{
|
||
|
m_subaddressImpl->refresh(accountIndex);
|
||
|
getAll();
|
||
|
}
|
||
|
|
||
|
quint64 Subaddress::unusedLookahead() const
|
||
|
{
|
||
|
QReadLocker locker(&m_lock);
|
||
|
|
||
|
return m_unusedLookahead;
|
||
|
}
|
||
|
|
||
|
quint64 Subaddress::count() const
|
||
|
{
|
||
|
QReadLocker locker(&m_lock);
|
||
|
|
||
|
return m_rows.size();
|
||
|
}
|