digiKam
ShowFoto::ShowfotoSortFilterModel Class Reference
+ Inheritance diagram for ShowFoto::ShowfotoSortFilterModel:

Public Types

enum  AdditionalRoles { CategoryDisplayRole = 0x17CE990A , CategorySortRole = 0x27857E60 }
 

Public Member Functions

QModelIndex indexForShowfotoItemId (qlonglong id) const
 
QModelIndex indexForShowfotoItemInfo (const ShowfotoItemInfo &info) const
 
QModelIndex indexForUrl (const QUrl &fileUrl) const
 
bool isCategorizedModel () const
 
QModelIndex mapFromDirectSourceToSourceShowfotoModel (const QModelIndex &sourceModelIndex) const
 
QModelIndex mapFromSourceShowfotoModel (const QModelIndex &showfotoModelIndex) const
 
QList< QModelIndex > mapListFromSource (const QList< QModelIndex > &sourceIndexes) const
 
QList< QModelIndex > mapListToSource (const QList< QModelIndex > &indexes) const
 
QModelIndex mapToSourceShowfotoModel (const QModelIndex &proxyIndex) const
 
void setCategorizedModel (bool categorizedModel)
 
void setSortCategoriesByNaturalComparison (bool sortCategoriesByNaturalComparison)
 
void setSourceFilterModel (ShowfotoSortFilterModel *const sourceModel)
 
void setSourceShowfotoModel (ShowfotoItemModel *const sourceModel)
 
virtual ShowfotoFilterModelshowfotoFilterModel () const
 Returns this, any chained ShowfotoFilterModel, or 0. More...
 
qlonglong showfotoItemId (const QModelIndex &index) const
 
QList< qlonglong > showfotoItemIds (const QList< QModelIndex > &indexes) const
 
ShowfotoItemInfo showfotoItemInfo (const QModelIndex &index) const
 
QList< ShowfotoItemInfoshowfotoItemInfos (const QList< QModelIndex > &indexes) const
 
QList< ShowfotoItemInfoshowfotoItemInfosSorted () const
 
 ShowfotoSortFilterModel (QObject *const parent=nullptr)
 
void sort (int column, Qt::SortOrder order=Qt::AscendingOrder) override
 
bool sortCategoriesByNaturalComparison () const
 
int sortColumn () const
 
Qt::SortOrder sortOrder () const
 
ShowfotoSortFilterModelsourceFilterModel () const
 
ShowfotoItemModelsourceShowfotoModel () const
 
 ~ShowfotoSortFilterModel () 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 void setDirectSourceShowfotoModel (ShowfotoItemModel *const sourceModel)
 Reimplement if needed. Called only when model shall be set as (direct) sourceModel. More...
 
void setSourceModel (QAbstractItemModel *sourceModel) override
 
virtual bool subSortLessThan (const QModelIndex &left, const QModelIndex &right) const
 

Protected Attributes

ShowfotoSortFilterModelm_chainedModel
 

Member Enumeration Documentation

◆ AdditionalRoles

Enumerator
CategoryDisplayRole 

NOTE: use printf "0x%08X\n" $(($RANDOM*$RANDOM)) to define additional roles. This role is used for asking the category to a given index

CategorySortRole 

This role is used for sorting categories. You can return a string or a long long value. Strings will be sorted alphabetically while long long will be sorted by their value. Please note that this value won't be shown on the view, is only for sorting purposes. What will be shown as "Category" on the view will be asked with the role CategoryDisplayRole.

Constructor & Destructor Documentation

◆ ShowfotoSortFilterModel()

ShowFoto::ShowfotoSortFilterModel::ShowfotoSortFilterModel ( QObject *const  parent = nullptr)
explicit

◆ ~ShowfotoSortFilterModel()

ShowFoto::ShowfotoSortFilterModel::~ShowfotoSortFilterModel ( )
override

Member Function Documentation

◆ compareCategories()

int Digikam::DCategorizedSortFilterProxyModel::compareCategories ( const QModelIndex &  left,
const QModelIndex &  right 
) const
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.

