Reformat, Rename, Redo

This commit is contained in:
Petr Mrázek
2014-01-31 22:51:45 +01:00
parent c47933d95c
commit 3fb7a0faf0
13 changed files with 297 additions and 229 deletions

21
GroupedProxyModel.cpp Normal file
View 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(CategorizedViewRoles::CategoryRole).toString();
const QString rightCategory = right.data(CategorizedViewRoles::CategoryRole).toString();
if (leftCategory == rightCategory)
{
return left.row() < right.row();
}
else
{
return leftCategory < rightCategory;
}
}