summaryrefslogtreecommitdiffstats
path: root/ui/qt/widgets/find_line_edit.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/widgets/find_line_edit.h')
-rw-r--r--ui/qt/widgets/find_line_edit.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/ui/qt/widgets/find_line_edit.h b/ui/qt/widgets/find_line_edit.h
new file mode 100644
index 0000000..605f91d
--- /dev/null
+++ b/ui/qt/widgets/find_line_edit.h
@@ -0,0 +1,42 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef FIND_LINE_EDIT_H
+#define FIND_LINE_EDIT_H
+
+#include <QLineEdit>
+
+namespace Ui {
+class FindLineEdit;
+}
+
+class FindLineEdit : public QLineEdit
+{
+ Q_OBJECT
+
+public:
+ explicit FindLineEdit(QWidget *parent = 0) : QLineEdit(parent), use_regex_(false) { }
+ ~FindLineEdit() { }
+
+signals:
+ void useRegexFind(bool);
+
+private slots:
+ void setUseTextual();
+ void setUseRegex();
+
+private:
+ void contextMenuEvent(QContextMenuEvent *event);
+ void keyPressEvent(QKeyEvent *event);
+ void validateText();
+
+ bool use_regex_;
+};
+
+#endif // FIND_LINE_EDIT_H