Note
Please have present that: QString(QChar(QChar::ObjectReplacementCharacter)) > QString(QChar(QChar::ReplacementCharacter)) > [ all possible strings ] > QString();

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.

Warning
Please note that data() method of the model should return always information of the same type. If you return a QString for an index, you should return always QStrings for all indexes for role CategorySortRole in order to correctly sort categories. You can't mix by returning a QString for one index, and a qlonglong for other.
Note
If you need a more complex layout, you will have to reimplement this method.
Returns
A negative value if the category of 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().

◆ indexForShowfotoItemId()

QModelIndex ShowFoto::ShowfotoSortFilterModel::indexForShowfotoItemId ( qlonglong  id) const

◆ indexForShowfotoItemInfo()

QModelIndex ShowFoto::ShowfotoSortFilterModel::indexForShowfotoItemInfo ( const ShowfotoItemInfo info) const

◆ indexForUrl()

QModelIndex ShowFoto::ShowfotoSortFilterModel::indexForUrl ( const QUrl &  fileUrl) const

◆ isCategorizedModel()

◆ lessThan()

bool Digikam::DCategorizedSortFilterProxyModel::lessThan ( const QModelIndex &  left,
const QModelIndex &  right 
) const
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.

Returns
Returns true if the item left is less than the item right when sorting.
Warning
You usually won't need to reimplement this method when subclassing from DCategorizedSortFilterProxyModel.

References Digikam::DCategorizedSortFilterProxyModel::Private::categorizedModel, Digikam::DCategorizedSortFilterProxyModel::compareCategories(), and Digikam::DCategorizedSortFilterProxyModel::subSortLessThan().

◆ mapFromDirectSourceToSourceShowfotoModel()

QModelIndex ShowFoto::ShowfotoSortFilterModel::mapFromDirectSourceToSourceShowfotoModel ( const QModelIndex &  sourceModelIndex) const

◆ mapFromSourceShowfotoModel()

QModelIndex ShowFoto::ShowfotoSortFilterModel::mapFromSourceShowfotoModel ( const QModelIndex &  showfotoModelIndex) const

◆ mapListFromSource()

QList< QModelIndex > ShowFoto::ShowfotoSortFilterModel::mapListFromSource ( const QList< QModelIndex > &  sourceIndexes) const

◆ mapListToSource()

QList< QModelIndex > ShowFoto::ShowfotoSortFilterModel::mapListToSource ( const QList< QModelIndex > &  indexes) const

◆ mapToSourceShowfotoModel()

QModelIndex ShowFoto::ShowfotoSortFilterModel::mapToSourceShowfotoModel ( const QModelIndex &  proxyIndex) const

Convenience methods mapped to ShowfotoItemModel. Mentioned indexes returned come from the source Showfoto image model.

References m_chainedModel, and mapToSourceShowfotoModel().

Referenced by mapFromDirectSourceToSourceShowfotoModel(), mapListToSource(), mapToSourceShowfotoModel(), and showfotoItemInfo().

◆ setCategorizedModel()

void Digikam::DCategorizedSortFilterProxyModel::setCategorizedModel ( bool  categorizedModel)
inherited

◆ setDirectSourceShowfotoModel()

void ShowFoto::ShowfotoSortFilterModel::setDirectSourceShowfotoModel ( ShowfotoItemModel *const  sourceModel)
protectedvirtual

Reimplement if needed. Called only when model shall be set as (direct) sourceModel.

Reimplemented in ShowFoto::ShowfotoFilterModel.

References setSourceModel().

Referenced by setSourceShowfotoModel().

◆ setSortCategoriesByNaturalComparison()

void Digikam::DCategorizedSortFilterProxyModel::setSortCategoriesByNaturalComparison ( bool  sortCategoriesByNaturalComparison)
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.

Parameters
sortCategoriesByNaturalComparisonwhether to sort using a natural comparison or not.

References Digikam::DCategorizedSortFilterProxyModel::sortCategoriesByNaturalComparison(), and Digikam::DCategorizedSortFilterProxyModel::Private::sortCategoriesByNaturalComparison.

◆ setSourceFilterModel()

