mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-05 00:05:32 -04:00
Merge pull request #5856 from nyalldawson/sort_browser
Correctly sort browser items
This commit is contained in:
commit
b6ddc702c0
@ -23,6 +23,7 @@ class QgsBrowserModel : QAbstractItemModel
|
|||||||
{
|
{
|
||||||
PathRole,
|
PathRole,
|
||||||
CommentRole,
|
CommentRole,
|
||||||
|
SortRole,
|
||||||
};
|
};
|
||||||
|
|
||||||
virtual Qt::ItemFlags flags( const QModelIndex &index ) const;
|
virtual Qt::ItemFlags flags( const QModelIndex &index ) const;
|
||||||
|
@ -271,6 +271,27 @@ Create path component replacing path separators
|
|||||||
:rtype: str
|
:rtype: str
|
||||||
%End
|
%End
|
||||||
|
|
||||||
|
virtual QVariant sortKey() const;
|
||||||
|
%Docstring
|
||||||
|
Returns the sorting key for the item. By default name() is returned,
|
||||||
|
but setSortKey() can be used to set a custom sort key for the item.
|
||||||
|
|
||||||
|
Alternatively subclasses can override this method to return a custom
|
||||||
|
sort key.
|
||||||
|
|
||||||
|
.. seealso:: :py:func:`setSortKey()`
|
||||||
|
.. versionadded:: 3.0
|
||||||
|
:rtype: QVariant
|
||||||
|
%End
|
||||||
|
|
||||||
|
void setSortKey( const QVariant &key );
|
||||||
|
%Docstring
|
||||||
|
Sets a custom sorting ``key`` for the item.
|
||||||
|
.. seealso:: :py:func:`sortKey()`
|
||||||
|
.. versionadded:: 3.0
|
||||||
|
%End
|
||||||
|
|
||||||
|
|
||||||
void setIcon( const QIcon &icon );
|
void setIcon( const QIcon &icon );
|
||||||
void setIconName( const QString &iconName );
|
void setIconName( const QString &iconName );
|
||||||
|
|
||||||
@ -307,6 +328,7 @@ Move object and all its descendants to thread
|
|||||||
%End
|
%End
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
virtual void deleteLater();
|
virtual void deleteLater();
|
||||||
@ -669,6 +691,9 @@ Icon for favorites group
|
|||||||
:rtype: QIcon
|
:rtype: QIcon
|
||||||
%End
|
%End
|
||||||
|
|
||||||
|
virtual QVariant sortKey() const;
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class QgsZipItem : QgsDataCollectionItem
|
class QgsZipItem : QgsDataCollectionItem
|
||||||
|
@ -72,6 +72,7 @@ void QgsBrowserModel::updateProjectHome()
|
|||||||
mProjectHome = home.isNull() ? nullptr : new QgsDirectoryItem( nullptr, tr( "Project home" ), home, "project:" + home );
|
mProjectHome = home.isNull() ? nullptr : new QgsDirectoryItem( nullptr, tr( "Project home" ), home, "project:" + home );
|
||||||
if ( mProjectHome )
|
if ( mProjectHome )
|
||||||
{
|
{
|
||||||
|
mProjectHome->setSortKey( QStringLiteral( " 1" ) );
|
||||||
connectItem( mProjectHome );
|
connectItem( mProjectHome );
|
||||||
|
|
||||||
beginInsertRows( QModelIndex(), 0, 0 );
|
beginInsertRows( QModelIndex(), 0, 0 );
|
||||||
@ -84,8 +85,9 @@ void QgsBrowserModel::addRootItems()
|
|||||||
{
|
{
|
||||||
updateProjectHome();
|
updateProjectHome();
|
||||||
|
|
||||||
// give the home directory a prominent second place
|
// give the home directory a prominent third place
|
||||||
QgsDirectoryItem *item = new QgsDirectoryItem( nullptr, tr( "Home" ), QDir::homePath(), "home:" + QDir::homePath() );
|
QgsDirectoryItem *item = new QgsDirectoryItem( nullptr, tr( "Home" ), QDir::homePath(), "home:" + QDir::homePath() );
|
||||||
|
item->setSortKey( QStringLiteral( " 2" ) );
|
||||||
QStyle *style = QApplication::style();
|
QStyle *style = QApplication::style();
|
||||||
QIcon homeIcon( style->standardPixmap( QStyle::SP_DirHomeIcon ) );
|
QIcon homeIcon( style->standardPixmap( QStyle::SP_DirHomeIcon ) );
|
||||||
item->setIcon( homeIcon );
|
item->setIcon( homeIcon );
|
||||||
@ -109,6 +111,7 @@ void QgsBrowserModel::addRootItems()
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
QgsDirectoryItem *item = new QgsDirectoryItem( nullptr, path, path );
|
QgsDirectoryItem *item = new QgsDirectoryItem( nullptr, path, path );
|
||||||
|
item->setSortKey( QStringLiteral( " 3 %1" ).arg( path ) );
|
||||||
|
|
||||||
connectItem( item );
|
connectItem( item );
|
||||||
mRootItems << item;
|
mRootItems << item;
|
||||||
@ -212,6 +215,10 @@ QVariant QgsBrowserModel::data( const QModelIndex &index, int role ) const
|
|||||||
{
|
{
|
||||||
return item->name();
|
return item->name();
|
||||||
}
|
}
|
||||||
|
else if ( role == QgsBrowserModel::SortRole )
|
||||||
|
{
|
||||||
|
return item->sortKey();
|
||||||
|
}
|
||||||
else if ( role == Qt::ToolTipRole )
|
else if ( role == Qt::ToolTipRole )
|
||||||
{
|
{
|
||||||
return item->toolTip();
|
return item->toolTip();
|
||||||
|
@ -64,6 +64,7 @@ class CORE_EXPORT QgsBrowserModel : public QAbstractItemModel
|
|||||||
{
|
{
|
||||||
PathRole = Qt::UserRole, //!< Item path used to access path in the tree, see QgsDataItem::mPath
|
PathRole = Qt::UserRole, //!< Item path used to access path in the tree, see QgsDataItem::mPath
|
||||||
CommentRole = Qt::UserRole + 1, //!< Item comment
|
CommentRole = Qt::UserRole + 1, //!< Item comment
|
||||||
|
SortRole, //!< Custom sort role, see QgsDataItem::sortKey()
|
||||||
};
|
};
|
||||||
// implemented methods from QAbstractItemModel for read-only access
|
// implemented methods from QAbstractItemModel for read-only access
|
||||||
|
|
||||||
|
@ -102,6 +102,11 @@ QIcon QgsFavoritesItem::iconFavorites()
|
|||||||
return QgsApplication::getThemeIcon( QStringLiteral( "/mIconFavourites.png" ) );
|
return QgsApplication::getThemeIcon( QStringLiteral( "/mIconFavourites.png" ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QVariant QgsFavoritesItem::sortKey() const
|
||||||
|
{
|
||||||
|
return QStringLiteral( " 0" );
|
||||||
|
}
|
||||||
|
|
||||||
QIcon QgsZipItem::iconZip()
|
QIcon QgsZipItem::iconZip()
|
||||||
{
|
{
|
||||||
return QgsApplication::getThemeIcon( QStringLiteral( "/mIconZip.png" ) );
|
return QgsApplication::getThemeIcon( QStringLiteral( "/mIconZip.png" ) );
|
||||||
@ -150,6 +155,16 @@ QString QgsDataItem::pathComponent( const QString &string )
|
|||||||
return QString( string ).replace( QRegExp( "[\\\\/]" ), QStringLiteral( "|" ) );
|
return QString( string ).replace( QRegExp( "[\\\\/]" ), QStringLiteral( "|" ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QVariant QgsDataItem::sortKey() const
|
||||||
|
{
|
||||||
|
return mSortKey.isValid() ? mSortKey : name();
|
||||||
|
}
|
||||||
|
|
||||||
|
void QgsDataItem::setSortKey( const QVariant &key )
|
||||||
|
{
|
||||||
|
mSortKey = key;
|
||||||
|
}
|
||||||
|
|
||||||
void QgsDataItem::deleteLater()
|
void QgsDataItem::deleteLater()
|
||||||
{
|
{
|
||||||
QgsDebugMsgLevel( "path = " + path(), 3 );
|
QgsDebugMsgLevel( "path = " + path(), 3 );
|
||||||
@ -753,6 +768,10 @@ QVector<QgsDataItem *> QgsDirectoryItem::createChildren()
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
QgsDirectoryItem *item = new QgsDirectoryItem( this, subdir, subdirPath, path );
|
QgsDirectoryItem *item = new QgsDirectoryItem( this, subdir, subdirPath, path );
|
||||||
|
|
||||||
|
// we want directories shown before files
|
||||||
|
item->setSortKey( QStringLiteral( " %1" ).arg( subdir ) );
|
||||||
|
|
||||||
// propagate signals up to top
|
// propagate signals up to top
|
||||||
|
|
||||||
children.append( item );
|
children.append( item );
|
||||||
|
@ -255,6 +255,26 @@ class CORE_EXPORT QgsDataItem : public QObject
|
|||||||
//! Create path component replacing path separators
|
//! Create path component replacing path separators
|
||||||
static QString pathComponent( const QString &component );
|
static QString pathComponent( const QString &component );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the sorting key for the item. By default name() is returned,
|
||||||
|
* but setSortKey() can be used to set a custom sort key for the item.
|
||||||
|
*
|
||||||
|
* Alternatively subclasses can override this method to return a custom
|
||||||
|
* sort key.
|
||||||
|
*
|
||||||
|
* \see setSortKey()
|
||||||
|
* \since QGIS 3.0
|
||||||
|
*/
|
||||||
|
virtual QVariant sortKey() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets a custom sorting \a key for the item.
|
||||||
|
* \see sortKey()
|
||||||
|
* \since QGIS 3.0
|
||||||
|
*/
|
||||||
|
void setSortKey( const QVariant &key );
|
||||||
|
|
||||||
|
|
||||||
// Because QIcon (QPixmap) must not be used in outside the GUI thread, it is
|
// Because QIcon (QPixmap) must not be used in outside the GUI thread, it is
|
||||||
// not possible to set mIcon in constructor. Either use mIconName/setIconName()
|
// not possible to set mIcon in constructor. Either use mIconName/setIconName()
|
||||||
// or implement icon().
|
// or implement icon().
|
||||||
@ -303,6 +323,9 @@ class CORE_EXPORT QgsDataItem : public QObject
|
|||||||
QIcon mIcon;
|
QIcon mIcon;
|
||||||
QMap<QString, QIcon> mIconMap;
|
QMap<QString, QIcon> mIconMap;
|
||||||
|
|
||||||
|
//! Custom sort key. If invalid, name() will be used for sorting instead.
|
||||||
|
QVariant mSortKey;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -631,6 +654,8 @@ class CORE_EXPORT QgsFavoritesItem : public QgsDataCollectionItem
|
|||||||
//! Icon for favorites group
|
//! Icon for favorites group
|
||||||
static QIcon iconFavorites();
|
static QIcon iconFavorites();
|
||||||
|
|
||||||
|
QVariant sortKey() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QVector<QgsDataItem *> createChildren( const QString &favDir );
|
QVector<QgsDataItem *> createChildren( const QString &favDir );
|
||||||
};
|
};
|
||||||
|
@ -122,6 +122,8 @@ void QgsBrowserDockWidget::showEvent( QShowEvent *e )
|
|||||||
mBrowserView->setSettingsSection( objectName().toLower() ); // to distinguish 2 or more instances of the browser
|
mBrowserView->setSettingsSection( objectName().toLower() ); // to distinguish 2 or more instances of the browser
|
||||||
mBrowserView->setBrowserModel( mModel );
|
mBrowserView->setBrowserModel( mModel );
|
||||||
mBrowserView->setModel( mProxyModel );
|
mBrowserView->setModel( mProxyModel );
|
||||||
|
mBrowserView->setSortingEnabled( true );
|
||||||
|
mBrowserView->sortByColumn( 0, Qt::AscendingOrder );
|
||||||
// provide a horizontal scroll bar instead of using ellipse (...) for longer items
|
// provide a horizontal scroll bar instead of using ellipse (...) for longer items
|
||||||
mBrowserView->setTextElideMode( Qt::ElideNone );
|
mBrowserView->setTextElideMode( Qt::ElideNone );
|
||||||
mBrowserView->header()->setSectionResizeMode( 0, QHeaderView::ResizeToContents );
|
mBrowserView->header()->setSectionResizeMode( 0, QHeaderView::ResizeToContents );
|
||||||
|
@ -339,6 +339,9 @@ QgsBrowserTreeFilterProxyModel::QgsBrowserTreeFilterProxyModel( QObject *parent
|
|||||||
, mCaseSensitivity( Qt::CaseInsensitive )
|
, mCaseSensitivity( Qt::CaseInsensitive )
|
||||||
{
|
{
|
||||||
setDynamicSortFilter( true );
|
setDynamicSortFilter( true );
|
||||||
|
setSortRole( QgsBrowserModel::SortRole );
|
||||||
|
setSortCaseSensitivity( Qt::CaseInsensitive );
|
||||||
|
sort( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
void QgsBrowserTreeFilterProxyModel::setBrowserModel( QgsBrowserModel *model )
|
void QgsBrowserTreeFilterProxyModel::setBrowserModel( QgsBrowserModel *model )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user