QHelpFilterEngine 類

QHelpFilterEngine 類提供幫助內容的過濾視圖。 更多...

頭: #include <QHelpFilterEngine>
qmake: QT += help
Since: Qt 5.13
繼承: QObject

該類在 Qt 5.13 引入。

公共函數

QString activeFilter () const
QStringList availableComponents () const
QList<QVersionNumber> availableVersions () const
QHelpFilterData filterData (const QString & filterName ) const
QStringList 過濾 () const
QStringList indices () const
QStringList indices (const QString & filterName ) const
QMap<QString, QString> namespaceToComponent () const
QMap<QString, QVersionNumber> namespaceToVersion () const
QStringList namespacesForFilter (const QString & filterName ) const
bool removeFilter (const QString & filterName )
bool setActiveFilter (const QString & filterName )
bool setFilterData (const QString & filterName , const QHelpFilterData & filterData )

信號

void filterActivated (const QString & newFilter )

詳細描述

The filter engine allows the management of filters associated with a QHelpEngineCore instance. The help engine internally creates an instance of the filter engine, which can be accessed by calling QHelpEngineCore::filterEngine (). Therefore, the public constructor of this class is disabled.

The filters are identified by a filter name string. Filter details are described by the QHelpFilterData 類。

The filter engine allows for adding new filters and changing the existing filters' data through the setFilterData () method. An existing filter can be removed through the removeFilter () 方法。

Out of the registered filters one can be marked as the active one. The active filter will be used by the associated help engine for returning filtered results of many different functions, such as content, index, or search results. If no filter is marked active, the help engine returns the full results list available.

The active filter is returned by activeFilter () and it can be changed by setActiveFilter ().

另請參閱 QHelpEngineCore .

成員函數文檔編製

[signal] void QHelpFilterEngine:: filterActivated (const QString & newFilter )

This signal is emitted when the active filter is set. newFilter specifies the name of the filter.

另請參閱 setActiveFilter ().

QString QHelpFilterEngine:: activeFilter () const

Returns the name of the currently active filter.

另請參閱 setActiveFilter ().

QStringList QHelpFilterEngine:: availableComponents () const

Returns the list of all available components defined in all registered documentation files.

QList < QVersionNumber > QHelpFilterEngine:: availableVersions () const

Returns the list of all available versions defined in all registered documentation files.

該函數在 Qt 5.15 引入。

QHelpFilterData QHelpFilterEngine:: filterData (const QString & filterName ) const

Returns the filter details associated with filterName .

另請參閱 setFilterData ().

QStringList QHelpFilterEngine:: 過濾 () const

Returns the list of all filter names defined inside the filter engine.

QStringList QHelpFilterEngine:: indices () const

Returns a sorted list of available indices. The returned list contents depend on the active filter, and therefore only the indices registered for the active filter will be returned.

該函數在 Qt 5.15 引入。

QStringList QHelpFilterEngine:: indices (const QString & filterName ) const

Returns a sorted list of available indices, filtered by filterName . The returned list contents depend on the passed filter, and therefore only the indices registered for this filter will be returned. If you want to get all available indices unfiltered, pass empty string as filterName .

該函數在 Qt 5.15 引入。

QMap < QString , QString > QHelpFilterEngine:: namespaceToComponent () const

Returns the map of all the available namespaces as keys together with their associated components as values.

QMap < QString , QVersionNumber > QHelpFilterEngine:: namespaceToVersion () const

Returns the map of all the available namespaces as keys together with their associated versions as values.

QStringList QHelpFilterEngine:: namespacesForFilter (const QString & filterName ) const

Returns the list of all registered documentation namespaces that match the filter identified by filterName .

bool QHelpFilterEngine:: removeFilter (const QString & filterName )

Removes the filter identified by filterName .

返迴 true if removing the filter succeeded, otherwise returns false .

bool QHelpFilterEngine:: setActiveFilter (const QString & filterName )

Changes the currently active filter to filterName .

返迴 true if changing the filter succeeded, otherwise returns false .

另請參閱 activeFilter ().

bool QHelpFilterEngine:: setFilterData (const QString & filterName , const QHelpFilterData & filterData )

Changes the existing filter details of the filter identified by filterName to filterData . If the filter does not exist, a new filter is created.

返迴 true if setting the filter succeeded, otherwise returns false .

另請參閱 filterData ().