kdeconnect-kde/interfaces/devicessortproxymodel.cpp
Alexander Lohnau 2e67f95017 Add explicit moc includes to cpp files
The rationale is explained in https://planet.kde.org/friedrich-kossebau-2023-06-28-include-also-moc-files-of-headers/

In case of KDEConnect, it impressively speeds up compilation. Before it
took 390 seconds on a clean build and with this change it took 330 seconds.
This is due to the mocs_compilation having to include the header files
and thus all their headers. Due to the lots of small plugins we have,
this means that the same headers must be compiled plenty of times.
When we include the moc files directly in the C++ file, they are already
available.
2023-07-30 07:27:45 +00:00

48 lines
1.4 KiB
C++

/**
* 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"
#include "dbusinterfaces.h"
#include "devicesmodel.h"
DevicesSortProxyModel::DevicesSortProxyModel(DevicesModel *devicesModel)
: QSortFilterProxyModel(devicesModel)
{
setSourceModel(devicesModel);
setSortRole(DevicesModel::StatusModelRole);
sort(0);
}
bool DevicesSortProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
{
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;
}
#include "moc_devicessortproxymodel.cpp"