summaryrefslogtreecommitdiffstats
path: root/ui/qt/search_frame.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /ui/qt/search_frame.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ui/qt/search_frame.h')
-rw-r--r--ui/qt/search_frame.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/ui/qt/search_frame.h b/ui/qt/search_frame.h
new file mode 100644
index 0000000..7ea0946
--- /dev/null
+++ b/ui/qt/search_frame.h
@@ -0,0 +1,63 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef SEARCH_FRAME_H
+#define SEARCH_FRAME_H
+
+#include <config.h>
+
+#include "accordion_frame.h"
+
+#include "cfile.h"
+
+namespace Ui {
+class SearchFrame;
+}
+
+class SearchFrame : public AccordionFrame
+{
+ Q_OBJECT
+
+public:
+ explicit SearchFrame(QWidget *parent = 0);
+ ~SearchFrame();
+ void animatedShow();
+ void findNext();
+ void findPrevious();
+ void setFocus();
+
+public slots:
+ void setCaptureFile(capture_file *cf);
+ void findFrameWithFilter(QString &filter);
+
+protected:
+ virtual void keyPressEvent(QKeyEvent *event);
+ void changeEvent(QEvent* event);
+
+private:
+ bool regexCompile();
+ void applyRecentSearchSettings();
+ void updateWidgets();
+
+ Ui::SearchFrame *sf_ui_;
+ capture_file *cap_file_;
+ ws_regex_t *regex_;
+ QString regex_error_;
+
+private slots:
+ void on_searchInComboBox_currentIndexChanged(int idx);
+ void on_charEncodingComboBox_currentIndexChanged(int idx);
+ void on_caseCheckBox_toggled(bool checked);
+ void on_searchTypeComboBox_currentIndexChanged(int idx);
+ void on_searchLineEdit_textChanged(const QString &);
+ void on_findButton_clicked();
+ void on_cancelButton_clicked();
+};
+
+#endif // SEARCH_FRAME_H