pollymc/GroupedProxyModel.cpp

22 lines
547 B
C++
Raw Normal View History

2014-02-01 03:21:45 +05:30
#include "GroupedProxyModel.h"
2014-02-01 03:21:45 +05:30
#include "GroupView.h"
2014-02-01 03:21:45 +05:30
GroupedProxyModel::GroupedProxyModel(QObject *parent) : QSortFilterProxyModel(parent)
{
}
2014-02-01 03:21:45 +05:30
bool GroupedProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right) const
{
2013-12-31 04:09:10 +05:30
const QString leftCategory = left.data(CategorizedViewRoles::CategoryRole).toString();
const QString rightCategory = right.data(CategorizedViewRoles::CategoryRole).toString();
if (leftCategory == rightCategory)
{
return left.row() < right.row();
}
else
{
return leftCategory < rightCategory;
}
}