2013-08-16 05:23:54 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-08-15 23:25:13 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2013-08-15 23:25:13 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEVICESSORTPROXYMODEL_H
|
|
|
|
#define DEVICESSORTPROXYMODEL_H
|
|
|
|
|
|
|
|
#include <QSortFilterProxyModel>
|
2019-04-30 18:03:24 +01:00
|
|
|
#include "kdeconnectinterfaces_export.h"
|
2013-08-15 23:25:13 +01:00
|
|
|
|
|
|
|
class DevicesModel;
|
|
|
|
|
2015-06-11 15:09:27 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT DevicesSortProxyModel : public QSortFilterProxyModel
|
2013-08-15 23:25:13 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-05-05 14:45:50 +01:00
|
|
|
explicit DevicesSortProxyModel(DevicesModel* devicesModel = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
bool lessThan(const QModelIndex& left, const QModelIndex& right) const override;
|
|
|
|
bool filterAcceptsRow(int source_row, const QModelIndex& source_parent) const override;
|
2013-08-15 23:25:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DEVICESSORTPROXYMODEL_H
|