summaryrefslogblamecommitdiffstats
path: root/core/connectionlistmodel.cpp
blob: e4ac8bfeb415c4cb6b83d34c778afe2e89ef1785 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                           





                                                              


                                                                            
                                    


                                        
                                                           
 

                                   
                                                            
 



                                                                       
 





                                                      
 
                                                              
 


                                                                             
 
// SPDX-License-Identifier: GPL-2.0

#include "core/connectionlistmodel.h"

ConnectionListModel::ConnectionListModel(QObject *parent) :
	QAbstractListModel(parent)
{
}

QHash <int, QByteArray> ConnectionListModel::roleNames() const
{
	QHash<int, QByteArray> roles;
	roles[Qt::DisplayRole] = "display";
	return roles;
}

QVariant ConnectionListModel::data(const QModelIndex &index, int role) const
{
	if (index.row() < 0 || index.row() >= m_addresses.count())
		return QVariant();
	if (role != Qt::DisplayRole)
		return QVariant();
	return m_addresses[index.row()];
}

int ConnectionListModel::rowCount(const QModelIndex&) const
{
	return m_addresses.count();
}

void ConnectionListModel::addAddress(const QString &address)
{
	if (!m_addresses.contains(address)) {
		beginInsertRows(QModelIndex(), rowCount(), rowCount());
		m_addresses.append(address);
		endInsertRows();
	}
}

void ConnectionListModel::removeAllAddresses()
{
	beginRemoveRows(QModelIndex(), 0, rowCount());
	m_addresses.clear();
	endRemoveRows();
}

int ConnectionListModel::indexOf(const QString &address) const
{
	for (int i = 0; i < m_addresses.count(); i++)
		if (m_addresses.at(i).contains(address, Qt::CaseInsensitive))
			return i;
	return -1;
}