MCPcopy Create free account
hub / github.com/KDE/kdevelop / search

Method search

kdevplatform/documentation/standarddocumentationview.cpp:143–155  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143void StandardDocumentationView::search ( const QString& text, DocumentationFindWidget::FindOptions options )
144{
145 Q_D(StandardDocumentationView);
146
147 QWebEnginePage::FindFlags ff = {};
148 if(options & DocumentationFindWidget::Previous)
149 ff |= QWebEnginePage::FindBackward;
150
151 if(options & DocumentationFindWidget::MatchCase)
152 ff |= QWebEnginePage::FindCaseSensitively;
153
154 d->m_view->page()->findText(text, ff);
155}
156
157void StandardDocumentationView::searchIncremental(const QString& text, DocumentationFindWidget::FindOptions options)
158{

Callers 3

num_childrenMethod · 0.80
__call__Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected