digiKam
|
Public Types | |
enum | AdditionalRoles { CategoryDisplayRole = 0x17CE990A , CategorySortRole = 0x27857E60 } |
Public Member Functions | |
virtual ItemFilterModel * | imageFilterModel () const |
qlonglong | imageId (const QModelIndex &index) const |
QList< qlonglong > | imageIds (const QList< QModelIndex > &indexes) const |
ItemInfo | imageInfo (const QModelIndex &index) const |
QList< ItemInfo > | imageInfos (const QList< QModelIndex > &indexes) const |
QList< ItemInfo > | imageInfosSorted () const |
QModelIndex | indexForImageId (qlonglong id) const |
QModelIndex | indexForItemInfo (const ItemInfo &info) const |
QModelIndex | indexForPath (const QString &filePath) const |
bool | isCategorizedModel () const |
QModelIndex | mapFromDirectSourceToSourceItemModel (const QModelIndex &sourceModel_index) const |
QModelIndex | mapFromSourceItemModel (const QModelIndex &imagemodel_index) const |
QList< QModelIndex > | mapListFromSource (const QList< QModelIndex > &sourceIndexes) const |
QList< QModelIndex > | mapListToSource (const QList< QModelIndex > &indexes) const |
QModelIndex | mapToSourceItemModel (const QModelIndex &index) const |
NoDuplicatesItemFilterModel (QObject *const parent=nullptr) | |
void | setCategorizedModel (bool categorizedModel) |
void | setSortCategoriesByNaturalComparison (bool sortCategoriesByNaturalComparison) |
void | setSourceFilterModel (ImageSortFilterModel *const model) |
void | setSourceItemModel (ItemModel *const model) |
void | sort (int column, Qt::SortOrder order=Qt::AscendingOrder) override |
bool | sortCategoriesByNaturalComparison () const |
int | sortColumn () const |
Qt::SortOrder | sortOrder () const |
ImageSortFilterModel * | sourceFilterModel () const |
ItemModel * | sourceItemModel () const |
Protected Member Functions | |
virtual int | compareCategories (const QModelIndex &left, const QModelIndex &right) const |
bool | filterAcceptsRow (int source_row, const QModelIndex &source_parent) const override |
bool | lessThan (const QModelIndex &left, const QModelIndex &right) const override |
virtual void | setDirectSourceItemModel (ItemModel *const model) |
void | setSourceModel (QAbstractItemModel *const model) override |
NOTE: made protected. More... | |
virtual bool | subSortLessThan (const QModelIndex &left, const QModelIndex &right) const |
Protected Attributes | |
ImageSortFilterModel * | m_chainedModel |
|
inherited |
|
explicit |
|
protectedvirtualinherited |
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 Digikam::DCategorizedSortFilterProxyModel::CategorySortRole, Digikam::DCategorizedSortFilterProxyModel::Private::collator, and Digikam::DCategorizedSortFilterProxyModel::Private::sortCategoriesByNaturalComparison.
Referenced by Digikam::DCategorizedSortFilterProxyModel::lessThan().
|
overrideprotected |
|
virtualinherited |
Returns this, any chained ItemFilterModel, or 0.
Reimplemented in Digikam::ItemFilterModel.
References Digikam::ImageSortFilterModel::imageFilterModel(), and Digikam::ImageSortFilterModel::m_chainedModel.
Referenced by Digikam::ImageSortFilterModel::imageFilterModel().
|
inherited |
|
inherited |
References Digikam::ItemModel::imageInfo(), Digikam::ImageSortFilterModel::mapToSourceItemModel(), and Digikam::ImageSortFilterModel::sourceItemModel().
Referenced by Digikam::DigikamItemView::groupIndicatorClicked(), Digikam::ItemFilterModel::slotRowsAboutToBeRemoved(), and Digikam::ItemFilterModel::slotRowsInserted().
Returns a list of all image infos, sorted according to this model. If you do not need a sorted list, use ItemModel's imageInfos() method.
References Digikam::ItemModel::imageInfo(), Digikam::ImageSortFilterModel::mapToSourceItemModel(), and Digikam::ImageSortFilterModel::sourceItemModel().
|
inherited |
|
inherited |
|
inherited |
|
inherited |
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().
|
overrideprotectedinherited |
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, Digikam::DCategorizedSortFilterProxyModel::compareCategories(), and Digikam::DCategorizedSortFilterProxyModel::subSortLessThan().
|
inherited |
References Digikam::ImageSortFilterModel::m_chainedModel, and Digikam::ImageSortFilterModel::mapToSourceItemModel().
Referenced by filterAcceptsRow().
|
inherited |
References Digikam::ImageSortFilterModel::m_chainedModel, and Digikam::ImageSortFilterModel::mapFromSourceItemModel().
Referenced by Digikam::ImageSortFilterModel::indexForImageId(), Digikam::ImageSortFilterModel::indexForItemInfo(), Digikam::ImageSortFilterModel::indexForPath(), Digikam::ImageSortFilterModel::mapFromSourceItemModel(), and Digikam::ImageSortFilterModel::mapListFromSource().
|
inherited |
Convenience methods mapped to ItemModel. Mentioned indexes returned come from the source image model.
References Digikam::ImageSortFilterModel::mapToSourceItemModel().
|
inherited |
References Digikam::ImageSortFilterModel::m_chainedModel, and Digikam::ImageSortFilterModel::mapToSourceItemModel().
Referenced by Digikam::DigikamItemView::confirmFaces(), Digikam::ItemDragDropHandler::dropEvent(), Digikam::DigikamItemView::ignoreFaces(), Digikam::ImageSortFilterModel::imageId(), Digikam::ImageSortFilterModel::imageIds(), Digikam::ImageSortFilterModel::imageInfo(), Digikam::ImageSortFilterModel::imageInfos(), Digikam::ImageSortFilterModel::imageInfosSorted(), Digikam::ImageSortFilterModel::mapFromDirectSourceToSourceItemModel(), Digikam::ImageSortFilterModel::mapListToSource(), Digikam::ImageSortFilterModel::mapToSourceItemModel(), Digikam::DigikamItemView::rejectFaces(), Digikam::DigikamItemView::removeFaces(), and Digikam::DigikamItemView::unknownFaces().
|
inherited |
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().
|
protectedvirtualinherited |
Reimplement if needed. Called only when model shall be set as (direct) sourceModel.
Reimplemented in Digikam::ItemFilterModel.
References Digikam::ImageSortFilterModel::setSourceModel().
Referenced by Digikam::ImageSortFilterModel::setSourceItemModel().
|
inherited |
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 Digikam::DCategorizedSortFilterProxyModel::sortCategoriesByNaturalComparison(), and Digikam::DCategorizedSortFilterProxyModel::Private::sortCategoriesByNaturalComparison.
|
inherited |
|
inherited |
References Digikam::ImageSortFilterModel::m_chainedModel, Digikam::ImageSortFilterModel::setDirectSourceItemModel(), and Digikam::ImageSortFilterModel::setSourceItemModel().
Referenced by Digikam::ImageSortFilterModel::setSourceFilterModel(), Digikam::ItemAlbumFilterModel::setSourceItemModel(), and Digikam::ImageSortFilterModel::setSourceItemModel().
|
overrideprotectedinherited |
NOTE: made protected.
Referenced by Digikam::ImageSortFilterModel::setDirectSourceItemModel(), Digikam::ItemFilterModel::setDirectSourceItemModel(), and Digikam::ImageSortFilterModel::setSourceFilterModel().
|
overrideinherited |
Overridden from QSortFilterProxyModel. Sorts the source model using column
for the given order
.
References Digikam::DCategorizedSortFilterProxyModel::Private::sortColumn, and Digikam::DCategorizedSortFilterProxyModel::Private::sortOrder.
|
inherited |
References Digikam::DCategorizedSortFilterProxyModel::Private::sortCategoriesByNaturalComparison.
Referenced by Digikam::DCategorizedSortFilterProxyModel::setSortCategoriesByNaturalComparison().
|
inherited |
References Digikam::DCategorizedSortFilterProxyModel::Private::sortColumn.
Referenced by Digikam::DCategorizedView::categoryAt(), Digikam::DCategorizedView::categoryRange(), Digikam::DCategorizedView::paintEvent(), and Digikam::DCategorizedView::rowsInsertedArtifficial().
|
inherited |
References Digikam::DCategorizedSortFilterProxyModel::Private::sortOrder.
|
inherited |
References Digikam::ImageSortFilterModel::m_chainedModel.
|
inherited |
References Digikam::ImageSortFilterModel::m_chainedModel, and Digikam::ImageSortFilterModel::sourceItemModel().
Referenced by filterAcceptsRow(), Digikam::ImageSortFilterModel::imageId(), Digikam::ImageSortFilterModel::imageIds(), Digikam::ImageSortFilterModel::imageInfo(), Digikam::ImageSortFilterModel::imageInfos(), Digikam::ImageSortFilterModel::imageInfosSorted(), Digikam::ImageSortFilterModel::indexForImageId(), Digikam::ImageSortFilterModel::indexForItemInfo(), Digikam::ImageSortFilterModel::indexForPath(), Digikam::ImageSortFilterModel::setSourceFilterModel(), and Digikam::ImageSortFilterModel::sourceItemModel().
|
protectedvirtualinherited |
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 Digikam::DCategorizedSortFilterProxyModel::lessThan().
|
protectedinherited |
Referenced by Digikam::ImageSortFilterModel::imageFilterModel(), Digikam::ImageSortFilterModel::mapFromDirectSourceToSourceItemModel(), Digikam::ImageSortFilterModel::mapFromSourceItemModel(), Digikam::ImageSortFilterModel::mapToSourceItemModel(), Digikam::ImageSortFilterModel::setSourceFilterModel(), Digikam::ImageSortFilterModel::setSourceItemModel(), Digikam::ImageSortFilterModel::sourceFilterModel(), and Digikam::ImageSortFilterModel::sourceItemModel().