QGIS API Documentation 3.41.0-Master (fda2aa46e9a)
|
A sort/filter proxy model for providers and algorithms shown within the Processing toolbox, which automatically sorts the toolbox in a logical fashion and supports filtering the results. More...
#include <qgsprocessingtoolboxmodel.h>
Public Types | |
enum class | Filter : int { Toolbox = 1 << 1 , Modeler = 1 << 2 , InPlace = 1 << 3 , ShowKnownIssues = 1 << 4 } |
Available filter flags for filtering the model. More... | |
typedef QFlags< Filter > | Filters |
Public Member Functions | |
QgsProcessingToolboxProxyModel (QObject *parent=nullptr, QgsProcessingRegistry *registry=nullptr, QgsProcessingRecentAlgorithmLog *recentLog=nullptr, QgsProcessingFavoriteAlgorithmManager *favoriteManager=nullptr) | |
Constructor for QgsProcessingToolboxProxyModel, with the given parent object. | |
QVariant | data (const QModelIndex &index, int role=Qt::DisplayRole) const override |
bool | filterAcceptsRow (int sourceRow, const QModelIndex &sourceParent) const override |
Filters | filters () const |
Returns any filters that affect how toolbox content is filtered. | |
QString | filterString () const |
Returns the current filter string, if set. | |
bool | lessThan (const QModelIndex &left, const QModelIndex &right) const override |
void | setFilters (QgsProcessingToolboxProxyModel::Filters filters) |
Set filters that affect how toolbox content is filtered. | |
void | setFilterString (const QString &filter) |
Sets a filter string, such that only algorithms matching the specified string will be shown. | |
void | setInPlaceLayer (QgsVectorLayer *layer) |
Sets the vector layer for in-place algorithm filter. | |
QgsProcessingToolboxModel * | toolboxModel () |
Returns the underlying source Processing toolbox model. | |
const QgsProcessingToolboxModel * | toolboxModel () const |
Returns the underlying source Processing toolbox model. | |
A sort/filter proxy model for providers and algorithms shown within the Processing toolbox, which automatically sorts the toolbox in a logical fashion and supports filtering the results.
Definition at line 460 of file qgsprocessingtoolboxmodel.h.
typedef QFlags< Filter > QgsProcessingToolboxProxyModel::Filters |
Definition at line 477 of file qgsprocessingtoolboxmodel.h.
|
strong |
Available filter flags for filtering the model.
Definition at line 469 of file qgsprocessingtoolboxmodel.h.
|
explicit |
Constructor for QgsProcessingToolboxProxyModel, with the given parent object.
If registry is specified then the model will show providers and algorithms from the given registry. If no registry is specified, then the processing registry attached to QgsApplication::processingRegistry() will be used by the model.
If recentLog is specified then it will be used to create a "Recently used" top level group containing recently used algorithms.
If favoriteManager is specified then it will be used to create a "Favorites" top level group containing favorite algorithms. SInce QGIS 3.40
Definition at line 761 of file qgsprocessingtoolboxmodel.cpp.
|
override |
Definition at line 944 of file qgsprocessingtoolboxmodel.cpp.
|
override |
Definition at line 805 of file qgsprocessingtoolboxmodel.cpp.
|
inline |
Returns any filters that affect how toolbox content is filtered.
Definition at line 521 of file qgsprocessingtoolboxmodel.h.
|
inline |
Returns the current filter string, if set.
Definition at line 544 of file qgsprocessingtoolboxmodel.h.
|
override |
Definition at line 896 of file qgsprocessingtoolboxmodel.cpp.
void QgsProcessingToolboxProxyModel::setFilters | ( | QgsProcessingToolboxProxyModel::Filters | filters | ) |
Set filters that affect how toolbox content is filtered.
Definition at line 786 of file qgsprocessingtoolboxmodel.cpp.
void QgsProcessingToolboxProxyModel::setFilterString | ( | const QString & | filter | ) |
Sets a filter string, such that only algorithms matching the specified string will be shown.
Matches are performed using a variety of tests, including checking against the algorithm name, short description, tags, etc.
Definition at line 799 of file qgsprocessingtoolboxmodel.cpp.
void QgsProcessingToolboxProxyModel::setInPlaceLayer | ( | QgsVectorLayer * | layer | ) |
Sets the vector layer for in-place algorithm filter.
Definition at line 792 of file qgsprocessingtoolboxmodel.cpp.
QgsProcessingToolboxModel * QgsProcessingToolboxProxyModel::toolboxModel | ( | ) |
Returns the underlying source Processing toolbox model.
Definition at line 776 of file qgsprocessingtoolboxmodel.cpp.
const QgsProcessingToolboxModel * QgsProcessingToolboxProxyModel::toolboxModel | ( | ) | const |
Returns the underlying source Processing toolbox model.
Definition at line 781 of file qgsprocessingtoolboxmodel.cpp.