QHelpSearchQueryWidget 类

QHelpSearchQueryWidget 类提供使用户能够在标准化输入掩码中输入搜索术语的简单行编辑或高级 Widget。 更多...

头: #include <QHelpSearchQueryWidget>
qmake: QT += help
Since: Qt 4.4
继承: QWidget

该类在 Qt 4.4 引入。

公共函数

QHelpSearchQueryWidget (QWidget * parent = nullptr)
virtual ~QHelpSearchQueryWidget () override
void collapseExtendedSearch ()
void expandExtendedSearch ()
QString searchInput () const
void setSearchInput (const QString & searchInput )

信号

void search ()

详细描述

成员函数文档编制

QHelpSearchQueryWidget:: QHelpSearchQueryWidget ( QWidget * parent = nullptr)

Constructs a new search query widget with the given parent .

This signal is emitted when a the user has the search button invoked. After receiving the signal you can ask the QHelpSearchQueryWidget for the search input that you may pass to the QHelpSearchEngine::search() function.

[override virtual] QHelpSearchQueryWidget:: ~QHelpSearchQueryWidget ()

Destroys the search query widget.

void QHelpSearchQueryWidget:: collapseExtendedSearch ()

Collapses the search query widget so that only the default search field is shown.

void QHelpSearchQueryWidget:: expandExtendedSearch ()

Expands the search query widget so that the extended search fields are shown.

QString QHelpSearchQueryWidget:: searchInput () const

Returns a search phrase to use in combination with the QHelpSearchEngine::search(const QString &searchInput) function.

该函数在 Qt 5.9 引入。

另请参阅 setSearchInput ().

void QHelpSearchQueryWidget:: setSearchInput (const QString & searchInput )

设置 QHelpSearchQueryWidget input field to the value specified by searchInput .

注意: The QHelpSearchEngine::search(const QString & searchInput ) function has to be called to perform the actual search.

该函数在 Qt 5.9 引入。

另请参阅 searchInput ().