kdeconnect-kde/interfaces/devicessortproxymodel.cpp

48 lines
1.4 KiB
C++
Raw Normal View History

2013-08-16 05:23:54 +01:00
/**
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include "devicessortproxymodel.h"
2019-04-30 18:03:24 +01:00
#include "dbusinterfaces.h"
#include "devicesmodel.h"
DevicesSortProxyModel::DevicesSortProxyModel(DevicesModel* devicesModel)
: QSortFilterProxyModel(devicesModel)
{
setSourceModel(devicesModel);
2019-05-04 16:37:13 +01:00
setSortRole(DevicesModel::StatusModelRole);
sort(0);
}
bool DevicesSortProxyModel::lessThan(const QModelIndex& left, const QModelIndex& right) const
{
2015-03-23 06:08:37 +00:00
QAbstractItemModel* model = sourceModel();
Q_ASSERT(qobject_cast<DevicesModel*>(model));
//Show connected devices first
int statusLeft = model->data(left, DevicesModel::StatusModelRole).toInt();
int statusRight = model->data(right, DevicesModel::StatusModelRole).toInt();
if (statusLeft != statusRight) {
return statusLeft > statusRight;
}
//Fallback to alphabetical order
QString nameLeft = model->data(left, DevicesModel::NameModelRole).toString();
QString nameRight = model->data(right, DevicesModel::NameModelRole).toString();
return nameLeft > nameRight;
}
bool DevicesSortProxyModel::filterAcceptsRow(int source_row, const QModelIndex& source_parent) const
{
Q_UNUSED(source_row);
Q_UNUSED(source_parent);
//Possible to-do: Implement filter
return true;
}