2013-08-16 05:23:54 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-08-15 23:25:13 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2013-08-15 23:25:13 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEVICESSORTPROXYMODEL_H
|
|
|
|
#define DEVICESSORTPROXYMODEL_H
|
|
|
|
|
|
|
|
#include <QSortFilterProxyModel>
|
2015-06-11 15:09:27 +01:00
|
|
|
#include "interfaces/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:
|
2015-08-21 17:38:54 +01:00
|
|
|
explicit DevicesSortProxyModel(DevicesModel* devicesModel = Q_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;
|
2017-09-03 20:39:44 +01:00
|
|
|
void setSourceModel(QAbstractItemModel* sourceModel) override;
|
2013-08-15 23:25:13 +01:00
|
|
|
|
2014-08-11 17:53:08 +01:00
|
|
|
public Q_SLOTS:
|
2015-09-12 08:48:18 +01:00
|
|
|
void sourceDataChanged();
|
2013-08-15 23:25:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DEVICESSORTPROXYMODEL_H
|