The QHelpSearchQueryWidget class provides a simple line edit or an advanced widget to enable the user to input a search term in a standardized input mask. More...
#include <QHelpSearchQueryWidget>
Inherits: QWidget.
This class was introduced in Qt 4.4.
QHelpSearchQueryWidget ( QWidget * parent = 0 ) | |
~QHelpSearchQueryWidget () | |
void | collapseExtendedSearch () |
void | expandExtendedSearch () |
QList<QHelpSearchQuery> | query () const |
void | setQuery ( const QList<QHelpSearchQuery> & queryList ) |
void | search () |
The QHelpSearchQueryWidget class provides a simple line edit or an advanced widget to enable the user to input a search term in a standardized input mask.
Constructs a new search query widget with the given parent.
Destroys the search query widget.
Collapses the search query widget so that only the default search field is shown.
This function was introduced in Qt 4.8.
Expands the search query widget so that the extended search fields are shown.
This function was introduced in Qt 4.8.
Returns a list of queries to use in combination with the search engines search(QList<QHelpSearchQuery> &queryList) function.
See also setQuery().
This signal is emitted when a the user has the search button invoked. After reciving the signal you can ask the QHelpSearchQueryWidget for the build list of QHelpSearchQuery's that you may pass to the QHelpSearchEngine's search() function.
Sets the QHelpSearchQueryWidget input fields to the values specified by queryList search field name. Please note that one has to call the search engine's search(QList<QHelpSearchQuery> &queryList) function to perform the actual search.
This function was introduced in Qt 4.8.
See also query().