/*
* Copyright (c) 2024 Belledonne Communications SARL.
*
* This file is part of linphone-desktop
* (see https://www.linphone.org).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#ifndef _LIST_PROXY_H_
#define _LIST_PROXY_H_
#include "AbstractListProxy.hpp"
#include "tool/Utils.hpp"
#include
// =============================================================================
class ListProxy : public AbstractListProxy> {
Q_OBJECT
public:
Q_PROPERTY(int count READ getCount NOTIFY countChanged)
ListProxy(QObject *parent = Q_NULLPTR);
virtual ~ListProxy();
template
QSharedPointer getAt(const int &index) const {
return AbstractListProxy>::getAt(index).objectCast();
}
QSharedPointer get(QObject *itemToGet, int *index = nullptr) const;
template
QList> getSharedList() {
QList> newList;
for (auto item : mList)
newList << item.objectCast();
return newList;
}
// Add functions
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override {
int row = index.row();
if (!index.isValid() || row < 0 || row >= mList.count()) return QVariant();
if (role == Qt::DisplayRole) return QVariant::fromValue(mList[row].get());
return QVariant();
}
template
void add(QSharedPointer item) {
AbstractListProxy>::add(item.template objectCast());
}
template
void add(QList> items) {
int count = items.size();
if (count > 0) {
int currentCount = rowCount();
int newCount = mList.size() + count;
beginInsertRows(QModelIndex(), currentCount, newCount - 1);
for (auto i : items)
mList << i.template objectCast();
endInsertRows();
QModelIndex firstIndex = currentCount > 0 ? index(currentCount - 1, 0) : index(0, 0);
auto lastIndex = index(newCount - 1, 0);
emit dataChanged(firstIndex, lastIndex);
}
}
template
void prepend(QSharedPointer item) {
AbstractListProxy>::prepend(item.template objectCast());
}
template
void prepend(QList> items) {
AbstractListProxy>::prepend(items);
}
virtual void resetData() {
beginResetModel();
mList.clear();
endResetModel();
}
// This can be used to wait for the list
// to be updated before updating it again
// (when multiple calls of lUpdate, if beginResetModel has been called, wait
// for endResetModel to be called to call lUpdate again)
void setIsUpdating(bool updating) {
if (mIsUpdating != updating) {
mIsUpdating = updating;
emit isUpdatingChanged();
}
}
template
void resetData(QList> items) {
beginResetModel();
mList.clear();
for (auto i : items)
mList << i.template objectCast();
endResetModel();
}
virtual bool remove(QObject *itemToRemove) override {
bool removed = false;
if (itemToRemove) {
lInfo() << QStringLiteral("Removing ") << itemToRemove->metaObject()->className() << QStringLiteral(" : ")
<< itemToRemove;
int index = 0;
for (auto item : mList)
if (item == itemToRemove) {
removed = removeRow(index);
break;
} else ++index;
if (!removed)
qWarning() << QStringLiteral("Item not found. Unable to remove ")
<< itemToRemove->metaObject()->className() << QStringLiteral(" : ") << itemToRemove
<< ", Count=" << mList.count() << ", index=" << index;
}
return removed;
}
virtual bool remove(QSharedPointer itemToRemove) {
return remove(itemToRemove.get());
}
template
void replace(QSharedPointer itemToReplace, QSharedPointer replacementItem) {
lInfo() << QStringLiteral("Replacing ") << itemToReplace->metaObject()->className() << QStringLiteral(" : ")
<< itemToReplace << " by " << replacementItem;
int index = mList.indexOf(itemToReplace);
if (index == -1) {
lWarning() << QStringLiteral("Unable to replace ") << itemToReplace->metaObject()->className()
<< QStringLiteral(" : ") << itemToReplace << " not found in list";
return;
}
mList[index] = replacementItem;
QModelIndex modelIndex = createIndex(index, 0);
emit dataChanged(modelIndex, modelIndex);
}
signals:
void isUpdatingChanged();
protected:
bool mIsUpdating = false;
};
#endif