The QHelpFilterData class provides details for the filters used by QHelpFilterEngine. More...
Header: | #include <QHelpFilterData> |
CMake: | find_package(Qt6 COMPONENTS Help REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Help) |
qmake: | QT += help |
Since: | Qt 5.13 |
QHelpFilterData(QHelpFilterData &&other) | |
QHelpFilterData(const QHelpFilterData &other) | |
QHelpFilterData() | |
QHelpFilterData & | operator=(QHelpFilterData &&other) |
QHelpFilterData & | operator=(const QHelpFilterData &other) |
~QHelpFilterData() | |
QStringList | components() const |
void | setComponents(const QStringList &components) |
void | setVersions(const QList<QVersionNumber> &versions) |
void | swap(QHelpFilterData &other) |
QList<QVersionNumber> | versions() const |
By using setComponents() you may constrain the search results to documents that belong only to components specified on the given list. By using setVersions() you may constrain the search results to documents that belong only to versions specified on the given list.
See also QHelpFilterEngine.
Move-constructs a QHelpFilterData instance, making it point at the same object that other was pointing to.
Constructs a copy of other.
Constructs the empty filter.
Move-assigns other to this QHelpFilterData instance.
Assigns other to this filter and returns a reference to this filter.
Destroys the filter.
Returns the component list that is used for filtering the search results.
See also setComponents().
Specifies the component list that is used for filtering the search results. Only results from components in the list components shall be returned.
See also components().
Specifies the version list that is used for filtering the search results. Only results from versions in the list versions shall be returned.
See also versions().
Swaps the filter other with this filter. This operation is very fast and never fails.
Returns the version list that is used for filtering the search results.
See also setVersions().
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qhelpfilterdata.html