94 lines
3.4 KiB
C++
94 lines
3.4 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2018 Simon Stuerz <simon.stuerz@guh.io> *
|
|
* *
|
|
* This file is part of mea *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Lesser General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2.1 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 *
|
|
* Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with this library; If not, see *
|
|
* <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "bluetoothdeviceinfos.h"
|
|
|
|
BluetoothDeviceInfos::BluetoothDeviceInfos(QObject *parent) : QAbstractListModel(parent)
|
|
{
|
|
|
|
}
|
|
|
|
QList<BluetoothDeviceInfo *> BluetoothDeviceInfos::deviceInfos()
|
|
{
|
|
return m_deviceInfos;
|
|
}
|
|
|
|
int BluetoothDeviceInfos::rowCount(const QModelIndex &parent) const
|
|
{
|
|
Q_UNUSED(parent)
|
|
return m_deviceInfos.count();
|
|
}
|
|
|
|
QVariant BluetoothDeviceInfos::data(const QModelIndex &index, int role) const
|
|
{
|
|
if (index.row() < 0 || index.row() >= m_deviceInfos.count())
|
|
return QVariant();
|
|
|
|
BluetoothDeviceInfo *deviceInfo = m_deviceInfos.at(index.row());
|
|
if (role == BluetoothDeviceInfoRoleName) {
|
|
return deviceInfo->name();
|
|
} else if (role == BluetoothDeviceInfoRoleAddress) {
|
|
return deviceInfo->address();
|
|
} else if (role == BluetoothDeviceInfoRoleLe) {
|
|
return deviceInfo->isLowEnergy();
|
|
}
|
|
|
|
return QVariant();
|
|
}
|
|
|
|
int BluetoothDeviceInfos::count() const
|
|
{
|
|
return m_deviceInfos.count();
|
|
}
|
|
|
|
BluetoothDeviceInfo *BluetoothDeviceInfos::get(int index) const
|
|
{
|
|
if (index >= m_deviceInfos.count() || index < 0)
|
|
return Q_NULLPTR;
|
|
|
|
return m_deviceInfos.at(index);
|
|
}
|
|
|
|
void BluetoothDeviceInfos::addBluetoothDeviceInfo(BluetoothDeviceInfo *deviceInfo)
|
|
{
|
|
beginInsertRows(QModelIndex(), m_deviceInfos.count(), m_deviceInfos.count());
|
|
m_deviceInfos.append(deviceInfo);
|
|
endInsertRows();
|
|
}
|
|
|
|
void BluetoothDeviceInfos::clearModel()
|
|
{
|
|
beginResetModel();
|
|
qDeleteAll(m_deviceInfos);
|
|
m_deviceInfos.clear();
|
|
endResetModel();
|
|
}
|
|
|
|
QHash<int, QByteArray> BluetoothDeviceInfos::roleNames() const
|
|
{
|
|
QHash<int, QByteArray> roles;
|
|
roles[BluetoothDeviceInfoRoleName] = "name";
|
|
roles[BluetoothDeviceInfoRoleAddress] = "address";
|
|
roles[BluetoothDeviceInfoRoleLe] = "lowEnergy";
|
|
return roles;
|
|
}
|