10#ifndef FIND_LINE_EDIT_H
11#define FIND_LINE_EDIT_H
31 explicit FindLineEdit(QWidget *parent = 0) : QLineEdit(parent), use_regex_(false) { }
61 void contextMenuEvent(QContextMenuEvent *event);
67 void keyPressEvent(QKeyEvent *event);
A custom line edit for find operations, supporting regex and textual search.
Definition find_line_edit.h:23
~FindLineEdit()
Destroys the FindLineEdit.
Definition find_line_edit.h:36
FindLineEdit(QWidget *parent=0)
Constructs a new FindLineEdit.
Definition find_line_edit.h:31
void useRegexFind(bool use_regex)
Signal emitted when the regex search mode is toggled.