digiKam
|
Classes | |
class | Private |
Public Types | |
enum | AdditionalRoles { CategoryDisplayRole = 0x17CE990A , CategorySortRole = 0x27857E60 } |
Public Member Functions | |
DCategorizedSortFilterProxyModel (QObject *const parent=nullptr) | |
bool | isCategorizedModel () const |
void | setCategorizedModel (bool categorizedModel) |
void | setSortCategoriesByNaturalComparison (bool sortCategoriesByNaturalComparison) |
void | sort (int column, Qt::SortOrder order=Qt::AscendingOrder) override |
bool | sortCategoriesByNaturalComparison () const |
int | sortColumn () const |
Qt::SortOrder | sortOrder () const |
~DCategorizedSortFilterProxyModel () override | |
Protected Member Functions | |
virtual int | compareCategories (const QModelIndex &left, const QModelIndex &right) const |
bool | lessThan (const QModelIndex &left, const QModelIndex &right) const override |
virtual bool | subSortLessThan (const QModelIndex &left, const QModelIndex &right) const |
This class lets you categorize a view. It is meant to be used along with DCategorizedView class.
In general terms all you need to do is to reimplement subSortLessThan() and compareCategories() methods. In order to make categorization work, you need to also call setCategorizedModel() class to enable it, since the categorization is disabled by default.
|
explicit |
|
override |
|
protectedvirtual |
This method compares the category of the left
index with the category of the right
index.
Internally and if not reimplemented, this method will ask for left
and right
models for role CategorySortRole. In order to correctly sort categories, the data() method of the model should return a qlonglong (or numeric) value, or a QString object. QString objects will be sorted with QString::localeAwareCompare if sortCategoriesByNaturalComparison() is true.
This means that QString() will be sorted the first one, while QString(QChar(QChar::ObjectReplacementCharacter)) and QString(QChar(QChar::ReplacementCharacter)) will be sorted in last position.
left
should be placed before the category of right
. 0 if left
and right
are on the same category, and a positive value if the category of left
should be placed after the category of right
. Reimplemented in Digikam::ImportFilterModel, ShowFoto::ShowfotoFilterModel, and Digikam::ItemFilterModel.
References CategorySortRole, Digikam::DCategorizedSortFilterProxyModel::Private::collator, and Digikam::DCategorizedSortFilterProxyModel::Private::sortCategoriesByNaturalComparison.
Referenced by lessThan().
bool Digikam::DCategorizedSortFilterProxyModel::isCategorizedModel | ( | ) | const |
References Digikam::DCategorizedSortFilterProxyModel::Private::categorizedModel.
Referenced by Digikam::DCategorizedView::categorizedIndexesIn(), Digikam::DCategorizedView::categoryAt(), Digikam::DCategorizedView::categoryRange(), Digikam::DCategorizedView::categoryVisualRect(), Digikam::DCategorizedView::currentChanged(), Digikam::DCategorizedView::dragMoveEvent(), Digikam::DCategorizedView::indexAt(), Digikam::DCategorizedView::mouseMoveEvent(), Digikam::DCategorizedView::mouseReleaseEvent(), Digikam::DCategorizedView::moveCursor(), Digikam::DCategorizedView::paintEvent(), Digikam::DCategorizedView::resizeEvent(), Digikam::DCategorizedView::rowsInserted(), Digikam::DCategorizedView::rowsRemoved(), Digikam::DCategorizedView::setSelection(), Digikam::DCategorizedView::slotLayoutChanged(), Digikam::DCategorizedView::updateGeometries(), and Digikam::DCategorizedView::visualRect().
|
overrideprotected |
Overridden from QSortFilterProxyModel. If you are subclassing DCategorizedSortFilterProxyModel, you will probably not need to reimplement this method.
It calls compareCategories() to sort by category. If the both items are in the same category (i.e. compareCategories returns 0), then subSortLessThan is called.
left
is less than the item right
when sorting.References Digikam::DCategorizedSortFilterProxyModel::Private::categorizedModel, compareCategories(), and subSortLessThan().
void Digikam::DCategorizedSortFilterProxyModel::setCategorizedModel | ( | bool | categorizedModel | ) |
Enables or disables the categorization feature.
categorizedModel | whether to enable or disable the categorization feature. |
References Digikam::DCategorizedSortFilterProxyModel::Private::categorizedModel.
Referenced by Digikam::CategorizedItemModel::createFilterModel(), Digikam::ActionItemModel::createFilterModel(), Digikam::ImportFilterModel::setCamItemSortSettings(), Digikam::ItemFilterModel::setItemSortSettings(), and ShowFoto::ShowfotoFilterModel::setShowfotoItemSortSettings().
void Digikam::DCategorizedSortFilterProxyModel::setSortCategoriesByNaturalComparison | ( | bool | sortCategoriesByNaturalComparison | ) |
Set if the sorting using CategorySortRole will use a natural comparison in the case that strings were returned. If enabled, QCollator will be used for sorting.
sortCategoriesByNaturalComparison | whether to sort using a natural comparison or not. |
References sortCategoriesByNaturalComparison(), and Digikam::DCategorizedSortFilterProxyModel::Private::sortCategoriesByNaturalComparison.
|
override |
Overridden from QSortFilterProxyModel. Sorts the source model using column
for the given order
.
References Digikam::DCategorizedSortFilterProxyModel::Private::sortColumn, and Digikam::DCategorizedSortFilterProxyModel::Private::sortOrder.
bool Digikam::DCategorizedSortFilterProxyModel::sortCategoriesByNaturalComparison | ( | ) | const |
References Digikam::DCategorizedSortFilterProxyModel::Private::sortCategoriesByNaturalComparison.
Referenced by setSortCategoriesByNaturalComparison().
int Digikam::DCategorizedSortFilterProxyModel::sortColumn | ( | ) | const |
References Digikam::DCategorizedSortFilterProxyModel::Private::sortColumn.
Referenced by Digikam::DCategorizedView::categoryAt(), Digikam::DCategorizedView::categoryRange(), Digikam::DCategorizedView::paintEvent(), and Digikam::DCategorizedView::rowsInsertedArtifficial().
Qt::SortOrder Digikam::DCategorizedSortFilterProxyModel::sortOrder | ( | ) | const |
References Digikam::DCategorizedSortFilterProxyModel::Private::sortOrder.
|
protectedvirtual |
This method has a similar purpose as lessThan() has on QSortFilterProxyModel. It is used for sorting items that are in the same category.
left
is less than the item right
when sorting. Reimplemented in Digikam::ImportFilterModel, ShowFoto::ShowfotoFilterModel, and Digikam::ItemFilterModel.
Referenced by lessThan().