| 263 | } |
| 264 | |
| 265 | void QuickFindWidget::initializeEditorIndicator() |
| 266 | { |
| 267 | indicator = editor->allocateIndicator(QStringLiteral("quick_find")); |
| 268 | |
| 269 | editor->indicSetFore(indicator, 0xFF8000); |
| 270 | editor->indicSetStyle(indicator, INDIC_FULLBOX); |
| 271 | editor->indicSetOutlineAlpha(indicator, 150); |
| 272 | editor->indicSetAlpha(indicator, 50); |
| 273 | editor->indicSetUnder(indicator, true); |
| 274 | } |
| 275 | |
| 276 | QString QuickFindWidget::searchText() const |
| 277 | { |
nothing calls this directly
no test coverage detected