void ShowFoto::ShowfotoSortFilterModel::setSourceFilterModel ( ShowfotoSortFilterModel *const  sourceModel)

◆ setSourceModel()

void ShowFoto::ShowfotoSortFilterModel::setSourceModel ( QAbstractItemModel *  sourceModel)
overrideprotected

◆ setSourceShowfotoModel()

void ShowFoto::ShowfotoSortFilterModel::setSourceShowfotoModel ( ShowfotoItemModel *const  sourceModel)

◆ showfotoFilterModel()

ShowfotoFilterModel * ShowFoto::ShowfotoSortFilterModel::showfotoFilterModel ( ) const
virtual

Returns this, any chained ShowfotoFilterModel, or 0.

Reimplemented in ShowFoto::ShowfotoFilterModel.

References m_chainedModel, and showfotoFilterModel().

Referenced by showfotoFilterModel().

◆ showfotoItemId()

qlonglong ShowFoto::ShowfotoSortFilterModel::showfotoItemId ( const QModelIndex &  index) const

◆ showfotoItemIds()

QList<qlonglong> ShowFoto::ShowfotoSortFilterModel::showfotoItemIds ( const QList< QModelIndex > &  indexes) const

◆ showfotoItemInfo()

◆ showfotoItemInfos()

QList< ShowfotoItemInfo > ShowFoto::ShowfotoSortFilterModel::showfotoItemInfos ( const QList< QModelIndex > &  indexes) const

References showfotoItemInfo().

◆ showfotoItemInfosSorted()

QList< ShowfotoItemInfo > ShowFoto::ShowfotoSortFilterModel::showfotoItemInfosSorted ( ) const

Returns a list of all showfoto infos, sorted according to this model. If you do not need a sorted list, use ShowfotoItemModel's showfotoItemInfo() method.

References showfotoItemInfo().

◆ sort()

void Digikam::DCategorizedSortFilterProxyModel::sort ( int  column,
Qt::SortOrder  order = Qt::AscendingOrder 
)
overrideinherited

Overridden from QSortFilterProxyModel. Sorts the source model using column for the given order.

References Digikam::DCategorizedSortFilterProxyModel::Private::sortColumn, and Digikam::DCategorizedSortFilterProxyModel::Private::sortOrder.

◆ sortCategoriesByNaturalComparison()

bool Digikam::DCategorizedSortFilterProxyModel::sortCategoriesByNaturalComparison ( ) const
inherited
Returns
whether it is being used a natural comparison for sorting. Enabled by default.

References Digikam::DCategorizedSortFilterProxyModel::Private::sortCategoriesByNaturalComparison.

Referenced by Digikam::DCategorizedSortFilterProxyModel::setSortCategoriesByNaturalComparison().

◆ sortColumn()

int Digikam::DCategorizedSortFilterProxyModel::sortColumn ( ) const
inherited

◆ sortOrder()

Qt::SortOrder Digikam::DCategorizedSortFilterProxyModel::sortOrder ( ) const
inherited
Returns
the sort order being used for sorting.

References Digikam::DCategorizedSortFilterProxyModel::Private::sortOrder.

◆ sourceFilterModel()

ShowfotoSortFilterModel * ShowFoto::ShowfotoSortFilterModel::sourceFilterModel ( ) const

References m_chainedModel.

◆ sourceShowfotoModel()

ShowfotoItemModel * ShowFoto::ShowfotoSortFilterModel::sourceShowfotoModel ( ) const

◆ subSortLessThan()

bool Digikam::DCategorizedSortFilterProxyModel::subSortLessThan ( const QModelIndex &  left,
const QModelIndex &  right 
) const
protectedvirtualinherited

This method has a similar purpose as lessThan() has on QSortFilterProxyModel. It is used for sorting items that are in the same category.

Returns
Returns true if the item left is less than the item right when sorting.

Reimplemented in Digikam::ImportFilterModel, ShowFoto::ShowfotoFilterModel, and Digikam::ItemFilterModel.

Referenced by Digikam::DCategorizedSortFilterProxyModel::lessThan().

Member Data Documentation

◆ m_chainedModel


The documentation for this class was generated from the following files: