mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-03 03:46:58 +03:00
Add 'depends/groupview/' from commit '946d49675c'
git-subtree-dir: depends/groupview git-subtree-mainline:a17caba2c9git-subtree-split:946d49675c
This commit is contained in:
commit
b82eb5873e
13 changed files with 1846 additions and 0 deletions
21
depends/groupview/GroupedProxyModel.cpp
Normal file
21
depends/groupview/GroupedProxyModel.cpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue