mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-04 19:15:25 +00:00
13 lines
361 B
C
13 lines
361 B
C
|
#ifndef CUTTER_SELECTIONHIGHLIGHT_H
|
||
|
#define CUTTER_SELECTIONHIGHLIGHT_H
|
||
|
|
||
|
#include <QTextEdit>
|
||
|
|
||
|
class QPlainTextEdit;
|
||
|
class QString;
|
||
|
|
||
|
QList<QTextEdit::ExtraSelection> createSameWordsSelections(QPlainTextEdit *textEdit, const QString &word);
|
||
|
QTextEdit::ExtraSelection createLineHighlightSelection(const QTextCursor &cursor);
|
||
|
|
||
|
#endif //CUTTER_SELECTIONHIGHLIGHT_H
|