summaryrefslogtreecommitdiffstats
path: root/ui/qt/enabled_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/enabled_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/enabled_protocols_dialog.h')
-rw-r--r--ui/qt/enabled_protocols_dialog.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/ui/qt/enabled_protocols_dialog.h b/ui/qt/enabled_protocols_dialog.h
new file mode 100644
index 00000000..eb72ea8f
--- /dev/null
+++ b/ui/qt/enabled_protocols_dialog.h
@@ -0,0 +1,49 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef ENABLED_PROTOCOLS_DIALOG_H
+#define ENABLED_PROTOCOLS_DIALOG_H
+
+#include "geometry_state_dialog.h"
+#include "wireshark_dialog.h"
+#include <ui/qt/models/enabled_protocols_model.h>
+
+namespace Ui {
+class EnabledProtocolsDialog;
+}
+
+class EnabledProtocolsDialog : public GeometryStateDialog
+{
+ Q_OBJECT
+
+public:
+ explicit EnabledProtocolsDialog(QWidget *parent);
+ virtual ~EnabledProtocolsDialog();
+
+private slots:
+ void on_invert_button__clicked();
+ void on_enable_all_button__clicked();
+ void on_disable_all_button__clicked();
+ void on_search_line_edit__textChanged(const QString &);
+ void on_cmbSearchType_currentIndexChanged(int);
+ void on_cmbProtocolType_currentIndexChanged(int);
+ void on_buttonBox_accepted();
+ void on_buttonBox_helpRequested();
+ void fillTree();
+
+private:
+ Ui::EnabledProtocolsDialog *ui;
+
+ EnabledProtocolsModel* enabled_protocols_model_;
+ EnabledProtocolsProxyModel* proxyModel_;
+
+ void searchFilterChange();
+};
+
+#endif // ENABLED_PROTOCOLS_DIALOG_H