mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-02 23:54:34 +02:00

git-subtree-dir: depends/groupview git-subtree-mainline: a17caba2c9c2aa5960581db01e4b66472a9c019c git-subtree-split: 946d49675cb4725c31ab49a51f3bcae302f89a19
22 lines
529 B
C++
22 lines
529 B
C++
#include "GroupedProxyModel.h"
|
|
|
|
#include "GroupView.h"
|
|
|
|
GroupedProxyModel::GroupedProxyModel(QObject *parent) : QSortFilterProxyModel(parent)
|
|
{
|
|
}
|
|
|
|
bool GroupedProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
|
|
{
|
|
const QString leftCategory = left.data(GroupViewRoles::GroupRole).toString();
|
|
const QString rightCategory = right.data(GroupViewRoles::GroupRole).toString();
|
|
if (leftCategory == rightCategory)
|
|
{
|
|
return left.row() < right.row();
|
|
}
|
|
else
|
|
{
|
|
return leftCategory < rightCategory;
|
|
}
|
|
}
|