summaryrefslogtreecommitdiffstats
path: root/ui/qt/supported_protocols_dialog.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/supported_protocols_dialog.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/supported_protocols_dialog.h')
-rw-r--r--ui/qt/supported_protocols_dialog.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/ui/qt/supported_protocols_dialog.h b/ui/qt/supported_protocols_dialog.h
new file mode 100644
index 0000000..89afd3f
--- /dev/null
+++ b/ui/qt/supported_protocols_dialog.h
@@ -0,0 +1,51 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef SUPPORTED_PROTOCOLS_DIALOG_H
+#define SUPPORTED_PROTOCOLS_DIALOG_H
+
+#include "geometry_state_dialog.h"
+#include <ui/qt/models/supported_protocols_model.h>
+
+namespace Ui {
+class SupportedProtocolsDialog;
+}
+
+class SupportedProtocolsDialog : public GeometryStateDialog
+{
+ Q_OBJECT
+
+public:
+ explicit SupportedProtocolsDialog(QWidget *parent = 0);
+ ~SupportedProtocolsDialog();
+
+private:
+ Ui::SupportedProtocolsDialog *ui;
+
+ SupportedProtocolsModel* supported_protocols_model_;
+ SupportedProtocolsProxyModel* proxyModel_;
+ QTimer *searchLineEditTimer;
+ QString searchLineEditText;
+
+ void updateStatistics();
+
+private slots:
+ void fillTree();
+
+ /**
+ * Update search results from the searchLineEdit field
+ *
+ * This is performed separately from on_searchLineEdit_textChanged
+ * to support debouncing.
+ */
+ void updateSearchLineEdit();
+ void on_searchLineEdit_textChanged(const QString &search_re);
+};
+
+#endif // SUPPORTED_PROTOCOLS_DIALOG_H