summaryrefslogtreecommitdiffstats
path: root/ui/qt/enabled_protocols_dialog.h
diff options
context:
space:
mode:
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